| symbol | type | comment | ||
|---|---|---|---|---|
| + | + | |||
| − | - | |||
| 3y | 3y | at least one factor must be constant | ||
| y ⋅ 3 | y*3 | |||
| (3 + 4)(x + 5) | (3+4)(x+5) | |||
| |2x − 5| | |2x-5| | |||
| (x+1)/6 | only in ℝ mode | ||
2
| 2 3/4 | |||
| x div 3 | y div 3 | not in ℝ mode | ||
| x mod 3 | x mod 3 |
| symbol | type |
|---|---|
| < | < |
| ≤ | <= |
| = | = |
| ≠ | != |
| ≥ | >= |
| > | > |
| symbol | type | comment |
|---|---|---|
| ∧ | /\ | |
| ∨ | \/ | |
| ¬ | ! | |
| F | FF | |
| T | TT | |
| U | UU | not in ℤ mode |
| → | --> | |
| ↔ | <-> | |
| && | && | short-circuit and, not in ℤ mode |
| || | || | short-circuit or |
| symbol | type | comment |
|---|---|---|
| ⇒ | ==> | |
| ⇐ | <== | |
| ⇔ | <=> | unifies U and F |
| ≡ | === | does not unify U and F |
| symbol | type |
|---|---|
| ∀ x: | AA x: |
| ∀ x; 0 ≤ x < y: | AA x; 0 <= x < y: |
| ∃ x: | EE x: |
| ∃ x; x + 2 ≠ z: | EE x; x+2 != z: |