Cross Product

Pre-requisites: Vectors

The cross product, like the dot product, is a product of two vectors which has two definitions. The geometric definition of the cross product is that

v × w = |v| |w| |sin theta|
[where once again theta is the angle between the two vectors] and that the direction of the cross product is orthogonal to both v and w. From this definition, it should be clear that the cross product of two vectors IS A VECTOR and not a scalar. Repeat that phrase to yourself a couple of times: the cross product is a vector. Taunt people who believe otherwise.

The definition of the cross product I just gave you is incomplete: there are two vectors that satisfy being orthogonal to v and w and also having the desired magnitude. To pick the correct one, we must use the right hand rule: if you point the thumb of your right hand along v and point your pointing finger along w, then v × w will point in the direction of your middle finger. To put it another way: if v and w are rotated to lie in the part of the xy-plane with y >= 0, then v × w will point in the direction of the positive z-axis.

The algebraic definition of the cross product is

(v1, v2, v3) × (w1, w2, w3) = ( v2 w3 - v3 w2, v3 w1 - v1 w3, v1 w2 - v2 w1 )
This definition is easier to remember if you think of it as the determinant of the matrix
[  i   j   k   ]
[  v1  v2  v3  ]
[  w1  w2  w3  ]
In fact, to some people the whole point of the cross product is that the triple product (what you get when you combine the dot product and the cross product) is the same as a determinant:
                    [  a1  a2  a3  ]
a · ( b × c ) = det [  b1  b2  b3  ]
                    [  c1  c2  c3  ]
If you don't know what a determinant is, you can just use the above equation as a definition and not worry about it. It's most important property is that if you have a parallelopiped (the three dimensional version of the parallelogram -- a solid with eight pairwise parallel faces) with vertices 0, v, w, x, v + w, v + x, w + x, and v + w + x has volume | v · ( w × x ) |. Thus the triple product / determinant of a three by three matrix can be thought of as an "oriented" (signed) volume.

Now, thinking of the cross product in terms of the determinant of a three by three matrix only helps you if you can remember the determinant of a three by three matrix. One way of doing this is to think of it in terms of the determinants of two by two matrices:

    [ i  j  k  ]
det [ v1 v2 v3 ] = det [ v2 v3 ] - det [ v1 v3 ] + det [ v1 v2 ] 
    [ w1 w2 w3 ]       [ v2 v3 ]       [ v1 v3 ]       [ v1 v2 ]
where
det [ a b ] = ad - bc = (a,b) · (d,-c)
    [ c d ] 
The determinant of a two by two matrix also has a geometric interpretation: it is the area of the parallelogram with vertices 0, v, w, and v + w .

Wow. We've made quite a number of strong statements, without giving a hint of proof to any of them. Let's rectify this situation:

If you found the above proofs a little abstract, you may find it useful to interactively play around with the cross product to develop your intuitions. You may also take comfort in the fact that the following simple properties are all that you really need to know about the cross product:

Finally, here's an application of the cross product: finding the equation of a plane given two vectors and a point lying on the plane. We did this before by solving a system of linear equations, but it is much simpler if you use the cross product. Just take the cross product of the two vectors to get a vector orthogonal to both of them and thus a normal vector to the plane, and then plug the normal vector (A,B,C) and the point (x1, x2, x3) into the formula
A ( x - x1 ) + B ( y - x2 ) + C ( z - x3 ) = 0

Exercises:

  1. What do you get when you cross a grape and an elephant? When you cross a grape and a mountain climber?
  2. Is the cross product associative?
  3. Calculate the cross product of (1,2,3) and (4,5,6).
  4. Prove that the cross product is linear in its second argument.
  5. Prove that the cross product factors constants in its second argument.
  6. What is i × k? j × i?
  7. Find a vector orthogonal to (1,2,3) and (0,4,-9).
  8. Find the volume of the parallelopiped with the vertices .
  9. Find the equation of the plane going through the points (0,0,0), (1,2,3), and (2,0,-1).
  10. Find the equation of the plane going through (1,2,3) and containing the vectors (0,0,1) and (2,-3,7).
  11. Prove that the cross product of two vectors is the zero vector if and only if the two vectors are parallel or one of them is the zero vector.
  12. Prove the Jacobi Identity:
  13. Show that determinants can factor a scalar from a row or column.
  14. Show that a determinant doesn't change if one row (or column) is added to another row (or column).
  15. Show that the system of equations has a solution if and only if the determinant isn't zero.
  16. Show that switching two rows (or columns) changes the sign of a determinant.

Vector Calculus Index | World Web Math Main Page


thomasc@athena.mit.edu
last modified 1 July 1997