22 min read
The Inverse of a 2×2 Matrix
A matrix's inverse can be found directly from a formula, as long as its determinant is not zero.
Undoing a Matrix
Example 1 — finding an inverse
Find the inverse of A = .
- Find the determinant (from an earlier lesson): det(A) =
- Swap the main diagonal ( and ), negate the other diagonal ( and ):
- Divide every entry by the determinant ():
Answer:
Matrix lab
Matrix A
Determinant of A: 1.0000
A⁻¹ ≈ [[3,-1],[-5,2]]
Change a value and watch: Change the matrix and watch the inverse update — notice how it depends on dividing by the determinant.
Example 1 — a clean inverse
Find the inverse of A = .
- det(A) = () − () =
- Swap the main diagonal, negate the other:
- Divide every entry by (which changes nothing here)
Answer:
Practice
Find the element in row , column of the inverse of .
Your answer
More lessons in Matrices and Determinants · Next: Solving Simultaneous Equations With Matrices · Previous: The Determinant of a 3×3 Matrix
