Linear Algebra – Why is the Matrix-Defined Cross Product of Two 3D Vectors Always Orthogonal?

cross productinner-productslinear algebramatricesorthogonality

By matrix-defined, I mean

$$\left<a,b,c\right>\times\left<d,e,f\right> = \left|

\begin{array}{ccc}
i & j & k\\
a & b & c\\
d & e & f
\end{array}

\right|$$

…instead of the definition of the product of the magnitudes multiplied by the sign of their angle, in the direction orthogonal)

If I try cross producting two vectors with no $k$ component, I get one with only $k$, which is expected. But why?

As has been pointed out, I am asking why the algebraic definition lines up with the geometric definition.

Best Answer

Here's an explanation in terms of the Hodge dual and the exterior (wedge) product.

Let ${e_1, e_2, e_3}$ be the standard orthonormal basis for $\mathbb{R}^3$. Consider the two vectors $a = a_1 e_1 + a_2 e_2 + a_3 e_3$ and $b = b_1 e_1 + b_2 e_2 + b_3 e_3$. From the matrix computation we obtain the familiar formula

$a\times b = (a_2 b_3 - a_3 b_2) e_1 + (a_3 b_1 - a_1 b_3) e_2 + (a_1 b_2 - a_2 b_1) e_3$.

But (see note at the bottom)

$a \wedge b = (a_1 b_2 - a_2 b_1) e_1 \wedge e_2 + (a_2 b_3 - a_3 b_2) e_2 \wedge e_3 + (a_3 b_1 - a_1 b_3) e_3 \wedge e_1$,

where the wedge $\wedge$ represents the exterior product. One can now compute the dual of this latter expression using that the left contraction of $(e_1 \wedge e_2)$ onto $(e_3 \wedge e_2 \wedge e_1)$ is $e_3$ (and similar relations). The result is that

$a \times b = (a \wedge b)^*$,

that is, the cross product of $a$ and $b$ is the dual of their exterior product.

Geometrically, this is an incredible picture. The exterior product is the plane element spanned by both $a$ and $b$, and the dual is the vector orthogonal to that plane.

This is my favorite interpretation of the cross product, but it's only helpful, of course, if you're familiar with exterior algebra and the Hodge dual.

Note: The wedge product can be found by formally computing

$(a_1 e_1 + a_2 e_2 + a_3 e_3) \wedge (b_1 e_1 + b_2 e_2 + b_3 e_3)$

using the distributivity and anticommutation relations of the exterior product.