Topic 4 / 17intermediate

Cross Product

Compute the cross product via determinant or component formula, use the right-hand rule for direction, and apply it to areas, normal vectors, and parallelism tests.

The cross product takes two vectors in and returns a third vector orthogonal to both, with magnitude equal to the area of the parallelogram they span. Unlike the dot product, the result is a **vector** — and only admits this construction in this clean form.

Component formula and determinant trick

For :
The middle term carries a minus sign — easy to forget. The clean way to compute is the symbolic determinant: .
Key takeaways
  • The middle component has a leading minus sign.
  • Cross product output is a vector — orthogonal to both inputs.

Right-hand rule for direction

Point fingers along , curl them toward ; thumb points along . Order matters: .

Magnitude and area

. This is the area of the parallelogram with sides . The triangle with these sides has area .

Parallelism test

iff one vector is a scalar multiple of the other (or one is zero). This is the cleanest test for parallel vectors in .

Algebraic properties

(anticommutative). Distributive: . . **Cross product is NOT associative.**
Strategy tips
  • If you swap operand order, flip the sign — don't recompute.
  • is a fast sanity check.

Worked examples

Example 1
Compute .
  1. 1
    Set up the determinant.
  2. 2
    Expand along the top row.
  3. 3
    Simplify.
Answer
.
Example 2
Find a vector perpendicular to the plane through , and the area of triangle .
  1. 1
    Form two edge vectors.
  2. 2
    Take the cross product.
  3. 3
    Magnitude gives parallelogram area; triangle is half.
  4. 4
    Triangle area.
Answer
Normal: ; triangle area: .
Example 3
Find a unit vector orthogonal to and .
  1. 1
    Cross product.
  2. 2
    Magnitude.
  3. 3
    Two unit vectors (one for each direction).
Answer
.

Interactive visualizations

Loading visualization…
Slide the components of and . The red vector is ; the blue parallelogram's area equals its magnitude.

Formulas in this topic

Cross product (components)
Compute via component formula or determinant.
Cross product (determinant)
Symbolic determinant form.
Cross product magnitude
Area of parallelogram with sides u, v.
Triangle area
Half of the parallelogram area.

Related topics