The 3x3 Matrix Inverse Calculator finds A-1 = adj(A)/det(A) with complete step-by-step working. Enter any 3x3 matrix and see all nine cofactors computed individually, the adjugate matrix formed by transposing them, and every entry of the inverse. The verification panel confirms A x A-1 = I by showin...
Formula
A⁻¹ = adj(A) / det(A)
adj(A) = transpose of cofactor matrix C
QUICK EXAMPLES
DETERMINANT
1
A⁻¹ exists · multiply adj(A) by 1/1
STEPS
9 COFACTORS Cᵢⱼ = (−1)^(i+j) × det(Mᵢⱼ)
C[1,1] +|M11|
-24
C[1,2] -|M12|
20
C[1,3] +|M13|
-5
C[2,1] -|M21|
18
C[2,2] +|M22|
-15
C[2,3] -|M23|
4
C[3,1] +|M31|
5
C[3,2] -|M32|
-4
C[3,3] +|M33|
1
ADJUGATE adj(A) = Cᵀ
÷ 1
A⁻¹ (Inverse Matrix)
VERIFICATION A × A⁻¹ = I
Enter the nine values of your 3x3 matrix row by row. The inverse is computed automatically using the cofactor-adjugate method: A-1 = adj(A) / det(A).
The right panel shows all nine cofactors Cij = (-1)^(i+j) * Mij, where Mij is the determinant of the 2x2 matrix formed by deleting row i and column j. Green = positive, red = negative.
The adjugate adj(A) is the transpose of the cofactor matrix — rows and columns of the cofactors are swapped. The adjugate divided by det(A) gives the inverse.
The inverse matrix A-1 is displayed on a dark background. Entries may be shown as fractions (e.g. 1/2) for cleaner reading.
The verification panel confirms A x A-1 = I by computing the product explicitly. All nine entries of the product are shown — they should be 1 on the diagonal and 0 off it. If det = 0, a clear message explains why no inverse exists.
A = [[1,2,3],[0,1,4],[5,6,0]], det = 1. Cofactors: C[0,0] = +det([[1,4],[6,0]]) = +(0-24) = -24 C[0,1] = -det([[0,4],[5,0]]) = -(0-20) = +20 C[0,2] = +det([[0,1],[5,6]]) = +(0-5) = -5 C[1,0] = -det([[2,3],[6,0]]) = -(0-18) = +18 C[1,1] = +det([[1,3],[5,0]]) = +(0-15) = -15 C[1,2] = -det([[1,2],[5,6]]) = -(6-10) = +4 C[2,0] = +det([[2,3],[1,4]]) = +(8-3) = +5 C[2,1] = -det([[1,3],[0,4]]) = -(4-0) = -4 C[2,2] = +det([[1,2],[0,1]]) = +(1-0) = +1 adj(A) = transpose of cofactor matrix = [[-24,18,5],[20,-15,-4],[-5,4,1]]. A-1 = adj(A)/det = [[-24,18,5],[20,-15,-4],[-5,4,1]] / 1 = same matrix. Verify: A x A-1 = I ✓.
Last updated: April 29, 2026 · Formula verified by EagleCalculator team · Eagle-eyed accuracy for every calculation.