Sign in to save

Bookmark this page so you can find it later.

Sign in to save

Bookmark this page so you can find it later.

The cross product is a way to multiply two vectors in three dimensions and get a new vector. Unlike the dot product, which gives a scalar, the cross product gives a vector that points perpendicular to both original vectors. It is important in geometry, physics, engineering, and computer graphics because it connects direction, rotation, and area.

The direction of a × b is found using the right-hand rule, so order matters.

Understanding Math: The Cross Product

The size of a cross product has a clear geometric meaning. Place the two vectors tail to tail. They form two sides of a parallelogram.

The length of the new vector equals the area of that parallelogram. One vector supplies the base. The part of the other vector that stands at a right angle to the base supplies the height.

A small angle gives a small height, so the area is small. A right angle gives the greatest possible area for vectors of fixed lengths. This makes the cross product useful for finding areas in three dimensional geometry.

Direction carries information that area alone cannot show. The two original vectors define a flat plane, and there are exactly two opposite directions at right angles to that plane. The order of the input vectors chooses one of them.

Use your right hand by pointing your fingers along the first vector, then curling them toward the second vector through the smaller turn. Your thumb gives the result direction. Reversing the inputs reverses the thumb direction.

This is not a minor sign rule. It records the orientation of a turn in space, which is important whenever clockwise and anticlockwise rotations must be distinguished.

In coordinate problems, the component method can feel like a list of signs to memorise. It becomes safer when each part is checked carefully. The first result component comes from the second and third coordinates.

The second result component comes from the third and first coordinates, but its subtraction order is reversed. The final component comes from the first and second coordinates. A common error is losing that middle negative sign.

After calculating, test the answer with dot products. The dot product of the result with each original vector should be zero, apart from small rounding errors. This check confirms that the calculated vector really lies at right angles to both inputs.

Physics gives the cross product a practical role. Torque describes how strongly a force tends to turn an object about a pivot. It depends on the position vector from the pivot to where the force acts, crossed with the force vector.

Pushing a door near its hinges produces little torque because the position vector is short. Pushing far from the hinges produces more torque. A force directed straight toward the hinge produces no turning effect because the vectors are parallel.

The same ideas appear in angular momentum, magnetic forces, surface normals in computer graphics, and the area of triangle faces in three dimensional models. Pay attention to units too.

If lengths are measured in metres, a cross product used as an area has square metres as its unit. Its direction is meaningful only in three dimensional space, where a single perpendicular direction can be chosen.

Key Facts

  • The cross product a × b is a vector perpendicular to both a and b.
  • Magnitude formula: |a × b| = |a||b|sin(theta), where theta is the angle between a and b.
  • Component formula: a × b = (a2b3 - a3b2, a3b1 - a1b3, a1b2 - a2b1).
  • Determinant form: a × b = det[[i, j, k], [a1, a2, a3], [b1, b2, b3]].
  • Order matters: a × b = -(b × a).
  • If a and b are parallel, then a × b = 0 because sin(0) = 0 or sin(180°) = 0.

Vocabulary

Cross product
A vector operation on two 3D vectors that produces a vector perpendicular to both inputs.
Right-hand rule
A method for finding the direction of a cross product by curling the fingers of the right hand from the first vector toward the second vector.
Magnitude
The length or size of a vector, written with absolute value bars such as |a|.
Unit vector
A vector with length 1 that is often used to describe direction.
Determinant
A number calculated from a square array that can be used to write the cross product in component form.

Common Mistakes to Avoid

  • Reversing the order of the vectors, then keeping the same answer. This is wrong because a × b and b × a point in opposite directions.
  • Using cos(theta) instead of sin(theta) for the magnitude. The cross product measures perpendicular spread and area, so |a × b| = |a||b|sin(theta).
  • Forgetting the negative sign in the j component of the determinant. This changes the direction and gives an incorrect vector.
  • Treating the cross product like ordinary multiplication of components. The cross product combines components in a specific pattern and produces a perpendicular vector, not (a1b1, a2b2, a3b3).

Practice Questions

  1. 1 Compute a × b for a = (2, 3, 1) and b = (4, 0, 5).
  2. 2 Two vectors have lengths |a| = 6 and |b| = 10, and the angle between them is 30°. Find |a × b|.
  3. 3 A vector a points along the positive x-axis and vector b points along the positive y-axis. Use the right-hand rule to determine the direction of a × b, then explain what changes if the order is reversed.