3x3 Determinant Calculator NZ
This calculator finds the determinant of a 3 by 3 matrix from its nine entries, and tells you whether the matrix is invertible. The determinant is one of the most important numbers associated with a square matrix: it captures, in a single value, key information about the linear transformation the matrix represents. Geometrically, the determinant of a 3 by 3 matrix is the signed volume of the parallelepiped formed by its three column vectors, so a determinant of zero means those vectors are flattened into a plane or line and the matrix collapses space. Practically, the determinant tells you whether a matrix can be inverted and whether a system of three linear equations has a unique solution: a non-zero determinant means yes, while a zero determinant means the matrix is singular and the system has either no solution or infinitely many. This tool computes it cleanly. You enter the nine numbers of the matrix in three rows, and the calculator returns the determinant using cofactor expansion along the top row, states whether the matrix is invertible, and shows the trace, the sum of the diagonal entries. The results update as you type, so you can see how changing an entry affects the determinant and watch it pass through zero as the matrix becomes singular. Use it to check linear algebra homework, to test whether a system has a unique solution, or to find the determinant as a step toward an inverse or Cramer's rule. The 3 by 3 case is where determinants first become genuinely fiddly to do by hand, with six product terms to track, which is exactly where a calculator helps. The result is exact for your inputs.
For the matrix [a b c; d e f; g h i], det = a(ei - fh) - b(di - fg) + c(dh - eg). A non-zero determinant means the matrix is invertible.
How it works
The determinant is found by cofactor expansion along the top row: a times the determinant of the lower-right 2 by 2 block, minus b times the next 2 by 2 block, plus c times the last. In symbols, det equals a(ei minus fh) minus b(di minus fg) plus c(dh minus eg). A non-zero result means the matrix can be inverted.
Worked example
For the matrix with rows (2, 1, 3), (1, 0, 2) and (4, 1, 8), the determinant is 2 times (0 times 8 minus 2 times 1), minus 1 times (1 times 8 minus 2 times 4), plus 3 times (1 times 1 minus 0 times 4). That is 2 times -2, minus 0, plus 3, which equals -1. Being non-zero, the matrix is invertible.
Related calculators
- Matrix Calculator (2x2): 2x2 operations.
- Cross Product: vector product.
- System of Equations: solve systems.
- Vector Calculator: vector operations.