← Back to all lessons
Class 12Algebra5:14Published 14 Jul 2024

Prove a Matrix Equation and Hence Find the Inverse

Verify that a 2 by 2 matrix A satisfies the equation A squared minus 3A minus 7I equals zero, then use that relation to find the inverse of A without computing a determinant.

This lesson works through a classic exam problem on the matrix A with entries 5, 3, minus 1, minus 2. First we square the matrix and combine it with multiples of A and the identity to confirm the equation A squared minus 3A minus 7I equals the zero matrix. We then rearrange that same relation, multiply through by the inverse, and read off A inverse directly as one seventh of A minus 3I.

What you'll learn

  • How to multiply a 2 by 2 matrix by itself entry by entry
  • How to verify a matrix satisfies a given polynomial equation
  • How to rearrange that equation and use it to find the inverse without a determinant

Lesson chapters

0:00The problem and squaring the matrix
1:25Combining the terms to prove the equation
2:41Proof complete: result is the zero matrix
3:03Rearranging to isolate the inverse
4:09Substituting values to find A inverse

Lesson notes

This lesson proves that the matrix A=[5312]A = \begin{bmatrix} 5 & 3 \\ -1 & -2 \end{bmatrix} satisfies the equation A23A7I=0A^2 - 3A - 7I = 0, and then uses that relation to find A1A^{-1} without ever computing a determinant.

Squaring the matrix

We start by working out A2=AAA^2 = A \cdot A, multiplying each row of the first matrix into each column of the second.

A2=[5312][5312]A^2 = \begin{bmatrix} 5 & 3 \\ -1 & -2 \end{bmatrix}\begin{bmatrix} 5 & 3 \\ -1 & -2 \end{bmatrix}

Entry by entry:

  • Top left: 55+3(1)=253=225\cdot 5 + 3\cdot(-1) = 25 - 3 = 22
  • Top right: 53+3(2)=156=95\cdot 3 + 3\cdot(-2) = 15 - 6 = 9
  • Bottom left: (1)5+(2)(1)=5+2=3(-1)\cdot 5 + (-2)\cdot(-1) = -5 + 2 = -3
  • Bottom right: (1)3+(2)(2)=3+4=1(-1)\cdot 3 + (-2)\cdot(-2) = -3 + 4 = 1

A2=[22931]A^2 = \begin{bmatrix} 22 & 9 \\ -3 & 1 \end{bmatrix}

Proving A23A7I=0A^2 - 3A - 7I = 0

Now we form the full expression. Writing out each piece:

3A=[15936],7I=[7007]-3A = \begin{bmatrix} -15 & -9 \\ 3 & 6 \end{bmatrix}, \qquad -7I = \begin{bmatrix} -7 & 0 \\ 0 & -7 \end{bmatrix}

Adding the three matrices together, corresponding entry by corresponding entry:

A23A7I=[2215799+03+3+01+67]=[0000]A^2 - 3A - 7I = \begin{bmatrix} 22 - 15 - 7 & 9 - 9 + 0 \\ -3 + 3 + 0 & 1 + 6 - 7 \end{bmatrix} = \begin{bmatrix} 0 & 0 \\ 0 & 0 \end{bmatrix}

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

A23A=7I.A^2 - 3A = 7I.

Factor an AA out of the left side:

A(A3I)=7I.A(A - 3I) = 7I.

Pre-multiplying both sides by A1A^{-1} and using A1A=IA^{-1}A = I:

A3I=7A1,soA1=17(A3I).A - 3I = 7A^{-1}, \qquad \text{so} \qquad A^{-1} = \tfrac{1}{7}(A - 3I).

Substituting the values

A3I=[533123]=[2315]A - 3I = \begin{bmatrix} 5 - 3 & 3 \\ -1 & -2 - 3 \end{bmatrix} = \begin{bmatrix} 2 & 3 \\ -1 & -5 \end{bmatrix}

Therefore

A1=17[2315].A^{-1} = \tfrac{1}{7}\begin{bmatrix} 2 & 3 \\ -1 & -5 \end{bmatrix}.

As a check, AA1=17[7007]=IA \cdot A^{-1} = \tfrac{1}{7}\begin{bmatrix} 7 & 0 \\ 0 & 7 \end{bmatrix} = I, confirming the answer.

Key takeaways

  • Squaring a 2×22\times 2 matrix is just the row-into-column rule applied to the matrix and itself.
  • If a matrix satisfies A23A7I=0A^2 - 3A - 7I = 0, it must be invertible, and the inverse comes straight from rearranging that equation.
  • Factoring A(A3I)=7IA(A - 3I) = 7I and pre-multiplying by A1A^{-1} gives A1=17(A3I)A^{-1} = \tfrac{1}{7}(A - 3I), no determinant needed.