Determinants

Determinants measure how space stretches or compresses. See area and volume scaling come alive.

Determinants Measure Scaling

The determinant of a matrix is a single number that captures something profound: how much the transformation scales area (in 2D) or volume (in 3D).

But it tells us even more. The sign reveals whether orientation is preserved or flipped. And when the determinant is zero? That's when space collapses—and inverses cease to exist.

The Geometric Meaning

For a 2×2 matrix: det(A) = ad - bc

  • |det| = factor by which area scales
  • det > 0: orientation preserved
  • det < 0: orientation flipped
  • det = 0: space collapses (no inverse)

Demo 1: Area Scaling

The unit square has area 1. After transformation, it becomes a parallelogram whose area equals the absolute value of the determinant.

Matrix
[2.0, 0.5]
[0.3, 1.5]
=
Determinant
2.85

The determinant equals the factor by which area scales. The unit square (area = 1) becomes a parallelogram with area = |det|.

Demo 2: Orientation Flip

A reflection flips orientation—counterclockwise becomes clockwise. This is indicated by a negative determinant.

Counterclockwise
det > 0
Clockwise
det < 0
Determinant = 1.00

The sign of the determinant tells you about orientation. Positive = preserved (counterclockwise stays counterclockwise). Negative = flipped (like looking in a mirror).

Demo 3: Volume Scaling in 3D

In 3D, the determinant of a 3×3 matrix tells us how volume scales. The unit cube becomes a parallelepiped.

Original Volume
1
×
Determinant
1.44
=
New Volume
1.44

In 3D, the determinant equals the factor by which volume scales. The unit cube (volume = 1) becomes a parallelepiped with volume = |det|.

Demo 4: Dimensional Collapse

When det = 0, the transformation collapses space to a lower dimension. A 2D region might become a line or even a single point.

Determinant = 1.000

When the determinant is zero, space collapses. A 2D region can become a line (rank 1) or even a single point (rank 0). This loss of dimension is why no inverse exists.

Key Takeaways

  • |det| = scaling factor for area (2D) or volume (3D)
  • det > 0: orientation preserved
  • det < 0: orientation flipped (mirror image)
  • det = 0: collapse to lower dimension, no inverse
  • det(AB) = det(A) · det(B): scaling factors multiply

Next: Eigenvectors—the special directions that transformations only stretch, never rotate.