3.11 Vectors: Algebraic Representation (HL)
1. 2-Dimensional Algebraic Vectors
A vector $\vec{u}$ is formally expressed algebraically as a column matrix containing its directional components: $\begin{pmatrix} a \\ b \end{pmatrix}$.
$|\vec{u}| = \sqrt{a^2 + b^2}$.
$\begin{pmatrix} a_1 \\ b_1 \end{pmatrix} \pm \begin{pmatrix} a_2 \\ b_2 \end{pmatrix} = \begin{pmatrix} a_1 \pm a_2 \\ b_1 \pm b_2 \end{pmatrix}$.
$k\begin{pmatrix} a \\ b \end{pmatrix} = \begin{pmatrix} ka \\ kb \end{pmatrix}$. The resulting magnitude scales proportionally: $|k\vec{u}| = |k| |\vec{u}|$.
$\begin{pmatrix} a_1 \\ b_1 \end{pmatrix} = \begin{pmatrix} a_2 \\ b_2 \end{pmatrix} \implies a_1 = a_2 \text{ and } b_1 = b_2$.
EXAMPLE 1 (Vector Magnitudes & Addition)
Given vectors $\vec{u} = \begin{pmatrix} 3 \\ 4 \end{pmatrix}$ and $\vec{v} = \begin{pmatrix} 2 \\ 5 \end{pmatrix}$:
$|\vec{u}| = \sqrt{3^2 + 4^2} = \sqrt{25} = \mathbf{5}$
$|\vec{v}| = \sqrt{2^2 + 5^2} = \mathbf{\sqrt{29}}$
$\vec{u} + \vec{v} = \begin{pmatrix} 3+2 \\ 4+5 \end{pmatrix} = \mathbf{\begin{pmatrix} 5 \\ 9 \end{pmatrix}}$
EXAMPLE 2 (Linear Combinations)
Using the same vectors $\vec{u} = \begin{pmatrix} 3 \\ 4 \end{pmatrix}$ and $\vec{v} = \begin{pmatrix} 2 \\ 5 \end{pmatrix}$, evaluate $2\vec{u} + 3\vec{v}$:
2. Unit Vectors and Base Notation
The Unit Vector: A unit vector $\hat{u}$ is a specialized vector possessing a magnitude of exactly $1$, pointing precisely in the same direction as $\vec{u}$. It is calculated by multiplying the vector by the reciprocal of its own magnitude:
EXAMPLE 3 (Scaling to a Target Magnitude)
Establish a vector $\vec{a}$ strictly parallel to $\vec{u} = \begin{pmatrix} 3 \\ 4 \end{pmatrix}$ possessing a magnitude of exactly $20$.
$|\vec{u}| = 5 \implies \hat{u} = \dfrac{1}{5}\begin{pmatrix} 3 \\ 4 \end{pmatrix} = \begin{pmatrix} 3/5 \\ 4/5 \end{pmatrix}$
$\vec{a} = 20\hat{u} = 20\begin{pmatrix} 3/5 \\ 4/5 \end{pmatrix} = \mathbf{\begin{pmatrix} 12 \\ 16 \end{pmatrix}}$
Standard Base Vectors ($\mathbf{i}$ and $\mathbf{j}$)
Any 2D vector can be expressed strictly as a linear combination of the fundamental unit vectors tracing the x-axis and y-axis.
- $\mathbf{i} = \begin{pmatrix} 1 \\ 0 \end{pmatrix}$ (Horizontal unit vector)
- $\mathbf{j} = \begin{pmatrix} 0 \\ 1 \end{pmatrix}$ (Vertical unit vector)
The column vector maps directly to base notation:
$\begin{pmatrix} a \\ b \end{pmatrix} = a\mathbf{i} + b\mathbf{j}$.
3. 3-Dimensional Vectors and Point Mapping
Expanding into 3D space introduces a third vertical $z$-axis component (following the right-hand rule). Vectors map algebraically as $\begin{pmatrix} a \\ b \\ c \end{pmatrix}$ or base notation $a\mathbf{i} + b\mathbf{j} + c\mathbf{k}$.
EXAMPLE 4 (3D Operations)
Evaluate operations strictly for $\vec{u} = \begin{pmatrix} 1 \\ 2 \\ 3 \end{pmatrix}$ and $\vec{v} = \begin{pmatrix} 2 \\ 5 \\ -4 \end{pmatrix}$.
Vector Mapping Between Points in 3D
The directional displacement vector spanning strictly from point $A(x_1, y_1, z_1)$ to point $B(x_2, y_2, z_2)$ is mathematically extracted by subtracting the position vector of the origin tail ($A$) from the position vector of the destination head ($B$):
The absolute geometric distance strictly between points $A$ and $B$ aligns with the vector's magnitude:
$|\vec{AB}| = \sqrt{(x_2 - x_1)^2 + (y_2 - y_1)^2 + (z_2 - z_1)^2}$