Cross product

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 3 with

[u1,u2,u3]×[v1,v2,v3]=[w1,w2,w3],

where the components are given by

Component Value Remember
w1 u2v3u3v2 2, 3
w2 u3v1u1v3 3, 1
w3 u1v2u2v1 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 2, since the cross product exists only in 3 and in 7.

Like the dot product, the cross product has some important properties. First, it can produce the zero vector:

v×0=0 and v×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

uv×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.