3.12 Scalar (Dot) Product - Angle Between Vectors (HL)
1. Definitions of the Scalar Product
The scalar product (dot product) evaluates the directional correlation between two intersecting vectors, producing a pure numerical scalar value rather than a vector quantity.
The sign of the dot product offers crucial geometric insights about the angle:
- $\vec{u} \cdot \vec{v} > 0 \iff \theta$ is an acute angle ($0^\circ \le \theta < 90^\circ$)
- $\vec{u} \cdot \vec{v} = 0 \iff \theta$ is a right angle ($\theta = 90^\circ$)
- $\vec{u} \cdot \vec{v} < 0 \iff \theta$ is an obtuse angle ($90^\circ < \theta \le 180^\circ$)
For 3-Dimensional space vectors, where $\vec{u} = \begin{pmatrix} a_1 \\ b_1 \\ c_1 \end{pmatrix}$ and $\vec{v} = \begin{pmatrix} a_2 \\ b_2 \\ c_2 \end{pmatrix}$, this seamlessly expands to: $\vec{u} \cdot \vec{v} = a_1 a_2 + b_1 b_2 + c_1 c_2$
EXAMPLE 1 (Evaluating the Included Angle)
Given vectors $\vec{u} = \begin{pmatrix} 3 \\ 4 \end{pmatrix}$ and $\vec{v} = \begin{pmatrix} 1 \\ -2 \end{pmatrix}$, evaluate their magnitudes, algebraic dot product, and the exact included angle $\theta$.
$|\vec{u}| = \sqrt{3^2 + 4^2} = 5$
$|\vec{v}| = \sqrt{1^2 + (-2)^2} = \sqrt{5}$
$\vec{u} \cdot \vec{v} = 3(1) + 4(-2) = 3 - 8 = \mathbf{-5}$
2. Perpendicular and Parallel Conditions
- Perpendicular (Orthogonal) Vectors: If two non-zero vectors intersect at exactly $90^\circ$, then $\cos 90^\circ = 0$. Therefore: $\vec{u} \perp \vec{v} \iff \vec{u} \cdot \vec{v} = 0$
- Parallel Vectors: Two vectors share identical or completely inverted directional geometry $\iff$ they act as linear scalar multiples of each other ($\vec{u} = k\vec{v}$). In 2D coordinate component tracking, their ratios must perfectly align: $\vec{u} \parallel \vec{v} \iff \dfrac{a_1}{a_2} = \dfrac{b_1}{b_2} = k$
EXAMPLE 2 (Constructing Orthogonal Coordinates)
To easily discover a normal vector perpendicular to a given vector $\vec{u} = \begin{pmatrix} 2 \\ 5 \end{pmatrix}$, swap the components and invert exactly one sign.
Choosing $\vec{v} = \begin{pmatrix} 5 \\ -2 \end{pmatrix}$ yields:
Any scalar tracking multiple $k\begin{pmatrix} 5 \\ -2 \end{pmatrix}$, such as $\begin{pmatrix} -5 \\ 2 \end{pmatrix}$, remains strictly perpendicular.
EXAMPLE 3 (Solving Parameter Boundary Constraints)
Let $\vec{u} = \begin{pmatrix} 3 \\ 4 \end{pmatrix}$ and $\vec{v} = \begin{pmatrix} x \\ -6 \end{pmatrix}$. Calculate the parameter value $x$ for both structural constraints.
3. Key Algebraic Properties
The dot product satisfies the commutative law ($\vec{u} \cdot \vec{v} = \vec{v} \cdot \vec{u}$) and the distributive law ($\vec{u} \cdot (\vec{v} + \vec{w}) = \vec{u} \cdot \vec{v} + \vec{u} \cdot \vec{w}$). A highly critical identity emerges when a vector forms a scalar product with itself:
Because the separation angle between any vector and itself is $0^\circ$ (and $\cos 0^\circ = 1$), the product collapses directly to the square of its absolute geometric length. This algebraic tool acts as a mechanism to systematically convert magnitudes into dot product equations.
EXAMPLE 4 (Vector Geometric Proof)
For two non-zero vectors, it holds true that $|\vec{u} + \vec{v}| = |\vec{u} - \vec{v}|$. Prove that $\vec{u}$ and $\vec{v}$ are strictly perpendicular to each other.
Proof Implementation:
Since the resolved scalar dot product evaluates strictly to zero, $\vec{u} \cdot \vec{v} = 0 \implies \mathbf{\vec{u} \perp \vec{v}}$. ■