Skip to content

Cross Product#

Definition: Cross Product

The cross product \(\boldsymbol{a} \times \boldsymbol{b}\) of two real column vectors \(\boldsymbol{a} = \begin{bmatrix} a_x & a_y & a_z\end{bmatrix}^\mathsf{T}\) and \(\boldsymbol{b} = \begin{bmatrix} b_x & b_y & b_z\end{bmatrix}^\mathsf{T}\) in \(\mathbb{R}^3\) is defined as the following real column vector:

\[\boldsymbol{a} \times \boldsymbol{b} \overset{\text{def}}{=} \begin{bmatrix}a_y b_z - a_z b_y \\ a_z b_x - a_x b_z \\ a_x b_y - a_y b_x \end{bmatrix}\]

Theorem: Magnitude of the Cross Product

The Euclidean norm of the cross product \(\boldsymbol{v} \times \boldsymbol{w}\) is given the product of the real sine function and the Euclidean norms of \(v\) and \(w\) as

\[ ||\boldsymbol{v} \times \boldsymbol{w}|| = ||\boldsymbol{v}|| \, ||\boldsymbol{w}|| \sin \theta, \]

where \(\theta\) is the angle between \(\boldsymbol{v}\) and \(\boldsymbol{w}\).

Proof

TODO

Theorem: Direction of the Cross Product

If \(v, w \in \mathbb{R}^3\) are real vectors, then the cross product \(v \times w\) is orthogonal to both \(v\) and \(w\) with respect to the dot product:

\[(v \times w) \cdot v = (v \times w) \cdot w = 0\]

Tip: Right-Hand Rule

The direction of \(v \times w\) can be determined by the right-hand rule - if you point your index finger in the direction of \(v\) and your middle finger in the direction of \(w\) and then your thumb will point in the direction of \(v \times w\) if you stick it out.

Proof

TODO

Theorem: Self-Product of the Cross Product

The cross product of a vector \(\boldsymbol{v} \in \mathbb{R}^3\) with itself is \(\boldsymbol{0}\).

\[ \boldsymbol{v} \times \boldsymbol{v} = \boldsymbol{0} \]
Proof

TODO

Theorem: Linear Independence via Cross Product

The cross product \(\boldsymbol{v} \times \boldsymbol{w}\) is non-zero if and only if \(\boldsymbol{v}\) and \(\boldsymbol{w}\) are linearly independent.

Proof

TODO

Theorem: Anticommutativity of the Cross Product

The cross product is anticommutative:

\[\boldsymbol{v} \times \boldsymbol{w} = - (\boldsymbol{w}\times \boldsymbol{v})\]
Proof

TODO

Theorem: Jacobi Property of the Cross Product (Non-Associativity)

The cross product is not associative but satisfies the Jacobi property:

\[ \boldsymbol{a} \times (\boldsymbol{b} \times \boldsymbol{c}) - \boldsymbol{b} \times (\boldsymbol{a} \times \boldsymbol{c}) + \boldsymbol{c} \times (\boldsymbol{a} \times \boldsymbol{b}) = \boldsymbol{0} \]
Proof

TODO

Theorem: Distributivity of the Cross Product

The cross product is distributive over addition:

\[ \boldsymbol{a} \times (\boldsymbol{b} + \boldsymbol{c}) = \boldsymbol{a} \times \boldsymbol{b} + \boldsymbol{a} \times \boldsymbol{c} \]
\[ (\boldsymbol{b} + \boldsymbol{c}) \times \boldsymbol{a} = \boldsymbol{b} \times \boldsymbol{a} + \boldsymbol{c} \times \boldsymbol{a} \]
Proof

TODO

Theorem: Compatibility of the Cross Product

The cross product is compatible with matrix products:

\[ (\lambda \boldsymbol{a}) \times \boldsymbol{b} = \boldsymbol{a} \times (\lambda \boldsymbol{b}) = \lambda (\boldsymbol{a} \times \boldsymbol{b}) \]
Proof

TODO