The right-hand rule to pick which of the two normals
Key Insight: The minus sign on the j^ term belongs to the formula, not to the numbers. And notice what is missing: no ± out front. A length is never negative, so unlike the 2×2 area there is nothing to repair afterward.
IIVisualization 1 — Expanding the Symbolic Determinant
Row one holds i^,j^,k^; expanding along it turns a symbolic array into an honest vector.
The parallelogram's area is one number; the cross product carries it, and points which way the plane faces.
💡 This is the parallelogram. The triangle with the same two sides has exactly half this area, as it did in the plane.
IVVisualization 3 — The Right-Hand Rule on the Unit Vectors
Geometry and the determinant must agree on the simplest case: one unit vector crossed with another.
💡 Only in three dimensions do the directions perpendicular to a plane form a single line — just two opposite arrows, and the right hand names one of them; that is why the cross product lives nowhere else.
VQuiz Questions
Problem 1 · Expanding the Determinant
Given:A=⟨2,0,1⟩ and B=⟨1,3,0⟩ — findA×B.
✅ Correct! Check it the way you always can: A⋅(A×B)=−6+0+6=0 and B⋅(A×B)=−3+3+0=0.
❌ The middle term lost its minus. The j^ minor is a1b3−a3b1=(2)(0)−(1)(1)=−1, and the formula negates it: −(−1)=+1.
❌ That is B×A. Every component has flipped sign, which is what swapping the last two rows of a determinant does. Put A in row 2.
❌ Those are componentwise products.⟨a1b1,a2b2,a3b3⟩ is not the cross product — each component mixes the other two coordinates.
❌ Not quite. Expand along the first row: i^ minor, then the negated j^ minor, then the k^ minor.
Show solution
Write the symbolic determinant and expand along row 1:
The j^ term of the expansion carries a minus sign, so the component is
−(a1b3−a3b1)=−(−14)=14
For the record, the whole product is A×B=⟨−8,14,23⟩. The classic mistake is reporting the minor itself and getting −14; the sign is part of the formula, not part of the arithmetic inside the bars.
Problem 3 · Area of a Triangle in Space
Given: the triangle with vertices P=(1,1,1), Q=(2,3,1) and R=(1,3,2) — find its area.
✅ Correct!PQ×PR=⟨2,−1,2⟩ has length 3 — the parallelogram — and the triangle is half of it.
❌ That is the parallelogram.∣PQ×PR∣=3 is the area spanned by the two edges; the triangle with those same two sides is half of it.
❌ The square root was skipped.22+(−1)2+22=9 is the length squared. Take the root first: ∣⟨2,−1,2⟩∣=3, then halve.
❌ The sinθ is missing.∣PQ∣∣PR∣=5⋅5=5 is only the base times the slant side; the area needs the height, which is where sinθ enters.
❌ Not quite. Build two edge vectors from the same vertex, cross them, take the length, then halve.
Show solution
Both edges must leave the same corner. From P:
PQ=⟨1,2,0⟩,PR=⟨0,2,1⟩
Expand the symbolic determinant along the first row:
That 3 is the area of the parallelogram on PQ and PR. The triangle is half of it:
Area=21∣PQ×PR∣=23
Problem 4 · Order, Sign and Area
Given:A=⟨2,0,0⟩ and B=⟨0,5,0⟩ — findB×A and the area of the parallelogram the two vectors span.
✅ Correct! Order flips the vector, never the area: the direction reverses to −k^ while the length stays 10.
❌ That is A×B. Right hand along B (the y-axis), fingers curling toward A (the x-axis): the thumb points down, so the answer is ⟨0,0,−10⟩.
❌ An area is never negative. The ± that haunted the 2×2 determinant is gone here: the area is ∣⟨0,0,−10⟩∣=10, and the sign has moved into the direction of the vector.
❌ Zero is the parallel case. These two are perpendicular, which makes sinθ=1 — the largest the cross product can be, not the smallest.
❌ Not quite. Expand with B in row 2, then take the length of what comes out.