Skip to content
Part IA Michaelmas, Lent, Easter Term

Determinants

Definition for 2×22 \times 2

det(abcd)=adbc\det\begin{pmatrix} a & b \\ c & d \end{pmatrix} = ad - bc


Definition for 3×33 \times 3

Using cofactor expansion:

det(A)=a11M11a12M12+a13M13\det(A) = a_{11}M_{11} - a_{12}M_{12} + a_{13}M_{13}

where MijM_{ij} is the minor (determinant of 2×22 \times 2 matrix after removing row ii and column jj).


Cofactor

The cofactor CijC_{ij} is:

Cij=(1)i+jMijC_{ij} = (-1)^{i+j} M_{ij}

Pattern of signs: (+++++)\begin{pmatrix} + & - & + \\ - & + & - \\ + & - & + \end{pmatrix}


General Method

The determinant can be computed by expansion along any row or column:

det(A)=j=1naijCij(expansion along row i)\det(A) = \sum_{j=1}^{n} a_{ij}C_{ij} \quad \text{(expansion along row } i)

det(A)=i=1naijCij(expansion along column j)\det(A) = \sum_{i=1}^{n} a_{ij}C_{ij} \quad \text{(expansion along column } j)

Strategy: Expand along a row/column with many zeros.


Levi-Civita Symbol

For n=3n = 3, define ϵijk\epsilon_{ijk}:

ϵijk={+1(i,j,k) even permutation of (1,2,3)1(i,j,k) odd permutation of (1,2,3)0any index repeated\epsilon_{ijk} = \begin{cases} +1 & (i,j,k) \text{ even permutation of } (1,2,3) \\ -1 & (i,j,k) \text{ odd permutation of } (1,2,3) \\ 0 & \text{any index repeated} \end{cases}

Determinant:

det(A)=i,j,k=13ϵijka1ia2ja3k\det(A) = \sum_{i,j,k=1}^{3} \epsilon_{ijk} a_{1i} a_{2j} a_{3k}


Properties

PropertyFormula
Transposedet(AT)=det(A)\det(A^T) = \det(A)
Productdet(AB)=det(A)det(B)\det(AB) = \det(A)\det(B)
Scalardet(λA)=λndet(A)\det(\lambda A) = \lambda^n\det(A) for n×nn \times n
Inversedet(A1)=1/det(A)\det(A^{-1}) = 1/\det(A)
Triangulardet=product of diagonal elements\det = \text{product of diagonal elements}

Row Operations

OperationEffect on determinant
Swap two rowsMultiply by 1-1
Multiply row by λ\lambdaMultiply by λ\lambda
Add multiple of one row to anotherNo change

Geometric Interpretation

det(A)|\det(A)| = volume of parallelepiped formed by columns of AA.

Parallelepiped formed by columns of a 3×3 matrix, with volume = |det(A)|

2×22 \times 2: Area of parallelogram.

3×33 \times 3: Volume of parallelepiped.

det(A)=0\det(A) = 0 means columns are linearly dependent (volume collapses).


Example

det(1234567810)\det\begin{pmatrix} 1 & 2 & 3 \\ 4 & 5 & 6 \\ 7 & 8 & 10 \end{pmatrix}

Expand along first row:

=1det(56810)2det(46710)+3det(4578)= 1\det\begin{pmatrix} 5 & 6 \\ 8 & 10 \end{pmatrix} - 2\det\begin{pmatrix} 4 & 6 \\ 7 & 10 \end{pmatrix} + 3\det\begin{pmatrix} 4 & 5 \\ 7 & 8 \end{pmatrix}

=1(5048)2(4042)+3(3235)= 1(50 - 48) - 2(40 - 42) + 3(32 - 35)

=2+49=3= 2 + 4 - 9 = -3


Determinant Test for Linear Independence

nn vectors in Rn\mathbb{R}^n are linearly independent \Leftrightarrow 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