Quote:
Originally Posted by Apprentice123 How to calculate the inverse matrix by means of elementary matrices?
I know that the method of gauss-jordan is easier |
They are essentially the same method! If you can figure out the elementary matrices necessary to reduce matrix A to the identity matrix, then multiplying the identity matrix those elementary matrices, in order, gives

. How do you find those elementary matrices? By doing the row operations necessary to reduce A to the identity matrix-half of the Gauss-Jordan method. And since multiplying the identity matrix by the elementary matrices is the same as applying those row operations to the identity matrix- the other half of Gauss-Jordan.
For example, to find the inverse of [math]\left[\begin{array}{cc}1 & 2 \\ 2 & 3\end{array}\right][/itex] by Gause-Jordan
1) Set up the matrix and the identity matrix next to each other:
2) Subtract twice the first row from the second:
3) Multiply the second row by -1:
4) Subtract twice the second row from the first row:
The inverse matrix is
Now look at the individual row operations above:
2) Subtract twice the first row from the second. Every row operation corresponds to the elementary matrix you get by performing that row operation on the identity matrix. Subtracting twice the first row of the identity matrix from the second gives
![\left[\begin{array}{cc}1 & 0 \\ -2 & 1\end{array}\right] \left[\begin{array}{cc}1 & 0 \\ -2 & 1\end{array}\right]](http://www.mathhelpforum.com/math-help/latex2/img/5ff2bc40f079dd0a66de82cbe3e2bf9e-1.gif)
.
3) Multiply the second row by -1. Doing that to the identity matrix gives
![\left[\begin{array}{cc}1 & 0 \\ 0 & -1\end{array}\right] \left[\begin{array}{cc}1 & 0 \\ 0 & -1\end{array}\right]](http://www.mathhelpforum.com/math-help/latex2/img/c322068b4b610da7eda04136dd29153f-1.gif)
.
4) Subract twice the second row from the first. Doing that to the identiy matrix gives
![\left[\begin{array}{cc}1 & -2 \\ 0 & 1\end{array}\right] \left[\begin{array}{cc}1 & -2 \\ 0 & 1\end{array}\right]](http://www.mathhelpforum.com/math-help/latex2/img/71a14279759a6bf621a36bd2eb579cd7-1.gif)
.
Doing all those row operations, in order, is the same as multiplying those matrices together.