MatrixLab
Matrix Determinant Calculator
Determinant of a 2×2 matrix in one step.
Determinant of a 2x2 matrix
For a matrix with rows [a b] and [c d], the determinant is ad minus bc.
| Matrix | Determinant | Invertible? |
|---|---|---|
| [[1, 2], [3, 4]] | -2 | Yes |
| [[2, 0], [0, 2]] | 4 | Yes |
| [[4, 7], [2, 6]] | 10 | Yes |
| [[1, 2], [2, 4]] | 0 | No - singular |
| [[3, 8], [4, 6]] | -14 | Yes |
The fourth row is singular: its second row is exactly twice the first, so the two rows are linearly dependent and the determinant is zero. A zero determinant means the matrix has no inverse and the transformation collapses the plane onto a line, destroying information irreversibly. Geometrically the determinant is the area scaling factor of the transformation, and a negative value like -2 means the orientation is flipped as well as scaled. A determinant of 1 preserves area exactly.
A single number that summarizes a matrix
For a 2×2 matrix, the determinant (ad − bc) tells you how much the matrix scales area when used as a transformation — a determinant of zero means the transformation squashes everything flat, losing a dimension.
Why it matters
A matrix only has an inverse if its determinant is non-zero — this single number is the fastest way to check whether a system of linear equations has a unique solution.
Frequently asked questions
The matrix [[3, 7], [1, 4]] — what's its determinant?
For a 2×2 matrix [[a, b], [c, d]], det = ad − bc. So det = (3)(4) − (7)(1) = 12 − 7 = 5. Since 5 ≠ 0, this matrix is invertible.
What does it mean when the determinant equals zero?
The matrix is 'singular' — it has no inverse and squashes 2D space down to a line (or a point). In terms of linear equations, det = 0 means the system either has no solution or infinitely many solutions, never a unique one.
How is the determinant related to the matrix inverse?
The inverse formula divides by the determinant: A⁻¹ = (1/det) × adjugate. When det = 0, you'd be dividing by zero, which is why singular matrices have no inverse. Use the matrix inverse calculator to find the full inverse.
Does the determinant work the same way for 3×3 matrices?
The concept is the same (scaling factor, invertibility test), but the formula is more complex — it involves a 3-term expansion using cofactors. For 2×2, it's just ad − bc. Each step up in matrix size increases computational complexity significantly.
Related Math calculators
Matrix Calculator (2×2)
Add and multiply two 2×2 matrices, with determinants.
OpenMatrix Inverse Calculator
Inverse of a 2×2 matrix, via the adjugate method.
OpenNumber Pattern Detector
Detect arithmetic or geometric patterns in a sequence.
OpenRelativistic Mass Calculator
Calculate relativistic mass at a fraction of the speed of light.
OpenYou might also like
Last updated: September 6, 2026