|
|
|
|
Unary / binary operators
Operation | Command | Display
|
Positive (plus) | +1 | +1
|
Negative (minus) | -1 | −1
|
Plus/minus | +-1 |
|
Minus/plus | -+1 |
|
Boolean 'not' | neg a | ¬a
|
Addition | a + b | a+b
|
Dot product | a cdot b | a·b
|
Cross product | a times b | a×b
|
Multiplication (asterisk) | a * b | a * b
|
Boolean 'and' | a and b | a∧b
|
Subtraction | a - b | a−b
|
Division (as a fraction) | a over b |
|
Division (as an operator) | a div b | a÷b
|
Division (with a slash) | a / b | a/b
|
Boolean 'or' | a or b |
|
Concatenation | a circ b |
|
|
|
|