One Number That Judges a Matrix
The determinant compresses a square matrix into a single number answering: does this matrix destroy information?
Calculations:
- 2×2 case:
- 3×3 case: Rule of Sarrus (three southeast diagonals minus three northeast).
| Matrix | System | |
|---|---|---|
| Regular, exists | Exactly one solution | |
| Singular, rows dependent | None or infinitely many |
Key properties: Swap rows changes sign; ; . A row of zeros or equal rows gives .
Tip: Check before inverting. If zero, save the work; if tiny, be wary of amplified errors.
The Determinant Is an Area
Geometrically, is the area of the parallelogram spanned by the matrix's column vectors. In 3D, it scales volumes. The sign shows orientation (negative = flipped).
Why singularity destroys information: When , the transformation squashes the plane onto a line. Two inputs land on one output, so you cannot un-squash it ( fails).
Common pitfall: Forgetting absolute value. Area is ; the sign is orientation, not negative area.