3.12 Scalar (Dot) ProductHL ONLY
1. Definitions of the Scalar Product
The scalar product (dot product) evaluates the relationship between two vectors, producing a scalar value rather than a vector.
The sign of the dot product indicates the type of angle:
- $\vec{u} \cdot \vec{v} > 0 \iff \theta$ is acute ($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 obtuse ($90^\circ < \theta \le 180^\circ$)
In 3D space, 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 expands to: $\vec{u} \cdot \vec{v} = a_1 a_2 + b_1 b_2 + c_1 c_2$
EXAMPLE 1 (Finding the Angle Between Vectors)
Given vectors $\vec{u} = \begin{pmatrix} 3 \\ 4 \end{pmatrix}$ and $\vec{v} = \begin{pmatrix} 1 \\ -2 \end{pmatrix}$, find their magnitudes, dot product, and the angle $\theta$ between them.
$|\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 are perpendicular, then $\theta = 90^\circ$ and $\cos 90^\circ = 0$. Therefore: $\vec{u} \perp \vec{v} \iff \vec{u} \cdot \vec{v} = 0$
- Parallel Vectors: Two vectors are parallel if they are scalar multiples of each other ($\vec{u} = k\vec{v}$). In 2D, their components are proportional: $\vec{u} \parallel \vec{v} \iff \dfrac{a_1}{a_2} = \dfrac{b_1}{b_2} = k$
EXAMPLE 2 (Finding a Perpendicular Vector)
To find a vector perpendicular to $\vec{u} = \begin{pmatrix} 2 \\ 5 \end{pmatrix}$, swap the components and change the sign of one component.
Choosing $\vec{v} = \begin{pmatrix} 5 \\ -2 \end{pmatrix}$ yields:
Any scalar multiple, such as $\begin{pmatrix} -5 \\ 2 \end{pmatrix}$, is also perpendicular.
EXAMPLE 3 (Finding an Unknown Parameter)
Let $\vec{u} = \begin{pmatrix} 3 \\ 4 \end{pmatrix}$ and $\vec{v} = \begin{pmatrix} x \\ -6 \end{pmatrix}$. Find $x$ for each condition.
3. Key Algebraic Properties
The dot product is commutative ($\vec{u} \cdot \vec{v} = \vec{v} \cdot \vec{u}$) and distributive ($\vec{u} \cdot (\vec{v} + \vec{w}) = \vec{u} \cdot \vec{v} + \vec{u} \cdot \vec{w}$). An important identity occurs when a vector is multiplied by itself:
Since the angle between a vector and itself is $0^\circ$ ($\cos 0^\circ = 1$), the dot product equals the square of its magnitude. This identity allows you to rewrite magnitudes as dot products.
EXAMPLE 4 (Geometric Proof Using Vectors)
If $|\vec{u} + \vec{v}| = |\vec{u} - \vec{v}|$ for two non-zero vectors, prove that $\vec{u}$ and $\vec{v}$ are perpendicular.
Proof:
Since the dot product is zero, $\vec{u} \cdot \vec{v} = 0 \implies \mathbf{\vec{u} \perp \vec{v}}$. ■