Finding the Multiplicative Inverse
We can now determine whether two matrices are inverses, but how would we find the inverse of a given matrix?
There are several methods to accomplish this, each with its own advantages and applications. Understanding these techniques will provide you with a solid foundation for solving systems of linear equations and other matrix-related problems. Let’s dive into the different approaches to finding the inverse of a matrix!
Matrix Multiplication
Since we know that the product of a matrix and its inverse is the identity matrix, we can find the inverse of a matrix by setting up an equation usingĀ matrix multiplication.
[latex]A=\left[\begin{array}{rrr}\hfill 1& \hfill & \hfill -2\\ \hfill 2& \hfill & \hfill -3\end{array}\right][/latex]
Augmenting with the Identity
Another way to find the multiplicative inverse is by augmenting with the identity. When matrix [latex]A[/latex] is transformed into [latex]I[/latex], the augmented matrix [latex]I[/latex] transforms into [latex]{A}^{-1}[/latex].
[latex]A=\left[\begin{array}{rrr}\hfill 2& \hfill & \hfill 1\\ \hfill 5& \hfill & \hfill 3\end{array}\right][/latex]
augment [latex]A[/latex] with the identity
[latex]\left[\begin{array}{cc|cc}\hfill 2& \hfill 1& \hfill 1& \hfill 0\\ \hfill 5& \hfill 3& \hfill 0& \hfill 1\\ \end{array}\right][/latex]
Perform row operations with the goal of turning [latex]A[/latex] into the identity.
- Switch row 1 and row 2.
[latex]\left[\begin{array}{cc|cc}\hfill 5& \hfill 3& \hfill 0& \hfill 1\\ \hfill 2& \hfill 1& \hfill 1& \hfill 0\\ \end{array}\right][/latex]
- Multiply row 2 by [latex]-2[/latex] and add to row 1.
[latex]\left[\begin{array}{cc|cc}\hfill 1& \hfill 1& \hfill -2& \hfill 1\\ \hfill 2& \hfill 1& \hfill 1& \hfill 0\\ \end{array}\right][/latex]
- Multiply row 1 by [latex]-2[/latex] and add to row 2.
[latex]\left[\begin{array}{cc|cc}\hfill 1& \hfill 1& \hfill -2& \hfill 1\\ \hfill 0& \hfill -1& \hfill 5& \hfill -2\\ \end{array}\right][/latex]
- Add row 2 to row 1.
[latex]\left[\begin{array}{cc|cc}\hfill 1& \hfill 0& \hfill 3& \hfill -1\\ \hfill 0& \hfill -1& \hfill 5& \hfill -2\\ \end{array}\right][/latex]
- Multiply row 2 by [latex]-1[/latex].
[latex]\left[\begin{array}{cc|cc}\hfill 1& \hfill 0& \hfill 3& \hfill -1\\ \hfill 0& \hfill 1& \hfill -5& \hfill 2\\ \end{array}\right][/latex]
The matrix we have found is [latex]{A}^{-1}[/latex].
[latex]{A}^{-1}=\left[\begin{array}{rrr}\hfill 3& \hfill & \hfill -1\\ \hfill -5& \hfill & \hfill 2\end{array}\right][/latex]
[latex]A=\left[\begin{array}{rrr}\hfill 1& \hfill & \hfill -2\\ \hfill 2& \hfill & \hfill -3\end{array}\right][/latex]