Determinants
Subtopic: Matricies
The determinant is a single number that captures essential information about a square matrix—whether it's invertible, how it scales volumes, and the product of its eigenvalues. This page covers computation methods for
Introduction
Given a square matrix, can you compress its essential character into a single number? The determinant does exactly that. It tells you whether the matrix is invertible (nonzero determinant) and how the associated transformation scales volumes.
A determinant of
2×2 Determinant
For a
Geometrically,
3×3 Determinant
For a
Or use the diagonal trick (Sarrus' rule): add products of main diagonals, subtract products of anti-diagonals.
General Definition
For an
where
This recursive definition reduces an
Worked Example
Compute the determinant of:
This is upper triangular. For triangular matrices, det = product of diagonal entries:
Verification: Expanding along row
Key Properties
Multiplicativity
Scaling effects multiply. If
Transpose
Rows and columns contribute equally to the determinant.
Inverse
If
Row Operations
• Swapping rows: multiplies determinant by
• Multiplying
• Adding a multiple of one row to another: determinant unchanged
Triangular Matrices
For triangular matrices (upper or lower), the determinant equals the product of diagonal entries.
When is det(A) = 0?
A matrix has zero determinant exactly when:
•
• The columns are linearly dependent
• The rows are linearly dependent
• At least one eigenvalue is zero
• The transformation collapses space (maps to lower dimension)
Connection to Eigenvalues
The determinant equals the product of eigenvalues:
Combined with trace = sum of eigenvalues, these provide quick checks on eigenvalue computations.
Geometric Interpretation
The absolute value
In
The sign indicates orientation:
Applications
In solving systems: Cramer's rule uses determinants (though it's computationally inefficient).
In calculus: The Jacobian determinant gives the volume scaling factor for change of variables in multiple integrals.
In eigenvalue problems:
In differential equations: The Wronskian (a determinant) tests linear independence of solutions.
Summary
The determinant is a scalar that encodes whether a matrix is invertible and how it scales volumes. For a