Multivariable-Calculus · Unit 2 · Video 4 · Interactive Practice

Area With a Direction: The Cross Product and the Right-Hand Rule

IKey Formulas

FormulaNameWhat you need
A×B=i^j^k^a1a2a3b1b2b3\vec{A} \times \vec{B} = \begin{vmatrix} \hat{i} & \hat{j} & \hat{k} \\ a_1 & a_2 & a_3 \\ b_1 & b_2 & b_3 \end{vmatrix}The symbolic determinantThe components of both vectors in rows 2 and 3
A×B=a2b3a3b2,  (a1b3a3b1),  a1b2a2b1\vec{A} \times \vec{B} = \langle\, a_2b_3 - a_3b_2,\ \ -(a_1b_3 - a_3b_1),\ \ a_1b_2 - a_2b_1 \,\rangleExpansion along row 1Three 2×22 \times 2 minors, the middle one negated
A×B=ABsinθ=area of the parallelogram|\vec{A} \times \vec{B}| = |\vec{A}|\,|\vec{B}|\sin\theta = \text{area of the parallelogram}The length payoffBoth lengths and the angle between them
A×BA\vec{A} \times \vec{B} \perp \vec{A} and A×BB\vec{A} \times \vec{B} \perp \vec{B}The direction payoffThe right-hand rule to pick which of the two normals

Key Insight: The minus sign on the j^\hat{j} term belongs to the formula, not to the numbers. And notice what is missing: no ±\pm out front. A length is never negative, so unlike the 2×22 \times 2 area there is nothing to repair afterward.

IIVisualization 1 — Expanding the Symbolic Determinant

Row one holds i^,j^,k^\hat{i}, \hat{j}, \hat{k}; expanding along it turns a symbolic array into an honest vector.

1 · the memory device

A×B=i^j^k^a1a2a3b1b2b3\vec{A} \times \vec{B} = \begin{vmatrix} \hat{i} & \hat{j} & \hat{k} \\ a_1 & a_2 & a_3 \\ b_1 & b_2 & b_3 \end{vmatrix}

IIIVisualization 2 — The Length Is the Area

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\vec{A} = \langle 2, 0, 1 \rangle and B=1,3,0\vec{B} = \langle 1, 3, 0 \ranglefind A×B\vec{A} \times \vec{B}.

✅ Correct! Check it the way you always can: A(A×B)=6+0+6=0\vec{A}\cdot(\vec{A}\times\vec{B}) = -6 + 0 + 6 = 0 and B(A×B)=3+3+0=0\vec{B}\cdot(\vec{A}\times\vec{B}) = -3 + 3 + 0 = 0.
❌ The middle term lost its minus. The j^\hat{j} minor is a1b3a3b1=(2)(0)(1)(1)=1a_1b_3 - a_3b_1 = (2)(0) - (1)(1) = -1, and the formula negates it: (1)=+1-(-1) = +1.
❌ That is B×A\vec{B} \times \vec{A}. Every component has flipped sign, which is what swapping the last two rows of a determinant does. Put A\vec{A} in row 2.
❌ Those are componentwise products. a1b1,a2b2,a3b3\langle a_1b_1, a_2b_2, a_3b_3\rangle is not the cross product — each component mixes the other two coordinates.
❌ Not quite. Expand along the first row: i^\hat{i} minor, then the negated j^\hat{j} minor, then the k^\hat{k} minor.
Show solution

Write the symbolic determinant and expand along row 1:

A×B=i^j^k^201130\vec{A} \times \vec{B} = \begin{vmatrix} \hat{i} & \hat{j} & \hat{k} \\ 2 & 0 & 1 \\ 1 & 3 & 0 \end{vmatrix}

Term by term:

i^: (0)(0)(1)(3)=3j^: [(2)(0)(1)(1)]=+1k^: (2)(3)(0)(1)=6\hat{i}:\ (0)(0) - (1)(3) = -3 \qquad \hat{j}:\ -\big[(2)(0) - (1)(1)\big] = +1 \qquad \hat{k}:\ (2)(3) - (0)(1) = 6

So A×B=3,1,6\vec{A} \times \vec{B} = \langle -3, 1, 6 \rangle. The free check costs two dot products, and both must vanish: A(A×B)=6+0+6=0\vec{A}\cdot(\vec{A}\times\vec{B}) = -6 + 0 + 6 = 0, B(A×B)=3+3+0=0\vec{B}\cdot(\vec{A}\times\vec{B}) = -3 + 3 + 0 = 0.

Problem 2 · The Middle Term

Given: A=4,1,2\vec{A} = \langle 4, -1, 2 \rangle and B=3,5,2\vec{B} = \langle 3, 5, -2 \ranglefind the j^\hat{j}-component of A×B\vec{A} \times \vec{B}.

✅ Correct! The minor is 14-14, and the formula's own minus sign turns it into +14+14 — two negatives that are easy to collapse into one.
❌ That is the minor, not the component. (4)(2)(2)(3)=14(4)(-2) - (2)(3) = -14 is only half the story: the j^\hat{j} term carries a minus sign, so the component is (14)=14-(-14) = 14.
❌ Wrong minor. (1)(2)(2)(5)=8(-1)(-2) - (2)(5) = -8 deletes column 1, so that is the i^\hat{i}-component. For j^\hat{j}, delete column 2: the rows left are 4,24, 2 and 3,23, -2.
❌ That is the k^\hat{k}-component. (4)(5)(1)(3)=23(4)(5) - (-1)(3) = 23 comes from deleting column 3. The j^\hat{j} minor uses the first and third columns.
❌ Not quite. Delete row 1 and column 2, take the 2×22 \times 2 determinant, then negate it.
Show solution

