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:
| 1 | 2 |
| 3 | 4 |
Step 1: Set up the augmented matrix [A | I]
Place the 2x2 Identity matrix next to A, separated by a vertical bar:
| 1 | 2 | 1 | 0 | |
| 3 | 4 | 0 | 1 |
Step 2: Eliminate the entry in Row 2, Column 1
Perform the operation: R2 → R2 - 3R1. Apply this to both sides of the divider:
- Left side Row 2:
[3 - 3(1), 4 - 3(2)] = [0, -2] - Right side Row 2:
[0 - 3(1), 1 - 3(0)] = [-3, 1]
The augmented matrix becomes:
| 1 | 2 | 1 | 0 | |
| 0 | -2 | -3 | 1 |
Step 3: Scale Row 2 to make the pivot 1
Divide Row 2 by -2 (operation: R2 → -0.5 × R2):
| 1 | 2 | 1 | 0 | |
| 0 | 1 | 1.5 | -0.5 |
Step 4: Eliminate the entry in Row 1, Column 2
Perform the operation: R1 → R1 - 2R2:
- Left side Row 1:
[1 - 2(0), 2 - 2(1)] = [1, 0] - Right side Row 1:
[1 - 2(1.5), 0 - 2(-0.5)] = [-2, 1]
The matrix becomes:
| 1 | 0 | -2 | 1 | |
| 0 | 1 | 1.5 | -0.5 |
Since the left side has successfully reduced to the Identity matrix, the right side is our inverse matrix A-1:
| -2 | 1 |
| 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.