Introduction: How Much Does Space Stretch?
The determinant of a matrix tells you how much the transformation scales areas (in 2D) or volumes (in 3D). If the determinant is 2, areas double; if it's 0, everything collapses to a lower dimension; if it's negative, orientation flips.
Computing Determinants
2×2 Matrix:
\[\det\begin{pmatrix} a & b \\ c & d \end{pmatrix} = ad - bc\]3×3 Matrix: (Expansion along first row)
\[\det\begin{pmatrix} a & b & c \\ d & e & f \\ g & h & i \end{pmatrix} = a(ei - fh) - b(di - fg) + c(dh - eg)\]Key Properties
- \(\det(AB) = \det(A) \cdot \det(B)\)
- \(\det(A^T) = \det(A)\)
- \(\det(A^{-1}) = \frac{1}{\det(A)}\)
- \(\det(cA) = c^n \det(A)\) for \(n \times n\) matrix
- If \(\det(A) = 0\), then \(A\) is singular (not invertible)
Worked Examples
Example 1: 2×2 Determinant
\[\det\begin{pmatrix} 3 & 1 \\ 2 & 4 \end{pmatrix} = 3 \cdot 4 - 1 \cdot 2 = 12 - 2 = 10\]This transformation scales areas by a factor of 10.
Example 2: Rotation Preserves Area
\[\det\begin{pmatrix} \cos\theta & -\sin\theta \\ \sin\theta & \cos\theta \end{pmatrix} = \cos^2\theta + \sin^2\theta = 1\]Rotations don't change areas.
Example 3: Singular Matrix
\[\det\begin{pmatrix} 1 & 2 \\ 2 & 4 \end{pmatrix} = 1 \cdot 4 - 2 \cdot 2 = 0\]This matrix collapses 2D space onto a line (the columns are linearly dependent).
The Quantum Connection
In quantum mechanics, unitary operators (which describe time evolution) have \(|\det(U)| = 1\)—they preserve the "volume" of probability. The determinant also appears in the characteristic equation for finding eigenvalues: \(\det(A - \lambda I) = 0\), which determines the allowed measurement outcomes.