The determinant is a scalar value that encodes key information about a square matrix: invertibility, volume scaling, and orientation.
Formulas
For a 2×2 matrix:
det(acbd)=ad−bc
For a 3×3 matrix, expand along the first row (cofactor expansion):
det(A)=a11C11+a12C12+a13C13
where Cij=(−1)i+jMij and Mij is the minor.
Key properties
det(AB)=det(A)⋅det(B)
det(AT)=det(A)
det(αA)=αndet(A) for an n×n matrix
A matrix is invertible⟺det(A)=0
Geometric meaning
In R2: ∣det(A)∣ = area of the parallelogram spanned by the column vectors.
In R3: ∣det(A)∣ = volume of the parallelepiped.
A negative determinant means the transformation reverses orientation.
Physics link: The Jacobian determinant det(∂xi/∂qj) appears whenever you change coordinates in integrals — from Cartesian to polar, spherical, or any generalised system.
Common pitfall:det(A+B)=detA+detB. The determinant respects multiplication (detAB=detAdetB) but not addition — it is an area scale factor, and areas do not add across different maps.
Placeholder: Determinants
Practise this lesson
The explanation above is free to read. The graded practice for this lesson lives in the Tryals app.