Practice: Cross products as signed area
Self-check
Section titled “Self-check”Six short questions. Answer each one in your head (or on paper) before opening the collapsible. Trying to retrieve the answer is where the learning sticks; rereading feels productive but does much less.
1. What is the formula for the 2D cross product of v = [a, b] and w = [c, d]?
Show answer
v × w = a·d - b·c: one signed number, main-diagonal product minus off-diagonal product (the same pattern as the determinant).
2. What does the magnitude of a 2D cross product measure? What does the sign tell you?
Show answer
The magnitude |v × w| is the area of the parallelogram that v and w span. The sign records orientation: positive if w is counterclockwise from v, negative if clockwise, zero if they are collinear (the parallelogram has collapsed to a line).
3. How is the 2D cross product related to the determinant?
Show answer
They are the same operation. v × w equals the determinant of the 2x2 matrix whose columns are v and w, because both compute the signed area of the parallelogram those two vectors span. Zero cross product, dependent columns, zero determinant, and rank deficiency are all one collapse.
4. Is the cross product commutative?
Show answer
No, it is anti-commutative: v × w = -(w × v). Swapping the inputs keeps the same parallelogram (same area) but reverses the turn direction, so the sign flips. This is the mirror image of the dot product, which is symmetric.
5. Contrast the dot product and the cross product in one sentence each.
Show answer
The dot product is symmetric and measures how much two vectors align (an alignment number). The cross product is antisymmetric and measures how much area two vectors span, with a sign for orientation (a signed area). Same two inputs, opposite character.
6. What changes about the cross product when you go to 3D?
Show answer
In 3D the cross product of two vectors is itself a vector, not a number. It points perpendicular to both inputs, and its length equals the area of the parallelogram they span. (The next lesson explains why the answer becomes a vector.)
Try it yourself, part 1: compute and read orientation
Section titled “Try it yourself, part 1: compute and read orientation”For each pair, compute v × w = a·d - b·c, then state the area (the magnitude) and the orientation (counterclockwise, clockwise, or collinear). About 7 minutes, pen and paper.
- a)
[1, 0] × [1, 1] - b)
[0, 2] × [3, 0] - c)
[2, 2] × [1, 1] - d)
[3, 1] × [1, 4]
Check your work
- a)
(1)(1) - (0)(1) = 1. Area 1; positive, so[1, 1]is counterclockwise from[1, 0]. - b)
(0)(0) - (2)(3) = -6. Area 6; negative, so[3, 0]is clockwise from[0, 2]. - c)
(2)(1) - (2)(1) = 0. Collinear ([1, 1] = 0.5 · [2, 2]); the parallelogram has collapsed, area 0. - d)
(3)(4) - (1)(1) = 12 - 1 = 11. Area 11; positive, so[1, 4]is counterclockwise from[3, 1].
Try it yourself, part 2: anti-commutativity and the determinant
Section titled “Try it yourself, part 2: anti-commutativity and the determinant”Use v = [3, 2] and w = [1, 4]. About 6 minutes.
Step 1. Compute v × w and w × v. Confirm that w × v = -(v × w).
Step 2. Now stack v and w as the columns of a 2x2 matrix and compute its determinant. How does it compare to v × w?
Check your work
Step 1. v × w = (3)(4) - (2)(1) = 12 - 2 = 10. w × v = (1)(2) - (4)(3) = 2 - 12 = -10. Indeed w × v = -(v × w): same parallelogram (area 10), reversed turn, flipped sign.
Step 2. Columns v = [3, 2] and w = [1, 4] give the matrix [[3, 1], [2, 4]], and det = (3)(4) - (1)(2) = 12 - 2 = 10. It equals v × w exactly: the 2D cross product is the determinant of the matrix the two vectors form.
Flashcards
Section titled “Flashcards”Ten cards. Click any card to reveal the answer. Use the Print flashcards button to lay out the full set as one card per page, ready to print or save as a PDF for offline review.
Q. What is the 2D cross product formula for v = [a, b] and w = [c, d]?
v × w = a·d - b·c: one signed number, main-diagonal product minus off-diagonal product (the same pattern as the determinant).
Q. What does the magnitude of a 2D cross product measure?
The area of the parallelogram that the two vectors span. The cross product packs that area (magnitude) and the orientation (sign) into one signed number.
Q. What does the sign of a 2D cross product tell you?
Orientation: positive means w is counterclockwise from v, negative means clockwise, zero means the two are collinear (the parallelogram collapsed to a line).
Q. How is the 2D cross product related to the determinant?
It is the determinant of the matrix whose columns are the two vectors. Both compute the signed area of the spanned parallelogram, so zero cross product = dependent columns = zero determinant = rank deficient.
Q. Is the cross product commutative?
No, it is anti-commutative: v × w = -(w × v). Swapping inputs keeps the area but reverses the turn, flipping the sign. The dot product, by contrast, is symmetric.
Q. Contrast the dot product and the cross product.
Dot product: symmetric, measures alignment (an alignment number). Cross product: antisymmetric, measures spanned area with an orientation sign (a signed area). Same two inputs, opposite character.
Q. What does a zero 2D cross product mean?
The two vectors are collinear (one is a scalar multiple of the other), so the parallelogram they span has collapsed to a line and its area is zero. It is the same collapse as a zero determinant and dependent columns.
Q. What happens to the cross product in 3D?
It returns a vector, not a number: one perpendicular to both inputs, with length equal to the area of the parallelogram they span. The 2D “outputs a scalar” intuition does not carry over.
Q. Which diagonal pattern does the 2D cross product use?
a·d - b·c: main diagonal minus off diagonal, exactly like the determinant. Not a·c - b·d or a·b - c·d.
Q. Where does the cross product show up in machine learning?
Less centrally than the dot product. It appears in physics-informed neural networks (fluid flow, electromagnetism), geometric deep learning (3D rotations, mesh orientation), and robotics (torque, angular velocity).