This commit is contained in:
jverzani
2026-08-11 17:50:01 -04:00
parent 5d99f9a672
commit 265fe8509c
2 changed files with 2 additions and 2 deletions

View File

@@ -23,7 +23,7 @@ Liousville = "Liousville"
numer = "numer" numer = "numer"
denom = "denom" denom = "denom"
desolve = "desolve" desolve = "desolve"
eqal = "eqal" egal = "egal"
adn = "adn" adn = "adn"
optin = "optin" optin = "optin"

View File

@@ -221,7 +221,7 @@ Repeating this last line will generate new values of `x` based on the previous o
::: {.callout-note} ::: {.callout-note}
## Use of = ## Use of =
The distinction between ``=`` versus `=` is important and one area where common math notation and common computer notation diverge. The mathematical ``=`` indicates *equality*, and is often used with equations and also for assignment. Later, when symbolic math is introduced, the `~` symbol will be used to indicate an equation, though this is by convention and not part of base `Julia`. The computer syntax use of `=` is for *assignment* and *re-assignment*. Equality is tested with `==` and identicalness (or egal) with `===`. The distinction between ``=`` versus `=` is important and one area where common math notation and common computer notation diverge. The mathematical ``=`` indicates *equality*, and is often used with equations and also for assignment. Later, when symbolic math is introduced, the `~` symbol will be used to indicate an equation, though this is by convention and not part of base `Julia`. The computer syntax use of `=` is for *assignment* and *re-assignment*. Equality is tested with `==` and identicalness with `===`.
::: :::