Determinant
BasisPrerequisites
Every linear map stretches, compresses, rotates, or reflects the space it acts on. The determinant captures the net effect in a single number: it is the signed factor by which the map scales volumes. If the determinant is 2, the map doubles every volume; if it is negative, the map also flips orientation; if it is 0, the map collapses space entirely — and the map becomes uninvertible.
The 2×2 case
For a 2×2 matrix
the determinant is
\det(A) = ad - bc. \tag{1}
The geometric meaning is immediate: the two columns of are vectors and in . The magnitude equals the area of the parallelogram spanned by and .
The sign carries orientation information. If the columns go counterclockwise (standard orientation), ; if they go clockwise (reversed orientation), ; and when the columns are linearly dependent — the parallelogram collapses to a line segment with zero area.
The 3×3 case
Write
The determinant is
Each parenthesized expression is itself a 2×2 determinant — the submatrix you get by deleting row 1 and the column of the corresponding entry. This “expansion along the first row” is the starting point for the general definition.
The general definition
For an matrix over a field , the determinant is defined recursively by cofactor expansion along row 1:
\det(A) \coloneqq \sum_{j=1}^{n} (-1)^{1+j}\, a_{1j}\, \det(A_{1j}), \tag{3}
where denotes the minor — the submatrix obtained by deleting row and column from . The scalar
is called the cofactor of . The base case is for a matrix.
One of the key theorems, proved in Properties of the Determinant, is that expanding along any row or column gives the same value. This is far from obvious from the definition above but makes computing determinants much more flexible in practice.
Geometric interpretation
In , is the -dimensional volume of the parallelepiped spanned by the column vectors of . In this is area; in it is volume in the usual sense.
The sign indicates orientation: means the columns form a positively oriented basis (same handedness as the standard basis); means orientation is reversed.
Because is the volume-scaling factor of the linear map , you have
for any bounded region . This identity is the foundation of the change-of-variables formula in multivariable integration.
Determinant and invertibility
The most important single fact about determinants:
A \text{ is invertible} \iff \det(A) \ne 0. \tag{4}
If , the map collapses at least one dimension — volume becomes zero, so the map cannot be reversed. If , the map scales volumes by a nonzero factor and is therefore bijective, hence invertible. An explicit formula for in terms of determinants is developed in Properties of the Determinant.
Summary
- The determinant is a scalar assigned to every square matrix, defined recursively by cofactor expansion: .
- For : . For : .
- Geometrically, is the -dimensional volume of the parallelepiped spanned by the columns of ; the sign records orientation.
- The linear map scales all volumes by .
- is invertible if and only if .
- Practical computation and further properties — expansion along any row/column, row-operation rules, multiplicativity, the inverse formula, and Cramer’s rule — are covered in Properties of the Determinant.