Determinants
- Compute the determinant of a matrix via row reduction and state its relationship to invertibility
- Interpret the determinant as a signed volume scaling factor and explain what det = 0 means geometrically
- Apply the permutation expansion and cofactor (Laplace) expansion to compute determinants of small matrices
- Use key determinant properties such as det(AB) = det(A)det(B) and det(A^T) = det(A) to simplify multi-step calculations
What the Determinant Measures
The determinant of a square matrix , written or , answers a geometric question: by what factor does the transformation scale volumes?
More precisely: if is any region in with volume , then the image has volume . The sign of captures orientation: positive means orientation-preserving, negative means orientation-reversing (like a reflection).
When , the transformation squashes space into a lower dimension — the output has zero volume, and is singular.
Properties
The determinant is characterized by three properties:
- Multilinearity: is linear in each row separately (with other rows held fixed)
- Alternating: swapping two rows negates — equivalently, if two rows are identical
- Normalization:
These three properties uniquely determine the determinant. All other properties follow:
- — rows and columns interchangeable
- — determinant of a product is the product of determinants
- — follows from the product rule
- for matrix
- Adding a multiple of one row to another leaves unchanged — scaling by the pivot in Gauss's method multiplies by that scalar
Computing via Row Reduction
Gauss's method gives the fastest route to the determinant for large matrices. Tracking the effect of each row operation:
| Operation | Effect on det |
|---|---|
| Swap two rows | Negate |
| Scale row by | Multiply by |
| Add multiple of one row to another | No change |
Reduce to echelon form . The determinant of is the product of its diagonal entries (the pivots). Then:
where = number of row swaps and = scaling factors applied during reduction.
In practice: reduce to echelon form, track signs from swaps, multiply pivots.
The Permutation Expansion
For an matrix, the determinant can be written as a sum over all permutations of :
where if is an even permutation (achievable by an even number of transpositions) and if odd.
For : two permutations, with sign and with sign , giving .
For : six permutations (Sarrus' rule). For larger , the permutation expansion is impractical ( grows fast) but theoretically important — it proves properties of the determinant.
Laplace's Expansion (Cofactor Expansion)
For computational purposes, Laplace expansion along row :
where is the minor — the determinant of the matrix obtained by deleting row and column . The factor is the cofactor .
Choosing a row or column with many zeros minimizes computation. Expansion along any row or column gives the same result.
Cramer's Rule
For an invertible system , each component of the solution is a ratio of determinants:
where is with column replaced by .
Cramer's rule is elegant but computationally expensive ( naively, or with efficient determinant computation). For , Gaussian elimination is always faster. Cramer's rule is mainly useful for theoretical arguments and for and closed-form solutions.