RREF Calculator RREF Calculator

How to Find a Matrix Inverse Using the [A|I] RREF Method

A step-by-step practical guide to matrix inversion using Gauss-Jordan elimination on augmented arrays.

The Mathematics Behind the [A|I] Method

Calculating the inverse of a matrix by hand using determinants and adjugate matrices becomes extremely tedious for matrices larger than 2x2. The most efficient and standard manual method is the augmented matrix method, often written as [A | I].

This method works because of how elementary row operations correspond to multiplication by elementary matrices. If we apply a sequence of row operations to A that transforms it into the Identity matrix I, we are effectively multiplying A by its inverse A-1. By performing the exact same operations on I at the same time, we transform I into I × A-1 = A-1.

Step-by-Step Computational Walkthrough

Let's find the inverse of this 2x2 matrix A:

12
34

Step 1: Set up the augmented matrix [A | I]

Place the 2x2 Identity matrix next to A, separated by a vertical bar:

1210
3401

Step 2: Eliminate the entry in Row 2, Column 1

Perform the operation: R2 → R2 - 3R1. Apply this to both sides of the divider:

The augmented matrix becomes:

1210
0-2-31

Step 3: Scale Row 2 to make the pivot 1

Divide Row 2 by -2 (operation: R2 → -0.5 × R2):

1210
011.5-0.5

Step 4: Eliminate the entry in Row 1, Column 2

Perform the operation: R1 → R1 - 2R2:

The matrix becomes:

10-21
011.5-0.5

Since the left side has successfully reduced to the Identity matrix, the right side is our inverse matrix A-1:

-21
1.5-0.5

What if a Zero Row Appears?

If, during the row reduction process, a row of all zeros appears on the left-hand side (the A side), the matrix is singular and has no inverse. You must stop, as the matrix is non-invertible.

Go to RREF Calculator