2x2 Matrix Inverse Calculator — Step-by-Step with Verification

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...

ENTER MATRIX A

Formula

A⁻¹ = (1/det) × [[d, −b], [−c, a]]

where det = ad − bc

[

a

b

c

d

]

STEP-BY-STEP

1

Calculate the determinant

det = ad − bc = (1)(4) − (2)(3) = 4 − 6 = -2

2

Swap diagonal entries (a ↔ d)

New main diagonal: d=4 (top-left), a=1 (bottom-right)

3

Negate off-diagonal entries (b, c)

b → −b = -2 (top-right), c → −c = -3 (bottom-left)

4

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

|
1
2
3
4
|
⁻¹ =

A⁻¹

|
-2
1
3/2
-1/2
|

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

[
1
2
3
4
]
×
[
-2
1
3/2
-1/2
]
=
[
1
0
0
1
]
Created with❤️byeaglecalculator.com

HOW TO USE

  1. 1

    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.

  2. 2

    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.

  3. 3

    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.

  4. 4

    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]].

  5. 5

    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.

WORKED EXAMPLE

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]] ✓.

FREQUENTLY ASKED QUESTIONS

RELATED CALCULATORS

MORE MATRICES CALCULATORS

Was this calculator helpful?

Last updated: April 29, 2026 · Formula verified by EagleCalculator team · Eagle-eyed accuracy for every calculation.