Deleting row 1 and column 2 leaves the first and third columns:

a1a3b1b3=4232=(4)(2)(2)(3)=86=14\begin{vmatrix} a_1 & a_3 \\ b_1 & b_3 \end{vmatrix} = \begin{vmatrix} 4 & 2 \\ 3 & -2 \end{vmatrix} = (4)(-2) - (2)(3) = -8 - 6 = -14

The j^\hat{j} term of the expansion carries a minus sign, so the component is

(a1b3a3b1)=(14)=14-(a_1b_3 - a_3b_1) = -(-14) = 14

For the record, the whole product is A×B=8,14,23\vec{A} \times \vec{B} = \langle -8, 14, 23 \rangle. The classic mistake is reporting the minor itself and getting 14-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)P = (1, 1, 1), Q=(2,3,1)Q = (2, 3, 1) and R=(1,3,2)R = (1, 3, 2)find its area.

✅ Correct! PQ×PR=2,1,2\vec{PQ} \times \vec{PR} = \langle 2, -1, 2 \rangle has length 33 — the parallelogram — and the triangle is half of it.
❌ That is the parallelogram. PQ×PR=3|\vec{PQ} \times \vec{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=92^2 + (-1)^2 + 2^2 = 9 is the length squared. Take the root first: 2,1,2=3|\langle 2, -1, 2\rangle| = 3, then halve.
❌ The sinθ\sin\theta is missing. PQPR=55=5|\vec{PQ}|\,|\vec{PR}| = \sqrt{5}\cdot\sqrt{5} = 5 is only the base times the slant side; the area needs the height, which is where sinθ\sin\theta 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 PP:

PQ=1,2,0,PR=0,2,1\vec{PQ} = \langle 1, 2, 0 \rangle, \qquad \vec{PR} = \langle 0, 2, 1 \rangle

Expand the symbolic determinant along the first row:

i^: (2)(1)(0)(2)=2j^: [(1)(1)(0)(0)]=1k^: (1)(2)(2)(0)=2\hat{i}:\ (2)(1) - (0)(2) = 2 \qquad \hat{j}:\ -\big[(1)(1) - (0)(0)\big] = -1 \qquad \hat{k}:\ (1)(2) - (2)(0) = 2 PQ×PR=2,1,2,PQ×PR=4+1+4=9=3\vec{PQ} \times \vec{PR} = \langle 2, -1, 2 \rangle, \qquad |\vec{PQ} \times \vec{PR}| = \sqrt{4 + 1 + 4} = \sqrt{9} = 3

That 33 is the area of the parallelogram on PQ\vec{PQ} and PR\vec{PR}. The triangle is half of it:

Area=12PQ×PR=32\text{Area} = \tfrac{1}{2}\,|\vec{PQ} \times \vec{PR}| = \tfrac{3}{2}

Problem 4 · Order, Sign and Area

Given: A=2,0,0\vec{A} = \langle 2, 0, 0 \rangle and B=0,5,0\vec{B} = \langle 0, 5, 0 \ranglefind B×A\vec{B} \times \vec{A} and the area of the parallelogram the two vectors span.

✅ Correct! Order flips the vector, never the area: the direction reverses to k^-\hat{k} while the length stays 1010.
❌ That is A×B\vec{A} \times \vec{B}. Right hand along B\vec{B} (the yy-axis), fingers curling toward A\vec{A} (the xx-axis): the thumb points down, so the answer is 0,0,10\langle 0, 0, -10 \rangle.
❌ An area is never negative. The ±\pm that haunted the 2×22 \times 2 determinant is gone here: the area is 0,0,10=10|\langle 0, 0, -10\rangle| = 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\sin\theta = 1 — the largest the cross product can be, not the smallest.
❌ Not quite. Expand with B\vec{B} in row 2, then take the length of what comes out.
Show solution

Put B\vec{B} in row 2 and A\vec{A} in row 3:

B×A=i^j^k^050200=i^(00)j^(00)+k^(010)=0,0,10\vec{B} \times \vec{A} = \begin{vmatrix} \hat{i} & \hat{j} & \hat{k} \\ 0 & 5 & 0 \\ 2 & 0 & 0 \end{vmatrix} = \hat{i}\,(0 - 0) - \hat{j}\,(0 - 0) + \hat{k}\,(0 - 10) = \langle 0, 0, -10 \rangle

The other order gives A×B=0,0,10\vec{A} \times \vec{B} = \langle 0, 0, 10 \rangle: swapping the two rows of a determinant flips its sign, so B×A=(A×B)\vec{B} \times \vec{A} = -(\vec{A} \times \vec{B}).

The area is the length of either one:

B×A=0+0+100=10=ABsin90°=(2)(5)(1)|\vec{B} \times \vec{A}| = \sqrt{0 + 0 + 100} = 10 = |\vec{A}|\,|\vec{B}|\sin 90\degree = (2)(5)(1)

Both orders report the same area 1010 — the 2×52 \times 5 rectangle they span — and disagree only about which way it faces.

Solved: 0 / 4