| Expression | Description | Examples |
| [A B C]
[D E F] [G H I] |
A matrix. Enclose each row within [ ]. |
[2 1 0] [4 7 3] [2 0 1] |
| ->PQ | A vector, with initial point P and terminal point Q. |
->PQ |
| u = <x,y>
v = <x,y> |
Vectors u and v in component form.
Component form is defined with initial point at the origin, and terminal point (x,y). |
v = <-5,12> |
| ||v|| | The norm, or length, of vector v. If
|
If
If v = <-5,12>, ||v|| = 13 |
| u dot v
or u . v |
Dot product. Only use u . v if there can be no ambiguity with a period or decimal point. |
u dot v u . v |
| u cross v
or u x v |
Cross product. Only use u x v if there can be no ambiguity with the letter x or the ordinary multiplication operator. |
u cross v u x v |
| oo, -oo | Positive infinity, negative infinity |
lim x->-oo x^2 = oo |