Overview
Determinants have many useful properties that simplify calculations and provide insights into matrix behavior. Understanding these properties is essential for efficient computation.
Main Properties
1. Determinant of Transpose
det(AT)=det(A)
Row and column operations have the same effect on the determinant.
2. Multiplicative Property
det(AB)=det(A)×det(B)
3. Determinant of Inverse
det(A−1)=det(A)1
(Only when A is invertible)
4. Scalar Multiplication
For an n×n matrix A and scalar c:
det(cA)=cndet(A)
Effect of Row Operations
| Operation | Effect on det(A) |
|---|
| Swap two rows | det changes sign |
| Multiply row by c | det multiplied by c |
| Add multiple of one row to another | det unchanged |
Examples
If det(A)=5:
- Swap R1↔R2: det=−5
- Scale R1 by 3: det=15
- R2+4R1→R2: det=5 (unchanged)
Special Matrix Determinants
Triangular Matrices
For triangular matrices (upper or lower):
det(A)=a11×a22×⋯×ann
Product of diagonal entries.
Diagonal Matrices
det(D)=d1×d2×⋯×dn
Identity Matrix
det(I)=1
Zero Matrix
det(O)=0
Determinant and Invertibility
The following are equivalent:
- det(A)=0
- A is invertible
- A has full rank
- Ax=0 has only the trivial solution
- Columns of A are linearly independent
Properties List
| Property | Formula |
|---|
| Transpose | det(AT)=det(A) |
| Product | det(AB)=det(A)det(B) |
| Inverse | det(A−1)=1/det(A) |
| Scalar | det(cA)=cndet(A) |
| Power | det(An)=(det(A))n |
| Similar | det(P−1AP)=det(A) |
Zero Determinant Conditions
det(A)=0 if:
- A has a row of zeros
- A has a column of zeros
- Two rows are identical
- Two columns are identical
- A row is a multiple of another row
- A column is a multiple of another column
Computing Determinants Efficiently
Strategy 1: Row Reduce to Triangular Form
- Use row operations (tracking sign changes)
- Compute product of diagonal entries
Strategy 2: Expansion Along Sparse Row/Column
Choose the row or column with the most zeros for cofactor expansion.
Examples
Example 1: Product Rule
det(A)=2,det(B)=3
det(AB)=2×3=6
det(A2)=22=4
det(A−1)=21
Example 2: Row Operation
A=[2648]det(A)=2(8)−4(6)=−8
Swap rows:
B=[6284]det(B)=6(4)−8(2)=8=−det(A)✓
Example 3: Scalar Multiplication
A is 3×3 with det(A)=5
det(2A)=23×5=40