Determinant
Meaning
Describes the impact of the transformation represented by the matrix
Magnitude: How much it “scales” what a shape would enclose in the dimension
Sign: if the handedness of the coordinate system flips
- Right handed: if u can be rotated counterclockwise by θ ∈ ( 0 , π ) to coincide with v . Left handed otherwise
Notation
det ( a 11 a 21 a 12 a 22 ) = a 11 a 21 a 12 a 22
Finding
2x2
det ( a 11 a 21 a 12 a 22 ) = a 11 a 22 − a 21 a 12
3x3
det a 11 a 21 a 31 a 12 a 22 a 32 a 13 a 23 a 33 = a 11 det ( a 22 a 32 a 23 a 33 ) − a 12 det ( a 21 a 31 a 23 a 33 ) + a 13 det ( a 21 a 31 a 22 a 32 )
nxn
Let A ~ ij be A with row i and column j deleted
det ( A ) = ∑ j = 1 n ( − 1 ) i + j A ij det ( A ~ ij ) is the cofactor expansion along row i
( − 1 ) i + j det ( A ~ ij ) is the cofactor
Shortcuts
If A has a row of zeros, then det ( A ) = 0
If row i of B = e k for some k ∈ ( 1 , n ) , then det ( B ) = ( − 1 ) i + k det ( B ~ ik )
If A upper triangular, then det ( A ) = ∏ i = 1 n A i , i (product of diagonal elements)
Properties
nxn
det is a linear function of each row when the remaining rows are held fixed
Impact of Elementary Matrix Operations
Swapping rows: det ( B ) = − det ( A )
Multiplying a row by k = 0 : det ( B ) = k det ( A )
Adding a multiple: det ( B ) = det ( A )
det ( A B ) = det ( A ) det ( B )
A invertible ⟺ det ( A ) = 0
A invertible ⟹ det ( A − 1 ) = det ( A ) − 1
det ( A t ) = det ( A )
2x2
Area of parallelogram determined by u , v is A ( u v ) = det ( u v )
det ( A ) = 0 ⟺ A invertible
Moreover, A − 1 = d e t ( A ) 1 ( A 22 − A 21 − A 12 A 11 )