Intuition The one core idea
Two arrows in 3D space, glued at their tails, span a flat tilted flap. The cross product builds a third arrow that stands straight up out of that flap, and whose length equals the flap's area. To read that sentence you only need to know what an arrow (vector) is, what "length" and "angle" mean, and how a right hand tells "up" from "down".
This page assumes nothing . Before you touch the parent note Cross product — formula, geometric meaning (area), right-hand rule , make sure every symbol below is a picture in your head, not a squiggle on a page.
R 3 — the room you live in
R is plain-words the set of all real numbers (every point on an endless number line). R 3 is every triple of three such numbers ( x , y , z ) — one number for how far right , one for how far up , one for how far towards you . Picture the corner of a room: the floor edges and the vertical edge are the three directions.
Why the topic needs it: the cross product is the one operation that lives only here. In flat 2D there's no "up out of the page" that is itself a 2D arrow, so the trick has no room to work. Three axes give the perpendicular arrow somewhere to stand.
The three arrows i ^ , j ^ , k ^ pinned to the axes are our basis — the standard rulers we measure everything against (defined in §4).
A vector is an arrow: it has a length (how long) and a direction (which way it points). We write it a (the little arrow on top means "this is a vector, not a plain number"). In coordinates a = ( a 1 , a 2 , a 3 ) means: start at the origin, walk a 1 right, a 2 up, a 3 toward you — the tip is where the arrow ends.
Intuition Number vs. arrow
A scalar is a lone number (5 , − 2.3 ) — just a size. A vector carries a direction too. The dot product will spit out a scalar; the cross product will spit out a vector. Knowing which type comes out is half of understanding the topic.
The subscripts a 1 , a 2 , a 3 are just names for the three coordinates — first, second, third. Nothing mysterious: a 2 is "the up-part of a ".
Definition Magnitude (length)
∣ a ∣ (read "size of a " or "norm") is plain-words the length of the arrow . By stacking Pythagoras twice in the room,
∣ a ∣ = a 1 2 + a 2 2 + a 3 2 .
Why the square root? The little bars turn a whole arrow into one honest length. Pythagoras says the diagonal of a box is the square root of the summed squared edges — so this formula is just "diagonal of the box whose sides are a 1 , a 2 , a 3 ".
Worked example Feel the number
a = ( 2 , 0 , 0 ) has length ∣ a ∣ = 4 = 2 . An arrow lying 2 units along the right-axis is 2 long. No surprise — good, formulas should agree with the picture.
The parent's area formula uses ∣ a ∣ , ∣ b ∣ , and ∣ a × b ∣ . All three are "how long is this arrow", read by the same ruler.
θ — the opening angle
Glue the tails of a and b together. The angle between them , called θ (Greek "theta"), is how wide the "slice of pizza" opens, from 0 ∘ (same direction) to 18 0 ∘ (opposite directions).
Now two special ratios of that angle appear everywhere:
cos θ and sin θ on a right triangle
Drop a perpendicular from the tip of b straight down onto the line of a . That makes a right triangle with b as the slanted side (the hypotenuse ).
cos θ = hypotenuse adjacent — the along- part of b (how much it shares a 's direction).
sin θ = hypotenuse opposite — the sideways part of b (how much it stands off a ).
sin , not cos
Look at the figure: the height of the parallelogram (the perpendicular gap) is exactly ∣ b ∣ sin θ — the sideways part. Area = base × height = ∣ a ∣ ⋅ ∣ b ∣ sin θ . So the cross product needs sin precisely because it measures failure to align (sideways-ness). The dot product uses cos because it measures alignment . That is the whole "coS together, Sin sideways" mnemonic.
Sanity of the extremes:
θ = 0 ∘ (parallel): sin 0 = 0 → no height → zero area . The flap is flat, no flap at all.
θ = 9 0 ∘ (perpendicular): sin 9 0 ∘ = 1 → maximum height → biggest area for those lengths.
θ = 18 0 ∘ (opposite): sin 18 0 ∘ = 0 again → still flat, zero area.
Definition Unit basis vectors
A unit vector is an arrow of length exactly 1 (the little hat ^ means "length one"). The three standard ones point along the three axes:
i ^ = ( 1 , 0 , 0 ) , j ^ = ( 0 , 1 , 0 ) , k ^ = ( 0 , 0 , 1 ) .
Right, up, toward-you — each one unit long.
Why the topic needs them: the determinant mnemonic
a × b = i ^ a 1 b 1 j ^ a 2 b 2 k ^ a 3 b 3
puts these three arrows in the top row so the answer comes out already split into its right/up/toward-you parts. Without knowing i ^ , j ^ , k ^ that box is gibberish.
Definition Dot product (the partner operation)
The dot product multiplies matching parts and adds:
a ⋅ b = a 1 b 1 + a 2 b 2 + a 3 b 3 = ∣ a ∣∣ b ∣ cos θ .
Output: a plain number (scalar). It is large when the arrows point the same way, and zero when they are perpendicular .
Why the topic needs it, twice over:
Perpendicularity test. "c is perpendicular to a " is written c ⋅ a = 0 . The parent's whole derivation ("demand perpendicularity") is two dot-product equations set to zero .
Lagrange's identity. The clean link ∣ a × b ∣ 2 = ∣ a ∣ 2 ∣ b ∣ 2 − ( a ⋅ b ) 2 uses the dot to pin down the cross's length.
Full builds in Dot Product and Orthogonality .
2 × 2 determinant
For a little square of four numbers,
p r q s = p s − q r
— "down-diagonal minus up-diagonal". Geometrically it is the signed area of the parallelogram made by the rows ( p , q ) and ( r , s ) : positive if they go counter-clockwise, negative if clockwise.
3 × 3 expansion along the top row
i ^ a 1 b 1 j ^ a 2 b 2 k ^ a 3 b 3 = i ^ a 2 b 2 a 3 b 3 − j ^ a 1 b 1 a 3 b 3 + k ^ a 1 b 1 a 2 b 2 .
Note the alternating sign: plus i ^ , minus j ^ , plus k ^ . That single minus in the middle is where nearly every sign error is born.
Expand it and you get exactly the parent's component formula
a × b = ( a 2 b 3 − a 3 b 2 , a 3 b 1 − a 1 b 3 , a 1 b 2 − a 2 b 1 ) .
The middle slot reads a 3 b 1 − a 1 b 3 — flipped by that minus. Deep dive in Determinants .
Intuition Why algebra alone isn't enough
A flat flap has two perpendicular directions: straight up and straight down. The formula quietly picks one (via its signs); the right-hand rule is the physical picture of that choice.
Point your right fingers along a , curl them toward b through the angle θ ; your thumb points along a × b . Swap the order and you flip your hand over — thumb points the other way, which is why b × a = − ( a × b ) .
You need this to know which of the two upright arrows the topic means. It reappears everywhere in physics — see Torque and Angular Momentum .
Real numbers and R3 space
Length bars sqrt of squares
Angle theta between arrows
sin theta gives sideways height
cos theta gives alignment
Dot product alignment number
Perpendicular test dot equals zero
Every box on the left must be solid before the "CROSS PRODUCT" box on the right makes sense.
Cover the right side and try to answer each before revealing.
What does R 3 mean, in one picture? Every triple ( x , y , z ) — a point in the corner-of-a-room 3D space.
What are the two things a vector carries? A length and a direction (it's an arrow).
How do you compute ∣ a ∣ and why the square root? a 1 2 + a 2 2 + a 3 2 ; it's Pythagoras — the diagonal of the box with edges
a 1 , a 2 , a 3 .
On the tail-to-tail triangle, which ratio is sin θ ? opposite / hypotenuse — the sideways part of the arrow.
Why does area use sin θ and not cos θ ? Height of the parallelogram is
∣ b ∣ sin θ (the perpendicular gap); base × height needs the sideways part.
What is sin θ when the two arrows are parallel? 0 — no height, no flap, zero area.
Write i ^ , j ^ , k ^ in coordinates. ( 1 , 0 , 0 ) , ( 0 , 1 , 0 ) , ( 0 , 0 , 1 ) — length-one arrows on the three axes.
How do you say "c is perpendicular to a " with a dot product? What is p r q s ? p s − q r (down-diagonal minus up-diagonal).
Which sign is different in the top-row expansion, and why does it matter? The middle j ^ term is minus ; forgetting it flips the whole second component.
Which hand, and what do fingers vs. thumb do? Right hand; fingers sweep
a → b , thumb points along
a × b .
Dot Product — the alignment number and the perpendicular test built here
Orthogonality — why "perpendicular" becomes an equation set to zero
Determinants — the sign machine of §6 in full
Area and Volume — where sin θ -height becomes area
Scalar Triple Product — the next rung: dot of a cross gives volume
Torque and Angular Momentum — the right-hand rule out in physics