The 2x2 Matrix Inverse Calculator finds A-1 = (1/det) x [[d,-b],[-c,a]] with full step-by-step working. Enter any 2x2 matrix and see: the determinant calculation, the adjugate matrix, every inverse entry computed, and a live verification that A x A-1 equals the identity matrix. If det = 0, the calcu...
Formula
A⁻¹ = (1/det) × [[d, −b], [−c, a]]
where det = ad − bc
a
b
c
d
STEP-BY-STEP
Calculate the determinant
det = ad − bc = (1)(4) − (2)(3) = 4 − 6 = -2
Swap diagonal entries (a ↔ d)
New main diagonal: d=4 (top-left), a=1 (bottom-right)
Negate off-diagonal entries (b, c)
b → −b = -2 (top-right), c → −c = -3 (bottom-left)
Divide every entry by det = -2
a⁻¹ = 4/-2 = -2, b⁻¹ = -2/-2 = 1, c⁻¹ = -3/-2 = 3/2, d⁻¹ = 1/-2 = -1/2
QUICK EXAMPLES
INVERSE MATRIX A⁻¹
A
A⁻¹
det(A)
-2
1/det
-1/2
det(A⁻¹)
-1/2
A invertible?
Yes ✓
ADJUGATE MATRIX adj(A)
adj(A) = [[d, −b], [−c, a]] = [[4, -2], [-3, 1]]
A⁻¹ = (1/-2) × adj(A)
VERIFICATION: A × A⁻¹ = I
Enter the four values of your 2x2 matrix: a (top-left), b (top-right), c (bottom-left), d (bottom-right). The inverse is computed automatically as you type.
The step-by-step panel shows all four stages: compute det=ad-bc, swap diagonal (a and d exchange), negate off-diagonal (b and c change sign), then divide every entry by det.
The result matrix A-1 is displayed on a dark background. The adjugate matrix adj(A) = [[d,-b],[-c,a]] is shown separately so you can see the intermediate step.
The verification panel shows A x A-1 computed explicitly — every entry of the product is calculated and the result should equal the identity matrix [[1,0],[0,1]].
If det = 0, the matrix is singular and no inverse exists. The calculator explains why: the rows are linearly dependent, meaning the matrix maps 2D space onto a line and cannot be reversed.
A = [[1,2],[3,4]]. Step 1: det = 1*4 - 2*3 = 4-6 = -2 (not zero, so inverse exists). Step 2: Swap diagonal: a=1 and d=4 exchange -> [[4,2],[3,1]]. Step 3: Negate off-diagonal: b=2->-2, c=3->-3 -> adj(A) = [[4,-2],[-3,1]]. Step 4: Divide by det=-2: A-1 = [[-2,1],[1.5,-0.5]]. Verify: [[1,2],[3,4]] * [[-2,1],[1.5,-0.5]] = [[1,0],[0,1]] ✓.
Last updated: April 29, 2026 · Formula verified by EagleCalculator team · Eagle-eyed accuracy for every calculation.