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 .
- 1Set up the determinant.
- 2Expand along the top row.
- 3Simplify.
Answer
.Example 2
Find a vector perpendicular to the plane through , and the area of triangle .
- 1Form two edge vectors.
- 2Take the cross product.
- 3Magnitude gives parallelogram area; triangle is half.
- 4Triangle area.
Answer
Normal: ; triangle area: .Example 3
Find a unit vector orthogonal to and .
- 1Cross product.
- 2Magnitude.
- 3Two 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.