Concept Algebra ✓ Live

Determinant

The determinant is a single number computed from a square matrix that reveals essential information about the linear transformation it represents: whether the transformation can be undone (invertibility), and by what factor it scales area, volume, or higher-dimensional volume. A determinant of zero signals that the transformation collapses space into a lower dimension, losing information irreversibly.

One number that tells you if a transformation is reversible

Imagine a matrix as a machine that stretches, squishes, and rotates space. The determinant is a single number that tells you exactly how much that machine scales area (in 2D) or volume (in 3D). If the determinant is 2, everything doubles in area. If it's 0.5, everything shrinks to half its area. And if the determinant is exactly zero, the machine squashes space flat — turning a 2D square into a 1D line, or a 3D cube into a flat 2D sheet — permanently losing information in the process.

🔮 The key fact: A matrix can be "undone" (has an inverse) if and only if its determinant is not zero. A zero determinant means the transformation destroyed information that can never be recovered — there's no way to reverse a squashing.

For a simple 2×2 matrix

For the matrix [[a,b],[c,d]], the determinant is simply ad − bc. This tiny formula tells you the exact area-scaling factor of that transformation, including whether it also flips orientation (a negative determinant means the transformation includes a mirror-image flip).

Why it matters practically

  • Solving equations: a system of linear equations has a unique solution exactly when its coefficient matrix has a nonzero determinant
  • Computer graphics: checking whether a transformation preserves or flips orientation (useful for detecting "inside-out" 3D models)
  • Change of variables in calculus: determinants (via the "Jacobian") tell you how area/volume scales when changing coordinate systems in multivariable integrals

Computing determinants and their properties

The 2×2 and 3×3 formulas

det [[a,b],[c,d]] = ad − bc

For 3×3 matrices, the formula (via "cofactor expansion" along the first row) is:

det = a(ei−fh) − b(di−fg) + c(dh−eg)

for matrix [[a,b,c],[d,e,f],[g,h,i]]. Larger matrices use a recursive generalisation of this same cofactor expansion process.

Key properties

  • det(I) = 1 (the identity transformation preserves all area/volume exactly)
  • det(AB) = det(A)·det(B) — determinants multiply under composition of transformations
  • det(A⁻¹) = 1/det(A), provided A is invertible
  • Swapping any two rows (or columns) of a matrix flips the sign of the determinant
  • If any row (or column) is a multiple of another, the determinant is exactly zero

Determinants and eigenvalues

The determinant of a matrix equals the product of all its eigenvalues (counted with multiplicity). This is why a zero eigenvalue always forces a zero determinant — a zero eigenvalue means some direction in space gets collapsed entirely to a point, exactly the "squashing" behaviour a zero determinant signals.

Cramer's Rule

For a system of linear equations Ax = b with A invertible, each individual unknown xᵢ can be computed as a ratio of two determinants: xᵢ = det(Aᵢ)/det(A), where Aᵢ is A with its i-th column replaced by b. Though elegant, this method (Cramer, 1750) is computationally inefficient for large systems compared to Gaussian elimination, and is mainly of theoretical and pedagogical rather than practical computational interest today.

Historical development, the Leibniz formula, and generalisations

Historical origins — before matrices existed

Remarkably, determinants were studied and used well before the modern matrix concept was formalised. Seki Takakazu in Japan (1683) and Gottfried Leibniz in Europe (1693, in a letter to L'Hôpital) independently developed early determinant-like concepts for solving systems of linear equations, decades before Cayley's systematic matrix theory (1850s). The term "determinant" itself was coined by Gauss (1801) in a related but distinct context (studying quadratic forms), and later adopted in its modern sense by Cauchy (1812), who also proved the crucial multiplicative property det(AB)=det(A)det(B).

The Leibniz formula (general n×n case)

For a general n×n matrix, the determinant can be defined precisely via the Leibniz formula, summing over all n! possible permutations σ of {1,...,n}:

det(A) = Σ sgn(σ) · a₁,σ(1) · a₂,σ(2) · ... · aₙ,σ(n)

where sgn(σ) is +1 or −1 depending on whether the permutation σ is "even" or "odd" (determined by the minimum number of pairwise element swaps needed to produce it). This formula, while elegant and theoretically foundational, has n! terms and becomes computationally impractical for even moderately large matrices — which is why Gaussian-elimination-based methods are used in actual numerical computation.

The determinant as an alternating multilinear form

More abstractly, the determinant can be characterised as the unique function (up to scalar multiple) that is linear in each row separately, changes sign when any two rows are swapped ("alternating"), and assigns the value 1 to the identity matrix. This characterisation reveals the determinant's deep connection to the theory of exterior algebras and differential forms in advanced differential geometry, where determinants appear naturally as the coefficients relating volume elements under a change of coordinates.

The Jacobian determinant in multivariable calculus

When changing variables in a multivariable integral (for instance, converting from Cartesian to polar coordinates), the determinant of the matrix of partial derivatives — the Jacobian determinant — appears as the correct scaling factor needed to properly account for how the coordinate transformation distorts area or volume. This is the essential rigorous justification behind substitution techniques in multivariable calculus, generalising the simpler single-variable u-substitution rule.

📚 Sources

Tier 1 Strang, G. (2016). Introduction to Linear Algebra. 5th ed. Wellesley-Cambridge Press.
Tier 1 Axler, S. (2015). Linear Algebra Done Right. 3rd ed. Springer.
Tier 2 Kline, M. (1972). Mathematical Thought from Ancient to Modern Times. Oxford University Press. — Historical development of determinants.
Tier 3 Muir, T. (1906–1930). The Theory of Determinants in the Historical Order of Development. 4 vols. Macmillan.
Entry v1.0 · Added 2026-05-27 · Algebra · Concept JSON Markdown Status