| Expression | Description | Examples |
|
Addition | 2 + 3 = 5 |
|
Subtraction / Negation | 2 - 3 = -1 |
|
Multiplication |
2 x 3 = 6 2 * 3 = 6 |
|
|
Note--Multiplication is also implied by juxtaposition. |
xy = x*y 3x = 3*x |
|
Division |
4/2 = 2 |
|
Equals | x = 1 |
|
Is defined to be equal to |
pi := C/D |
|
Approximately equal |
pi ~ 22/7 |
|
Not equal |
4 <> x + 2, for x <> 2 4 != x + 2, for x != 2 |
|
Greater than | 4 > 2 |
|
Less than | 2 < 4 |
|
Greater than or equal |
2 + x >= 4, for x >= 2 |
|
Less than or equal |
4 =< x + 2, for 2 =< x |
|
Plus or minus. Indicates the positive and negative. |
x = (+/-) 1 ==> x^2 = 1 |
|
Exponentiation |
2^2 = 4 |
|
Denotes the principal (nonnegative) square root of x.
Use |
sqrt(4) = 2 (+/-)sqrt(4) = (+/-)2 |
|
Denotes the cube root of x. |
cbrt(8) = 2 |
|
Denotes the |
[5]root(32) = 2 |
|
Factorial |
3! = 3*2*1 |
|
to (ratio) | The ratio of boys to girls is 4:5 |
|
This notation is used for several related concepts.
For a real number For a complex number It also denotes the length, or norm, of a vector The norm of v can also be denoted by |
. z = 2 - 3i, v = <-5,12>, |
|
For a complex number of the form
denotes the argument of z where |
z = 2[cos(pi/3) + i*sin(pi/3)] arg(z) = pi/3 |
|
Denotes the greatest integer of x (also called floor x), where |
floor(-3.2) = -4 floor(3.2) = 3 |
|
Divides | |
|
Implies |
x >= 4 ==> x > 2 |
|
Is implied by |
x > 2 <== x >= 4 |
iff |
Implies and is implied by.
If and only if. |
x = 2 <==> 2x = 4 x = 2 iff 2x = 4 |