Determinants

A scalar associated with a square matrix measuring the signed volume scaling factor of the linear transformation it encodes.

Diagram ยท Determinant as Area
Determinant as signed area scaling
vโ‚=(2.0,0.5)vโ‚‚=(0.5,1.5)Area = |det| = 2.75det A =2.00.50.51.5| |= 2.75
What det measures
The columns of A make a parallelogram. Its signed area is the determinant.
det(A) = 2.75
area scale = 2.75
Definition

The determinant of a square matrix AA, written detโก(A)\det(A) or โˆฃAโˆฃ|A|, is a scalar that captures essential information about the matrix.

For a 2ร—22\times2 matrix:

detโก(abcd)=adโˆ’bc\det\begin{pmatrix}a&b\\c&d\end{pmatrix} = ad - bc

Geometric meaning: โˆฃdetโก(A)โˆฃ|\det(A)| is the area of the parallelogram formed by the columns of AA (in 2D) or the volume of the parallelepiped (in 3D). The sign indicates whether the transformation preserves or reverses orientation.

  • detโก(A)=0\det(A) = 0: the matrix is singular (not invertible, columns are linearly dependent)
  • detโก(A)โ‰ 0\det(A) \neq 0: the matrix is invertible
2ร—2 determinant

A=(3124)A = \begin{pmatrix}3&1\\2&4\end{pmatrix}: detโก(A)=3โ‹…4โˆ’1โ‹…2=12โˆ’2=10\det(A) = 3\cdot4 - 1\cdot2 = 12 - 2 = 10.

The transformation AA scales areas by a factor of 10. Since detโก(A)>0\det(A) > 0, orientation is preserved.

Try it

Find detโก(2โˆ’14โˆ’2)\det\begin{pmatrix}2&-1\\4&-2\end{pmatrix}. What does this tell you about the matrix?

Solution

detโก=2(โˆ’2)โˆ’(โˆ’1)(4)=โˆ’4+4=0\det = 2(-2) - (-1)(4) = -4 + 4 = 0.

The matrix is singular โ€” not invertible. Indeed, row 2 = 2ร—2 \times row 1, so the rows are linearly dependent. The columns also span only a 1D subspace.

Related concepts