Matrices · Topic 2 of 3
2. The 3×3 Inverse
Theory
For a matrix there is a formula for the inverse. For a there is no such shortcut worth memorising, so we use row reduction instead — the same elementary row operations used in Gaussian elimination.
The method rests on the definition . Write the matrix and the identity side by side in an augmented array, then apply row operations until the left block becomes the identity. Whatever those same operations do to the right block turns it into :
The three permitted operations are the familiar ones: interchange two rows, multiply a row by a non-zero constant, and add a multiple of one row to another. Every operation must be applied right across the array, both blocks together.
If at any stage a row of the left block becomes entirely zero, the matrix is singular — its determinant is zero and no inverse exists.
The Golden Rule: work down the leading diagonal one column at a time — first make the pivot entry , then clear every other entry in that column to , and only then move to the next column. Jumping around leads to undoing your own work.
⚠️ Common Examiner Traps
- Forgetting the right-hand block: every row operation must be carried out on both halves. Missing one is the single most common error.
- Clearing above as well as below: unlike Gaussian elimination, which stops at upper triangular form, here you must keep going until the left block is the full identity — zeros above the diagonal too.
- Not stating the operations: write each one down (). Marks are awarded for the operations, not just the answer.
- Skipping the check: multiply by your answer. If you do not get exactly, there is an arithmetic slip to find.
Worked examples
Example 1
Find the inverse of using elementary row operations.
Step 1: Write alongside the identity matrix:
Step 2: Swap rows 1 and 3 to put a convenient in the top-left pivot position ():
Step 3: Clear the rest of column 1, using and :
Step 4: Swap rows 2 and 3 so the next pivot is already (), then use :
Step 5: Make the last pivot with , then clear above it with :
Step 6: The left block is now the identity, so the right block is the inverse:
Check: the first row of times the first column of gives , and the same row times the second column gives — as required for .
Example 2
Show that has no inverse.
Step 1: Begin the row reduction. Using :
Step 2: The second row has become entirely zero. This happened because row 2 of was exactly twice row 1 — the rows are not independent.
Step 3: A row of zeros in the left block means it can never be reduced to the identity, so is singular and has no inverse.
Confirming with the determinant: expanding along the first row,
A zero determinant confirms the matrix is singular.