The factor by which area scales
Take the unit square spanned by (1,0) and (0,1). After a transformation it becomes a parallelogram. The determinant is the factor by which its area changed. Remarkably, *every* region in the plane gets its area scaled by the same number, so one value describes the whole map.
det [[a,b],[c,d]] = a*d - b*c det [[2,0],[0,3]] = 6 area x6 det [[1,0],[0,1]] = 1 identity, area unchanged
What the sign means
A determinant can be negative. The size still tells you the area factor, but the sign tells you orientation: a positive determinant preserves the layout of space, while a negative one flips it over, like turning a page so left and right swap.
det [[1,0],[0,-1]] = -1 reflection across the x-axis: area is unchanged (size 1) but space is flipped (sign -)
Zero means collapse means no inverse
The most important case is det = 0. This means the transformation squashed space down into a lower dimension — a plane onto a line, or a line onto a point — so area becomes zero. When that happens, different inputs get crushed onto the same output, and there is no way to undo it.
- Compute det [[1,2],[2,4]] = 1*4 - 2*2 = 0 — the determinant vanishes.
- Look at the columns (1,2) and (2,4): the second is just twice the first, so they point the same way.
- The whole plane gets squashed onto a single line; area is zero, so no inverse matrix exists.