Determinant Calculator

Reviewed by CalcMulti Editorial Team·Last updated: ·Algebra Hub

The determinant is a single number associated with a square matrix that encodes important properties: whether the matrix is invertible, how it scales areas or volumes, and the sign of orientation. For a 2×2 matrix it equals ad − bc; for larger matrices it is computed by cofactor expansion.

Enter a 2×2 or 3×3 matrix and this calculator returns the determinant along with a full step-by-step breakdown using cofactor expansion along the first row.

Formula

2×2: det(A) = ad − bc | 3×3: Sarrus / cofactor expansion

det(A)
scalar value of the matrix determinant
a, b, c, d
elements of a 2×2 matrix [[a,b],[c,d]]
Mᵢⱼ
minor — determinant of the (n−1)×(n−1) submatrix deleting row i and column j
Cᵢⱼ
cofactor: Cᵢⱼ = (−1)^(i+j) · Mᵢⱼ
det(A) = Σ aᵢⱼ·Cᵢⱼ
cofactor expansion along any row or column

Find the Determinant

Choose matrix size, enter values, and compute.

Quick examples:

Determinant Properties

PropertyFormulaMeaning
Product ruledet(AB) = det(A)·det(B)Determinant of product equals product of determinants
Transpose ruledet(Aᵀ) = det(A)Transposing preserves the determinant
Scalar ruledet(cA) = cⁿ·det(A)n×n matrix scaled by c — determinant scales by cⁿ
Row swapSwap 2 rows → det changes signdet → −det when any two rows are swapped
Identical rowsdet = 0Two identical rows make the matrix singular
Identity matrixdet(I) = 1The identity matrix has determinant 1
Triangular matrixdet = product of diagonaldet = a₁₁·a₂₂·…·aₙₙ for triangular matrices

Common 2×2 Determinant Examples

Matrixabcddet = ad−bcInvertible?
[[1,0],[0,1]]10011Yes (Identity)
[[3,2],[1,4]]321410Yes
[[6,2],[3,1]]62310No (singular)
[[2,-1],[4,3]]2-14310Yes
[[5,0],[0,5]]500525Yes
[[0,1],[-1,0]]01-101Yes (rotation)

Disclaimer

This calculator is for educational purposes only and does not constitute professional advice. Results are based on standard mathematical formulas. Always verify critical calculations with a qualified professional before making important decisions.

Frequently Asked Questions