Inverse of a matrix (adjoint and row reduction)
At a Glance
- Frequency: 3 sub-parts across 3 of 13 years (2013, 2016, 2024)
- Priority tier: T3
- Marks (count): 10 (1), 15 (1), 6 (1)
- Average solve time: ~7 min
- Difficulty mix: easy 3
- Section: A | Dominant type: computation
Why This Chapter Matters
Matrix inversion by row operations is the most reliably “easy” computation in the linear algebra section — all three appearances are rated easy, and two ask you to use the result to solve a linear system (doubling the payoff for the same inverse computation). The Gauss–Jordan method () is a universal technique that never fails when is invertible. The 2024 variant (operator invertibility) extends naturally: write the matrix, read off the triangular determinant, back-substitute for . These are guaranteed full-marks questions once the technique is automatic.
Minimum Theory
Existence. An matrix is invertible iff . Equivalently, has full rank .
Gauss–Jordan method. Form the augmented matrix . Apply elementary row operations to reduce the left block to . The right block becomes :
Adjoint (classical adjugate). , where (cofactors, transposed). Efficient for and matrices; cumbersome for larger ones.
Solving via the inverse. Once is known, — a single matrix–vector multiplication. This is why computing and then solving the system is profitable when the same matrix appears in multiple right-hand-sides.
Triangular matrices. The determinant of a triangular matrix is the product of its diagonal entries. For a lower-triangular matrix, inversion by back-substitution (solving column by column) is faster than full Gauss–Jordan.
Invertibility of a linear operator. For , invertibility is equivalent to . can be found by solving for in terms of .
Question Archetypes
| Archetype | You are seeing this when… |
|---|---|
| inverse-by-row-ops | ”Find the inverse by elementary row operations; hence solve the linear system” |
| operator-invertibility | ”Is the linear operator invertible? Find .“ |
inverse-by-row-ops (2 question(s); 2013, 2016)
Recognition Cues
- “Find the inverse of the matrix using elementary row operations.”
- Often followed by “hence solve the system .”
- A integer matrix is given.
Solution Template
- Check invertibility. Compute ; if , the inverse does not exist.
- Form .
- Forward elimination. Clear below each pivot using row operations; normalise each pivot to 1.
- Back elimination. Clear above each pivot.
- Read off from the right block.
- Solve (if required): .
- Verify: substitute back into the original system.
Worked Example(s)
2013 Paper 1, 2013-P1-Q1a (10 marks)
Find the inverse of by elementary row operations. Hence solve , , .
Step 1. . ✓
Step 2. Augment:
Step 3 — Forward sweep. , : : , :
Step 4 — Back sweep. : : . Then :
Step 5 — Inverse.
Step 6 — Solve. :
Verify: ✓, ✓, ✓.
2016 Paper 1, 2016-P1-Q1a-i (6 marks)
Using elementary row operations, find the inverse of .
Step 1. . ✓
Step 2–3 — Forward sweep. , ; then , ; then (pivot ):
Step 4 — Back sweep. , :
Verify: : row 1 of times col 1 of : ✓.
Common Traps
- The third pivot in the 2013 matrix is , not . Divide by before clearing above; failing to normalise gives off-by-factor errors in .
- Carry exact fractions. For the 2013 matrix, denominator appears throughout. Converting to decimals invites rounding. The final answer can be checked by being an integer matrix.
- The third pivot in the 2016 matrix is , not . Divide by before back-clearing.
- Always verify (one row, one column is sufficient) and, if a system is also being solved, substitute back into the original equations.
- Confirm before starting — stating the determinant is non-zero is a required mark.
operator-invertibility (1 question(s); 2024)
Recognition Cues
- “Is the linear operator invertible? If yes, find .”
- is defined by an explicit formula, e.g. .
- The matrix of is typically triangular, making the determinant trivial to read off.
Solution Template
- Write the matrix. Read off from the formula: column is .
- Compute . For triangular matrices, this is the product of diagonal entries.
- Conclude invertibility () or non-invertibility ().
- Find by solving for in terms of (back-substitution for triangular ).
- Verify: compute .
Worked Example
2024 Paper 1, 2024-P1-Q2a (15 marks)
Consider defined by . Is invertible? If yes, find .
Step 1 — Matrix.
Step 2 — Determinant. Product of diagonal entries: .
Step 3 — Invertible. , so is invertible.
Step 4 — Compute . Solve :
- .
- .
- .
Verify: — direct substitution confirms. ✓
Common Traps
- For a lower-triangular matrix, read the determinant directly from the diagonal. Don’t expand cofactors along a row/column when the triangular structure is obvious.
- Back-substitution order matters. For lower-triangular , solve for from the first equation, then from the second (using ), then from the third (using and ). Going in reverse order (from first) is the standard for upper-triangular; here go top to bottom.
- The adjoint formula works but is slower for triangular matrices. Back-substitution is more efficient.
- State the invertibility conclusion before finding : “Since , is invertible.” This sentence is worth marks on its own.
Marks-Aware Writing
6-mark question (row-ops only, 2016): Three forward sweeps + one normalisation + two back-clears. Write each row operation label () on the left side of the arrow. One verification row is expected. No system to solve, so the matrix inverse is the complete answer.
10-mark question (inverse + system, 2013): Two parts — finding (roughly 7 marks) and solving the system (3 marks). For the system, the computation is — one matrix–vector product — plus a three-equation verification. The verification is required and earns marks.
15-mark question (operator invertibility, 2024): Three parts — matrix (2), determinant + invertibility conclusion (4), find by back-substitution (6), verify (3). The verify step is essential at 15 marks: compute explicitly.
Practice Set
- 2024-P1-Q3a (15 m) — — Hint: matrix inverse or row reduction at 15 marks.
- 2014-P1-Q2b-ii (10 m) — — Hint: inverse by row operations on a matrix.
- 2021-P1-Q1a (10 m) — — Hint: row-reduce ; verify .
- 2020-P1-Q4a (15 m) — — Hint: matrix inverse + linear system at 15 marks.
- 2019-P1-Q1d (10 m) — — Hint: inverse computation.
- 2018-P1-Q1b (10 m) — — Hint: inverse by row operations; check determinant first.