Question
Find the inverse of the matrix A=(3512) and verify that A⋅A−1=I.
Solution — Step by Step
For a 2×2 matrix (acbd), the determinant is ad−bc.
det(A)=(3)(2)−(1)(5)=6−5=1
Since det(A)=1=0, the inverse exists.
For a 2×2 matrix, the adjugate is obtained by swapping the diagonal elements and changing the signs of the off-diagonal elements:
adj(A)=(2−5−13)
(swap 3 and 2, negate 1 and 5)
A−1=det(A)1⋅adj(A)=11(2−5−13)=(2−5−13)
A⋅A−1=(3512)(2−5−13)
Row 1 × Col 1: (3)(2)+(1)(−5)=6−5=1
Row 1 × Col 2: (3)(−1)+(1)(3)=−3+3=0
Row 2 × Col 1: (5)(2)+(2)(−5)=10−10=0
Row 2 × Col 2: (5)(−1)+(2)(3)=−5+6=1
A⋅A−1=(1001)=I✓
Why This Works
The inverse of a matrix “undoes” the transformation it represents. Just as 5×51=1 for numbers, A⋅A−1=I for matrices.
The formula A−1=det(A)1⋅adj(A) comes from the property that A⋅adj(A)=det(A)⋅I. Dividing both sides by det(A) gives the inverse.
The determinant being 1 in this case made the computation especially clean — no fractions to deal with.
Alternative Method — Elementary Row Operations
We can find A−1 by augmenting A with the identity matrix and row-reducing:
[35121001]
R2→R2−35R1:
[301311−3501]
R2→3R2: [30111−503]
R1→R1−R2: [30016−5−33]
R1→31R1: [10012−5−13]
The right half gives A−1=(2−5−13). Same answer confirmed.
Common Mistake
Students often write the adjugate incorrectly for 2×2 matrices. The correct rule: swap the main diagonal elements (top-left and bottom-right), then negate the anti-diagonal elements (top-right and bottom-left).
For (acbd): adjugate is (d−c−ba). A common error is negating the wrong pair — swapping instead of negating the off-diagonal.