ConceptComplete

Definition and Properties of Determinants

The determinant is a scalar-valued function of square matrices that encodes fundamental information about linear transformations: invertibility, volume scaling, and orientation preservation.

DefinitionDeterminant

The determinant is a function det:Mn(F)F\det: M_n(\mathbb{F}) \to \mathbb{F} that assigns to each n×nn \times n matrix AA a scalar det(A)\det(A) (also written A|A|), defined recursively:

For n=1n = 1: det([a])=a\det([a]) = a

For n2n \geq 2: Using cofactor expansion along row ii: det(A)=j=1n(1)i+jaijdet(Aij)\det(A) = \sum_{j=1}^n (-1)^{i+j} a_{ij} \det(A_{ij})

where AijA_{ij} is the (n1)×(n1)(n-1) \times (n-1) matrix obtained by deleting row ii and column jj from AA.

Alternatively, the determinant can be characterized axiomatically as the unique function satisfying: (1) multilinearity in rows, (2) alternating property (swapping rows changes sign), and (3) det(I)=1\det(I) = 1.

ExampleComputing Determinants

For 2×22 \times 2 matrices: det[abcd]=adbc\det\begin{bmatrix} a & b \\ c & d \end{bmatrix} = ad - bc

For 3×33 \times 3 matrices: det[abcdefghi]=a(eifh)b(difg)+c(dheg)\det\begin{bmatrix} a & b & c \\ d & e & f \\ g & h & i \end{bmatrix} = a(ei - fh) - b(di - fg) + c(dh - eg)

Example: det[213012140]=2(8)1(2)+3(1)=16+2+3=11\det\begin{bmatrix} 2 & 1 & 3 \\ 0 & -1 & 2 \\ 1 & 4 & 0 \end{bmatrix} = 2(-8) - 1(-2) + 3(1) = -16 + 2 + 3 = -11

DefinitionProperties of Determinants

For n×nn \times n matrices AA and BB:

  1. Multiplicativity: det(AB)=det(A)det(B)\det(AB) = \det(A)\det(B)
  2. Transpose: det(AT)=det(A)\det(A^T) = \det(A)
  3. Inverse: If AA is invertible, det(A1)=1det(A)\det(A^{-1}) = \frac{1}{\det(A)}
  4. Scalar multiplication: det(cA)=cndet(A)\det(cA) = c^n\det(A)
  5. Row operations:
    • Swapping rows multiplies determinant by 1-1
    • Multiplying a row by cc multiplies determinant by cc
    • Adding a multiple of one row to another leaves determinant unchanged
  6. Triangular matrices: det(A)\det(A) equals the product of diagonal entries
Remark

The determinant has a geometric interpretation: for a linear transformation T:RnRnT: \mathbb{R}^n \to \mathbb{R}^n with matrix AA, the value det(A)|\det(A)| equals the factor by which TT scales nn-dimensional volume. The sign of det(A)\det(A) indicates whether TT preserves or reverses orientation. Thus det(A)=0\det(A) = 0 means the transformation collapses volume, corresponding to non-invertibility.