Two Arrows in Space — and a Third One Pointing Straight Up
Multiply two numbers and you get a number. Multiply two vectors and you get... another vector, perpendicular to both of them.
That sounds like math inventing rules for its own convenience. But the cross product captures something physically real: the axis of rotation when two directions interact.
Push a wrench to the right. The bolt turns — but in which direction, clockwise or counterclockwise? The answer depends on which way the cross product of "force direction" and "lever arm direction" points. That's torque. The same operation runs through angular momentum, magnetic force, and 3D surface orientation in computer graphics.
The Right-Hand Rule: A Physical Intuition
Given two vectors and , the cross product is perpendicular to both. To find which way it points:
- Point your right-hand fingers along
- Curl them toward
- Your thumb points in the direction of
Switch the order — compute instead — and your thumb points the opposite direction. Cross products are anti-commutative:
This isn't a quirk. The order encodes direction — it's the whole point. When you tighten a standard bolt (right-hand thread), you're applying a cross product with a specific handedness.
The Formula: A 3×3 Determinant
For vectors and , the cross product is computed using the determinant structure:
Expanding this determinant gives:
Let's run a concrete example. Let and :
Sanity check: the result should be perpendicular to both inputs. Verify with dot products — both should be zero. . Confirmed.
Magnitude = Area of the Parallelogram They Span
The cross product has a clean geometric interpretation. Two vectors form a parallelogram. The area of that parallelogram equals the magnitude of their cross product:
When — the vectors are parallel — , so the cross product is the zero vector. A parallelogram with two parallel sides has zero area. Makes sense.
When — the vectors are perpendicular — , and the cross product has its maximum magnitude. A rectangle (perpendicular sides) maximizes parallelogram area for given side lengths.
Area shortcut: need the area of a triangle with vertices at three 3D points? Find two edge vectors, compute their cross product, take half the magnitude.
Where It Shows Up
The cross product isn't confined to math courses.
Torque is defined as , where is the position vector from the pivot and is the force. Longer lever arm, same force → larger cross product → more torque. The direction of the torque vector (clockwise vs. counterclockwise) comes from the right-hand rule.
Surface normals in 3D graphics define which way a polygon's face points — critical for lighting calculations. Given two edges of a triangle, their cross product gives the normal vector. Flip the vertex order and the normal reverses, which changes whether the triangle is visible from the camera or culled as back-facing.
Magnetic force on a moving charge is . The force is perpendicular to both the velocity and the magnetic field — a cross product — which is why charged particles in magnetic fields travel in circles.
The matrix determinant article goes deeper into why the 3×3 determinant structure works — the cross product formula is actually using the same cofactor expansion.
Quick Questions
Why doesn't the cross product work in 2D?
In 2D, there's no third dimension for the perpendicular vector to point into. The 2D analog gives a scalar (not a vector) equal to — this is the z-component of the 3D cross product and equals the area of the 2D parallelogram.
What does it mean when two vectors are parallel and their cross product is zero?
Parallel vectors don't span a plane — they define a line. The parallelogram they form has zero area, so the cross product is the zero vector. In graphics, this is a degenerate triangle (all points on one line) with no meaningful normal. In mechanics, parallel force and lever arm means no torque.
How is cross product different from dot product?
Dot product produces a scalar and measures how much two vectors point in the same direction (). Cross product produces a perpendicular vector and measures how much they span a plane (). One uses cosine, the other sine — they're complementary tools.