Determinants

Summary

The determinant is a scalar associated to a square matrix. It measures signed volume scaling of the linear map, vanishes exactly when the matrix is singular, and appears in the eigenvalue equation det(AλI)=0 .

Prerequisites

Matrices and Row Reduction. Hub: Linear Algebra.

Definition / Statement

For a square matrix ARn×n , the determinant det(A) (also written |A| ) is the unique alternating multilinear function of the columns with det(I)=1 . Computationally it is defined recursively by cofactor expansion, or via row reduction.

Objects and Dimensions

Object Meaning Dimensions
A square matrix n×n
det(A) determinant scalar
adj(A) adjugate (transpose of cofactor matrix) n×n

Notation

Symbol Meaning
det(A) , $ A
Cij (i,j) -cofactor
Aij minor deleting row i , column j

Conditions / Assumptions

Matrix / Vector Form

2×2

det(abcd)=adbc.

3×3 (cofactor expansion along the first row)

det(a11a12a13a21a22a23a31a32a33)=a11(a22a33a23a32)a12(a21a33a23a31)+a13(a21a32a22a31).

Product and transpose

det(AB)=det(A)det(B),det(AT)=det(A).

Inverse (when det(A)0 )

A1=1det(A)adj(A).

Row-reduction rules (sign and scale carefully):

Geometric Interpretation

Worked Example

det(1234)=1423=20,

so the matrix is invertible. For

B=(123045006),det(B)=146=24.

Common Mistakes

Connections

References

Determinant properties and computations follow MIT 18.06.[1]


  1. MIT OpenCourseWare, 18.06 Linear Algebra, https://ocw.mit.edu/courses/18-06-linear-algebra-spring-2010/ ↩︎