Cross Product

The cross product is an operation defined for two vectors in R3\mathbb{R}^3 that produces a third vector perpendicular to both. Unlike the dot product, the cross product is specific to three dimensions and returns a vector, not a scalar.

Definition

The cross product of u=(u1,u2,u3)\mathbf{u} = (u_1, u_2, u_3)^\top and v=(v1,v2,v3)\mathbf{v} = (v_1, v_2, v_3)^\top in R3\mathbb{R}^3 is:

u×v=(u2v3u3v2u3v1u1v3u1v2u2v1)\mathbf{u} \times \mathbf{v} = \begin{pmatrix} u_2 v_3 - u_3 v_2 \\ u_3 v_1 - u_1 v_3 \\ u_1 v_2 - u_2 v_1 \end{pmatrix}

A convenient mnemonic: expand the formal determinant

u×v=det(e1e2e3u1u2u3v1v2v3)\mathbf{u} \times \mathbf{v} = \det \begin{pmatrix} \mathbf{e}_1 & \mathbf{e}_2 & \mathbf{e}_3 \\ u_1 & u_2 & u_3 \\ v_1 & v_2 & v_3 \end{pmatrix}

where e1,e2,e3\mathbf{e}_1, \mathbf{e}_2, \mathbf{e}_3 are the standard basis vectors of R3\mathbb{R}^3. This “determinant” is symbolic (its first row contains vectors, not scalars), but cofactor-expanding along the first row gives exactly the formula above.

Concretely, for each basis vector ei\mathbf{e}_i cross out its row and column and take the determinant of the remaining 2×22 \times 2 block:

u×v=e1det(u2u3v2v3)e2det(u1u3v1v3)+e3det(u1u2v1v2)\mathbf{u} \times \mathbf{v} = \mathbf{e}_1 \det \begin{pmatrix} u_2 & u_3 \\ v_2 & v_3 \end{pmatrix} - \mathbf{e}_2 \det \begin{pmatrix} u_1 & u_3 \\ v_1 & v_3 \end{pmatrix} + \mathbf{e}_3 \det \begin{pmatrix} u_1 & u_2 \\ v_1 & v_2 \end{pmatrix}

Note the alternating signs +,,++, -, +: the middle term carries a minus. Forgetting this sign flip is the most common mistake when computing a cross product by hand. Evaluating the 2×22 \times 2 determinants then yields

u×v=e1(u2v3u3v2)e2(u1v3u3v1)+e3(u1v2u2v1),\mathbf{u} \times \mathbf{v} = \mathbf{e}_1 (u_2 v_3 - u_3 v_2) - \mathbf{e}_2 (u_1 v_3 - u_3 v_1) + \mathbf{e}_3 (u_1 v_2 - u_2 v_1),

which matches the definition once the minus on the e2\mathbf{e}_2 term is distributed, turning u1v3u3v1u_1 v_3 - u_3 v_1 into u3v1u1v3u_3 v_1 - u_1 v_3.

Geometric Interpretation

The result u×v\mathbf{u} \times \mathbf{v} is perpendicular to both u\mathbf{u} and v\mathbf{v}, with magnitude:

u×v=uvsinθ\|\mathbf{u} \times \mathbf{v}\| = \|\mathbf{u}\| \, \|\mathbf{v}\| \sin \theta

where θ[0,π]\theta \in [0, \pi] is the angle between u\mathbf{u} and v\mathbf{v}. This magnitude equals the area of the parallelogram spanned by u\mathbf{u} and v\mathbf{v}.

The direction follows the right-hand rule: curl the fingers of the right hand from u\mathbf{u} toward v\mathbf{v}; the thumb points in the direction of u×v\mathbf{u} \times \mathbf{v}.

Key Properties

For u,v,wR3\mathbf{u}, \mathbf{v}, \mathbf{w} \in \mathbb{R}^3 and αR\alpha \in \mathbb{R}:

  • Anti-commutativity: u×v=(v×u)\mathbf{u} \times \mathbf{v} = -(\mathbf{v} \times \mathbf{u})
  • Linearity: (αu+w)×v=α(u×v)+(w×v)(\alpha\mathbf{u} + \mathbf{w}) \times \mathbf{v} = \alpha(\mathbf{u} \times \mathbf{v}) + (\mathbf{w} \times \mathbf{v})
  • Self-cross-product: v×v=0\mathbf{v} \times \mathbf{v} = \mathbf{0}
  • Parallel vectors: u×v=0\mathbf{u} \times \mathbf{v} = \mathbf{0} if and only if u\mathbf{u} and v\mathbf{v} are parallel (or one is zero)

e1×e2=e3\mathbf{e}_1 \times \mathbf{e}_2 = \mathbf{e}_3, e2×e3=e1\quad \mathbf{e}_2 \times \mathbf{e}_3 = \mathbf{e}_1, e3×e1=e2\quad \mathbf{e}_3 \times \mathbf{e}_1 = \mathbf{e}_2

These follow the cyclic pattern 12311 \to 2 \to 3 \to 1.