The inverse of a matrix A, denoted A−1, is the matrix such that AA−1=A−1A=I. Not every matrix has an inverse — only non-singular matrices (those with non-zero determinant) are invertible.
The 2×2 Inverse
For A=(acbd) with det(A)=ad−bc=0:
A−1=ad−bc1(d−c−ba)
The recipe: swap the diagonal, negate the off-diagonal, divide by the determinant.
Worked Example 1: Find the inverse of A=(3512).
det(A)=6−5=1.
A−1=11(2−5−13)=(2−5−13)
Check:AA−1=(3512)(2−5−13)=(1001) ✓
The 3×3 Inverse
For a 3×3 matrix, the inverse is found using:
A−1=det(A)1adj(A)
where adj(A) is the adjugate (or adjoint) matrix — the transpose of the matrix of cofactors.
Step-by-Step Method:
Find the determinantdet(A). If it is 0, stop — no inverse exists.
Find the matrix of minors: each entry is the determinant of the 2×2 submatrix obtained by deleting the corresponding row and column.
Apply the sign pattern (checkerboard of + and −) to get the matrix of cofactors.
Transpose the cofactor matrix to get adj(A).
Divide by det(A).
Worked Example 2: Find the inverse of A=102210011.