Definition for 2×2
det(acbd)=ad−bc
Definition for 3×3
Using cofactor expansion:
det(A)=a11M11−a12M12+a13M13
where Mij is the minor (determinant of 2×2 matrix after removing row i and column j).
Cofactor
The cofactor Cij is:
Cij=(−1)i+jMij
Pattern of signs: +−+−+−+−+
General Method
The determinant can be computed by expansion along any row or column:
det(A)=∑j=1naijCij(expansion along row i)
det(A)=∑i=1naijCij(expansion along column j)
Strategy: Expand along a row/column with many zeros.
Levi-Civita Symbol
For n=3, define ϵijk:
ϵijk=⎩⎨⎧+1−10(i,j,k) even permutation of (1,2,3)(i,j,k) odd permutation of (1,2,3)any index repeated
Determinant:
det(A)=∑i,j,k=13ϵijka1ia2ja3k
Properties
| Property | Formula |
|---|
| Transpose | det(AT)=det(A) |
| Product | det(AB)=det(A)det(B) |
| Scalar | det(λA)=λndet(A) for n×n |
| Inverse | det(A−1)=1/det(A) |
| Triangular | det=product of diagonal elements |
Row Operations
| Operation | Effect on determinant |
|---|
| Swap two rows | Multiply by −1 |
| Multiply row by λ | Multiply by λ |
| Add multiple of one row to another | No change |
Geometric Interpretation
∣det(A)∣ = volume of parallelepiped formed by columns of A.

2×2: Area of parallelogram.
3×3: Volume of parallelepiped.
det(A)=0 means columns are linearly dependent (volume collapses).
Example
det1472583610
Expand along first row:
=1det(58610)−2det(47610)+3det(4758)
=1(50−48)−2(40−42)+3(32−35)
=2+4−9=−3
Determinant Test for Linear Independence
n vectors in Rn are linearly independent ⇔ determinant of the matrix formed by them is non-zero.
Why Determinants Matter
- Determine if linear system has unique solution
- Compute matrix inverse
- Calculate eigenvalues (characteristic polynomial)
- Measure volume change under transformation
- Test for singular matrices