Determinants & Formulas
The determinant is a scalar value encoding a square matrix's invertibility, volume scaling, and orientation.
For a 2×2 matrix: det(acbd)=ad−bc
For 3×3, use cofactor expansion along the first row: det(A)=a11C11+a12C12+a13C13 where Cij=(−1)i+jMij and Mij is the minor.
Key properties:
| Operation | Rule |
|---|
| Product | det(AB)=det(A)det(B) |
| Transpose | det(AT)=det(A) |
| Scaling | det(αA)=αndet(A) |
| Invertibility | Invertible ⟺det(A)=0 |
Geometry & Pitfalls
Geometrically, absolute determinants measure space scaling:
| Space | Geometric Meaning |
|---|
| R2 | Parallelogram area |
| R3 | Parallelepiped volume |
A negative determinant means the transformation reverses orientation.
Physics link: The Jacobian determinant det(∂xi/∂qj) handles coordinate changes in integrals.
Common pitfall: det(A+B)=detA+detB. Determinants respect multiplication, but never addition.
Placeholder: Determinants