Overview
The determinant is a single number associated with every square matrix that summarizes key geometric and algebraic information about the linear transformation the matrix represents. It is commonly written as det(A) or |A| and is defined for matrices of any finite size. Intuitively, the absolute value of the determinant measures how the transformation scales volume, while the sign indicates whether orientation is preserved or reversed. A matrix with determinant zero is called singular and does not have an inverse.
Basic computation and examples
For a 2×2 matrix [[a, b], [c, d]] the determinant is computed by the simple formula ad − bc. This compact expression already shows how entries combine to give scaling and orientation information. Larger matrices have determinants that can be expressed by recursive expansion along rows or columns using minors and cofactors. For instance, expanding a 3×3 determinant yields a sum of products of three entries with signs determined by position. Computationally efficient methods use matrix factorizations rather than direct expansion.
Properties and practical computation
Key algebraic properties make determinants a powerful tool: det(AB) = det(A) det(B), det(A^T) = det(A), and det is multiplicative under similarity transformations so eigenvalues determine det via their product. Row operations affect the determinant predictably: swapping two rows changes the sign, multiplying a row by a scalar multiplies the determinant by that scalar, and adding a multiple of one row to another leaves the determinant unchanged. In practice, determinants are computed by reducing a matrix to upper triangular form (LU decomposition) and multiplying diagonal entries, adjusting for any row swaps.
Geometric interpretation and applications
Geometrically, the determinant of the matrix representing a linear map from R^n to R^n equals the signed factor by which volumes (or oriented n-dimensional content) are scaled. This interpretation explains its role in change‑of‑variable formulas for multiple integrals and in classical mechanics and differential geometry. Applications include solving linear systems via Cramer's rule, testing invertibility, computing characteristic polynomials, and in computer graphics for transformations and backface culling.
Computation details, complexity and distinctions
Direct expansion by cofactors requires factorial work in n and is impractical for large n. Modern numerical methods compute determinants in roughly cubic time by Gaussian elimination or LU factorization. The determinant should not be confused with the permanent: the permanent uses the same sum of products but without alternating signs and has very different computational and combinatorial properties. Another notable fact is that triangular matrices have determinants equal to the product of their diagonal entries, which simplifies many theoretical arguments.
History, further reading and notable facts
The concept of determinants arose in the 17th and 18th centuries in work on systems of linear equations and area/volume computations, with contributions from European and Asian mathematicians; its theory was consolidated in the 19th century. For formal definitions and proofs see a concise definition and basic properties, and for algorithms and numerical aspects consult sources on computation methods. Important quick facts: det(A) = 0 iff A is noninvertible; det(AB)=det(A)det(B); and the determinant equals the product of eigenvalues (counting algebraic multiplicity).
- Common notations: det(A), |A|
- Small example: det([[1,2],[3,4]]) = 1·4 − 2·3 = −2
- Use in integrals: Jacobian determinant appears in change of variables


