Determinant

4 min read#linear-algebra

A single number that says how much a transformation scales area or volume — and whether it flips orientation.

Contents

Determinant

The determinant of a square Matrix is one number that summarizes the most basic effect of its Linear Transformation: how much it scales area (in 2D) or volume (in 3D). The unit square has area 1; after the transformation it becomes a parallelogram, and its new area is the determinant. A sign rides along too — a negative determinant means the transformation turned space inside-out, a mirror flip.

Area of the parallelogram

For a 2\times2 matrix the formula is short:

\det\begin{bmatrix} a & b \\ c & d \end{bmatrix} = ad - bc.
(1)

The two columns (a,c) and (b,d) are the edges of the image parallelogram, and ad - bc is its signed area. The sketch sends the unit square through a slowly changing matrix; watch the readout track the parallelogram's area exactly, and watch it pass through zero at the instant the shape collapses to a line.

The unit square (faint) mapped to a parallelogram (filled). Its signed area equals the determinant — which crosses zero, and goes negative, as the shape collapses and flips.

When the determinant is zero

Composition multiplies

Determinants behave beautifully under Matrix Multiplication: \det(AB) = \det(A)\det(B). Two transformations that each double area combine to quadruple it — scale factors simply multiply, which is exactly what areas should do when you apply one map after another.

See also