3.16 Cross ProductHL ONLY
1. Dual Definitions of the Cross Product
The cross product operates on 3D vectors. Unlike the dot product which yields a real number, the cross product generates a new 3D vector that is perpendicular to the plane occupied by the initial vectors.
Geometric Definition:
- $\theta$ is the angle between the two vectors ($0 \le \theta \le \pi$).
- $\hat{n}$ is a unit vector perpendicular to both $\vec{u}$ and $\vec{v}$. Its direction follows the right-hand rule.
- The cross product is anti-commutative: $\vec{u} \times \vec{v} = -(\vec{v} \times \vec{u})$.
Algebraic (Determinant) Definition:
For vectors $\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}$, the cross product is calculated using a $3 \times 3$ matrix determinant expanding along the unit vectors $\vec{i}, \vec{j}, \vec{k}$:
EXAMPLE 1 (Algebraic Product & Orthogonality Verification)
Compute the cross product for $\vec{u} = \begin{pmatrix} 1 \\ 2 \\ 3 \end{pmatrix}$ and $\vec{v} = \begin{pmatrix} 4 \\ 5 \\ 6 \end{pmatrix}$, then confirm it is perpendicular.
This demonstrates the anti-commutative property ($\vec{u} \times \vec{v} = -(\vec{v} \times \vec{u})$).
Because the dot product is zero, the output vector is orthogonal.
2. Geometric Area Calculations
The magnitude of the cross product ($|\vec{u} \times \vec{v}| = |\vec{u}| |\vec{v}| \sin\theta$) equals the area of geometric figures formed by these vectors.
- Area of a Parallelogram: The area of a parallelogram defined by vectors $\vec{u}$ and $\vec{v}$ is the magnitude of their cross product:
$\text{Area} = |\vec{u} \times \vec{v}|$ - Area of a Triangle: The area of a triangle defined by vectors $\vec{u}$ and $\vec{v}$ is half the area of the parallelogram:
$\text{Area} = \dfrac{1}{2}|\vec{u} \times \vec{v}|$
EXAMPLE 2 (Parallelogram Area Calculation)
Calculate the area of the parallelogram defined by vectors $\vec{u} = \begin{pmatrix} 1 \\ 2 \\ 3 \end{pmatrix}$ and $\vec{v} = \begin{pmatrix} 4 \\ 5 \\ 6 \end{pmatrix}$.
$\vec{u} \times \vec{v} = \begin{pmatrix} -3 \\ 6 \\ -3 \end{pmatrix}$
EXAMPLE 3 (Triangle Spanning from Spatial Points)
Calculate the area of the triangle with vertices $A(1,1,1)$, $B(1,3,1)$, and $C(-3,3,4)$.