Vectors and magnitude
| English | Chinese | Pinyin |
|---|---|---|
| vectors | 向量 | xiàng liàng |
| scalar | 标量 | biāo liàng |
| magnitude | 大小 | dà xiǎo |
| unit vector | 单位向量 | dān wèi xiàng liàng |
Arrows with attitude
- Wind speed, force, velocity — they all have a size and a direction. That's what makes them vectors 向量.
- A scalar 标量 (like temperature) has only size. A vector needs both.
Writing vectors
- A vector is written as a column $\begin{pmatrix} x \\ y \end{pmatrix}$, as $\overrightarrow{AB}$, or in bold $\mathbf{a}$.
- $x$ is the horizontal component (right is positive), $y$ is the vertical component (up is positive).

Forces like wind are vectors, with both size and direction
Vectors
resultant = a + b
Vectors add tip-to-tail; the resultant is the single arrow that replaces them.
Adding and subtracting vectors
- Add/subtract component by component: top with top, bottom with bottom.
- $\begin{pmatrix} 3 \\ 1 \end{pmatrix} + \begin{pmatrix} 2 \\ -4 \end{pmatrix} = \begin{pmatrix} 5 \\ -3 \end{pmatrix}$.
Scalar multiply: multiply both components by the number. $3\begin{pmatrix} 3 \\ 1 \end{pmatrix} = \begin{pmatrix} 9 \\ 3 \end{pmatrix}$.
a = (3, 1) and b = (2, −4). The top number of a + b is?
3 + 2 = 5.
a = (3, 1) and b = (2, −4). The bottom number of a + b is?
1 + (−4) = −3.
If a = (3, 1), the top number of 4a is?
4 × 3 = 12.
To subtract vectors, you subtract each ______ separately.
Subtract top from top and bottom from bottom, just like addition.
Magnitude 大小 (length)
- The magnitude of a vector uses Pythagoras:
- $\left|\begin{pmatrix} 3 \\ 4 \end{pmatrix}\right| = \sqrt{9 + 16} = \sqrt{25} = 5$.
Magnitude, not sum. The length of $\begin{pmatrix} 3 \\ 4 \end{pmatrix}$ is $\sqrt{3^2 + 4^2} = 5$, not $3 + 4 = 7$. You must use Pythagoras.

Adding by the triangle law: draw b from the tip of a, and a+b runs from start to finish
Find the magnitude (length) of the vector (3, 4).
√(3² + 4²) = √25 = 5.
The magnitude of the vector (3, 4) is 3 + 4 = 7.
Magnitude uses Pythagoras: √(3² + 4²) = 5, not the sum 3 + 4 = 7.
Unit vectors 单位向量
- A unit vector has magnitude 1. To find it, divide the vector by its magnitude.
- The unit vector in the direction of $\begin{pmatrix} 3 \\ 4 \end{pmatrix}$ is $\dfrac{1}{5}\begin{pmatrix} 3 \\ 4 \end{pmatrix} = \begin{pmatrix} 0.6 \\ 0.8 \end{pmatrix}$.

Vectors live on the coordinate grid: the top number moves right/left, the bottom number moves up/down.
You've got it
- add/subtract vectors component by component; scalar multiply scales both
- $\begin{pmatrix} 3 \\ 1 \end{pmatrix} + \begin{pmatrix} 2 \\ -4 \end{pmatrix} = \begin{pmatrix} 5 \\ -3 \end{pmatrix}$
- magnitude $= \sqrt{x^2 + y^2}$, so $\begin{pmatrix} 3 \\ 4 \end{pmatrix}$ has length $5$