Matrix Determinant 2×2 / 3×3
Compute determinant of 2×2 and 3×3 matrices using Sarrus rule.
det = —
Determinant: det(A) for 2×2, 3×3, and n×n
The determinant is a scalar that summarises key properties of a square matrix. For a 2×2 matrix [[a, b], [c, d]], det = a·d - b·c. For 3×3 you can use the Sarrus rule (sum of three left-to-right diagonals minus three right-to-left diagonals) or cofactor expansion. For n×n, the standard methods are Laplace expansion along a row/column or Gaussian elimination (faster, O(n³)). Example: det([[2, 3], [1, 4]]) = 2·4 - 3·1 = 5. Key properties: det ≠ 0 means the matrix is invertible and the associated linear system Ax = b has a unique solution; det = 0 means the matrix is singular and the system has either no solution or infinitely many. Geometrically, |det| equals the volume of the parallelepiped formed by the row (or column) vectors — area in 2D, volume in 3D — and the sign indicates orientation (positive = preserves orientation, negative = reflection). Cramer's rule gives xᵢ = det(Aᵢ) / det(A) for solving linear systems.
Applications
Solving linear systems (Cramer's rule), change of variables in multiple integrals (the Jacobian determinant in 2D/3D), 2D/3D linear transformations (scaling, rotation, shear — the determinant tells you how areas/volumes scale), polygon area via the shoelace formula, computer graphics, and machine learning (PCA uses eigenvalues; the determinant of the covariance matrix measures total variance and appears in the multivariate Gaussian density).
FAQ
Why does det = 0 mean no inverse? Because the inverse formula is A⁻¹ = (1/det) · adj(A); dividing by 0 is impossible. Geometrically, det = 0 means the matrix collapses space to a lower dimension (a plane onto a line, for example).
Does det(AB) = det(A)·det(B)? Yes — the determinant is multiplicative for square matrices of the same size. It follows that det(A⁻¹) = 1/det(A).
Is there a determinant for non-square matrices? No. The determinant is only defined for square matrices. For rectangular ones, related concepts are rank, singular values, and the Gram determinant det(AᵀA).
Related Tools
Determinant of 4×4 Matrix
Compute determinant of 4×4 matrix by Laplace expansion.
Eigenvalues 2×2 Matrix
Compute eigenvalues of 2×2 matrix solving λ² − (a+d)λ + (ad−bc) = 0.
Matrix 3x3 Determinant
Computes the determinant of a 3x3 matrix from its 9 inline elements.
3x3 Matrix Determinant Calculator
Calculate the determinant of a 3x3 matrix using Sarrus' rule from its nine entries. See the worked-out calculation and the result instantly.
Matrix Multiplication
Multiply two matrices A and B (compatible dimensions) and show C = A·B.
Matrix 2x2 Determinant
Computes the determinant of a 2x2 matrix from its 4 inline elements a, b, c and d.
The results provided by this tool are for general informational and educational purposes only and do not constitute professional, financial, medical, legal, tax or accounting advice. Always confirm important decisions with a qualified professional and official sources.