This lesson proves that the matrix A=[5−13−2] satisfies the equation A2−3A−7I=0, and then uses that relation to find A−1 without ever computing a determinant.
Squaring the matrix
We start by working out A2=A⋅A, multiplying each row of the first matrix into each column of the second.
A2=[5−13−2][5−13−2]
Entry by entry:
- Top left: 5⋅5+3⋅(−1)=25−3=22
- Top right: 5⋅3+3⋅(−2)=15−6=9
- Bottom left: (−1)⋅5+(−2)⋅(−1)=−5+2=−3
- Bottom right: (−1)⋅3+(−2)⋅(−2)=−3+4=1
A2=[22−391]
Proving A2−3A−7I=0
Now we form the full expression. Writing out each piece:
−3A=[−153−96],−7I=[−700−7]
Adding the three matrices together, corresponding entry by corresponding entry:
A2−3A−7I=[22−15−7−3+3+09−9+01+6−7]=[0000]
Every entry is zero, so the equation holds and the first part is proved.
Finding the inverse
We reuse the same relation. Moving the identity term across gives
A2−3A=7I.
Factor an A out of the left side:
A(A−3I)=7I.
Pre-multiplying both sides by A−1 and using A−1A=I:
A−3I=7A−1,soA−1=71(A−3I).
Substituting the values
A−3I=[5−3−13−2−3]=[2−13−5]
Therefore
A−1=71[2−13−5].
As a check, A⋅A−1=71[7007]=I, confirming the answer.
Key takeaways
- Squaring a 2×2 matrix is just the row-into-column rule applied to the matrix and itself.
- If a matrix satisfies A2−3A−7I=0, it must be invertible, and the inverse comes straight from rearranging that equation.
- Factoring A(A−3I)=7I and pre-multiplying by A−1 gives A−1=71(A−3I), no determinant needed.