The cross product is an operation that takes two nonzero vectors and produces a vector (not a scalar) perpendicular to both of them. Geometrically, we define the magnitude of the cross product with
∣u×v∣=∣u∣∣v∣sinθ,
where θ is the angle between the vectors in standard position. To find the direction of the vector, we use the right-hand rule: point in the direction of
u
with your fingers, and then curl them (naturally, not backwards) towards the direction of
v.
Your thumb will then point in the direction of
u×v.
Algebraically, we define the cross product in R3 with
[u1,u2,u3]×[v1,v2,v3]=[w1,w2,w3],
where the components are given by
Component
Value
Remember
w1
u2v3−u3v2
2, 3
w2
u3v1−u1v3
3, 1
w3
u1v2−u2v1
1, 2
The pattern shouldn’t be too hard to see. Each part has a product of two terms, and then you just subtract the same two terms with the subscripts swapped. You essentially need to remember the sequence 233112, and even that has some repetition. You do not need to remember anything for
R2, since the cross product exists only in
R3 and in
R7.
Like the dot product, the cross product has some important properties. First, it can produce the zero vector:
v×0=0andv×v=0.
Unlike the dot product, is is anticommutative—order matters:
u×v=−(u×v).
It is distributive over addition:
u×(v+w)=u×v+u×w.
It is associative over scalar multiplication:
ku×v=k(u×v)=u×kv.
We can use the dot product and cross product together to make a test for coplanarity. Here it is: vectors
u,
v,
and
w
are coplanar if and only if
u⋅v×w=0.
It does not matter which vectors are placed where in that equation. As long as crossing two of the vectors and dotting the result with the third yields zero, they are coplanar. Why does this work? When we cross
v
and
w,
we get a vector perpendicular to both of them. If
u
is on the same plane, it should also be perpendicular to the cross product. We test for this using the dot product—two vectors are perpendicular if their dot product is zero.