Linear Algebra/Inverses
From Wikibooks, the open-content textbooks collection
We now consider how to represent the inverse of a linear map.
We start by recalling some facts about function inverses.[1] Some functions have no inverse, or have an inverse on the left side or right side only.
- Example 4.1
Where
is the projection map
and
is the embedding
the composition
is the identity map on
.
We say π is a left inverse map of η or, what is the same thing, that η is a right inverse map of π. However, composition in the other order
doesn't give the identity map— here is a vector that is not sent to itself under
.
In fact, the projection π has no left inverse at all. For, if f were to be a left inverse of π then we would have
for all of the infinitely many z's. But no function f can send a single argument to more than one value.
(An example of a function with no inverse on either side is the zero transformation on
.) Some functions have a two-sided inverse map, another function that is the inverse of the first, both from the left and from the right. For instance, the map given by
has the two-sided inverse
. In this subsection we will focus on two-sided inverses. The appendix shows that a function has a two-sided inverse if and only if it is both one-to-one and onto. The appendix also shows that if a function f has a two-sided inverse then it is unique, and so it is called "the" inverse, and is denoted f - 1. So our purpose in this subsection is, where a linear map h has an inverse, to find the relationship between RepB,D(h) and RepD,B(h − 1) (recall that we have shown, in Theorem II.2.21 of Section II of this chapter, that if a linear map has an inverse then the inverse is a linear map also).
- Definition 4.2
A matrix G is a left inverse matrix of the matrix H if GH is the identity matrix. It is a right inverse matrix if HG is the identity. A matrix H with a two-sided inverse is an invertible matrix. That two-sided inverse is called the inverse matrix and is denoted H − 1.
Because of the correspondence between linear maps and matrices, statements about map inverses translate into statements about matrix inverses.
- Lemma 4.3
If a matrix has both a left inverse and a right inverse then the two are equal.
- Theorem 4.4
A matrix is invertible if and only if it is nonsingular.
- Proof
(For both results.) Given a matrix H, fix spaces of appropriate dimension for the domain and codomain. Fix bases for these spaces. With respect to these bases, H represents a map h. The statements are true about the map and therefore they are true about the matrix.
- Lemma 4.5
A product of invertible matrices is invertible— if G and H are invertible and if GH is defined then GH is invertible and (GH) − 1 = H − 1G − 1.
- Proof
(This is just like the prior proof except that it requires two maps.) Fix appropriate spaces and bases and consider the represented maps h and g. Note that h − 1g − 1 is a two-sided map inverse of gh since (h − 1g − 1)(gh) = h − 1(id)h = h − 1h = id and (gh)(h − 1g − 1) = g(id)g − 1 = gg − 1 = id. This equality is reflected in the matrices representing the maps, as required.
Here is the arrow diagram giving the relationship between map inverses and matrix inverses. It is a special case of the diagram for function composition and matrix multiplication.
Beyond its place in our general program of seeing how to represent map operations, another reason for our interest in inverses comes from solving linear systems. A linear system is equivalent to a matrix equation, as here.
By fixing spaces and bases (e.g.,
and
), we take the matrix H to represent some map h. Then solving the system is the same as asking: what domain vector
is mapped by h to the result
? If we could invert h then we could solve the system by multiplying
to get
.
- Example 4.6
We can find a left inverse for the matrix just given
by using Gauss' method to solve the resulting linear system.
Answer: m = 1 / 3, n = 1 / 3, p = 2 / 3, and q = − 1 / 3. This matrix is actually the two-sided inverse of H, as can easily be checked. With it we can solve the system ( * ) above by applying the inverse.
- Remark 4.7
Why solve systems this way, when Gauss' method takes less arithmetic (this assertion can be made precise by counting the number of arithmetic operations, as computer algorithm designers do)? Beyond its conceptual appeal of fitting into our program of discovering how to represent the various map operations, solving linear systems by using the matrix inverse has at least two advantages.
First, once the work of finding an inverse has been done, solving a system with the same coefficients but different constants is easy and fast: if we change the entries on the right of the system ( * ) then we get a related problem
with a related solution method.
In applications, solving many systems having the same matrix of coefficients is common.
Another advantage of inverses is that we can explore a system's sensitivity to changes in the constants. For example, tweaking the 3 on the right of the system ( * ) to
can be solved with the inverse.
to show that x1 changes by 1 / 3 of the tweak while x2 moves by 2 / 3 of that tweak. This sort of analysis is used, for example, to decide how accurately data must be specified in a linear model to ensure that the solution has a desired accuracy.
We finish by describing the computational procedure usually used to find the inverse matrix.
- Lemma 4.8
A matrix is invertible if and only if it can be written as the product of elementary reduction matrices. The inverse can be computed by applying to the identity matrix the same row steps, in the same order, as are used to Gauss-Jordan reduce the invertible matrix.
- Proof
A matrix H is invertible if and only if it is nonsingular and thus Gauss-Jordan reduces to the identity. By Corollary 3.22 this reduction can be done with elementary matrices
. This equation gives the two halves of the result.
First, elementary matrices are invertible and their inverses are also elementary. Applying
to the left of both sides of that equation, then
, etc., gives H as the product of elementary matrices
(the I is here to cover the trivial r = 0 case).
Second, matrix inverses are unique and so comparison of the above equation with H − 1H = I shows that
. Therefore, applying R1 to the identity, followed by R2, etc., yields the inverse of H.
- Example 4.9
To find the inverse of
we do Gauss-Jordan reduction, meanwhile performing the same operations on the identity. For clerical convenience we write the matrix and the identity side-by-side, and do the reduction steps together.
This calculation has found the inverse.
- Example 4.10
This one happens to start with a row swap.
- Example 4.11
A non-invertible matrix is detected by the fact that the left half won't reduce to the identity.
This procedure will find the inverse of a general
matrix. The
case is handy.
- Corollary 4.12
The inverse for a
matrix exists and equals
if and only if
.
- Proof
This computation is Problem 10.
We have seen here, as in the Mechanics of Matrix Multiplication subsection, that we can exploit the correspondence between linear maps and matrices. So we can fruitfully study both maps and matrices, translating back and forth to whichever helps us the most.
Over the entire four subsections of this section we have developed an algebra system for matrices. We can compare it with the familiar algebra system for the real numbers. Here we are working not with numbers but with matrices. We have matrix addition and subtraction operations, and they work in much the same way as the real number operations, except that they only combine same-sized matrices. We also have a matrix multiplication operation and an operation inverse to multiplication. These are somewhat like the familiar real number operations (associativity, and distributivity over addition, for example), but there are differences (failure of commutativity, for example). And, we have scalar multiplication, which is in some ways another extension of real number multiplication. This matrix system provides an example that algebra systems other than the elementary one can be interesting and useful.
[edit] Exercises
- This exercise is recommended for all readers.
- Problem 2
Use Corollary 4.12 to decide if each matrix has an inverse.
- Answer
- Yes, it has an inverse:
. - Yes.
- No.
- This exercise is recommended for all readers.
- Problem 3
For each invertible matrix in the prior problem, use Corollary 4.12 to find its inverse.
- Answer


- The prior question shows that no inverse exists.
- This exercise is recommended for all readers.
- Problem 4
Find the inverse, if it exists, by using the Gauss-Jordan method. Check the answers for the
matrices with Corollary 4.12.
- Answer
- The reduction is routine.
- This reduction is easy.
-
- Trying the Gauss-Jordan reduction
agrees. - This produces an inverse.
- This is one way to do the reduction.
- There is no inverse.
- This exercise is recommended for all readers.
- Problem 6
How does the inverse operation interact with scalar multiplication and addition of matrices?
- What is the inverse of rH?
- Is (H + G) − 1 = H − 1 + G − 1?
- Answer
- The proof that the inverse is
(provided, of course, that the matrix is invertible) is easy. - No. For one thing, the fact that H + G has an inverse doesn't imply that H has an inverse or that G has an inverse. Neither of these matrices is invertible but their sum is.
- This exercise is recommended for all readers.
- Problem 7
Is (Tk) − 1 = (T − 1)k?
- Answer
Yes:
.
- Problem 8
Is H − 1 invertible?
- Answer
Yes, the inverse of H − 1 is H.
- Problem 9
For each real number θ let
be represented with respect to the standard bases by this matrix.
Show that
. Show also that
.
- Answer
One way to check that the first is true is with the angle sum formulas from trigonometry.
Checking the second equation in this way is similar.
Of course, the equations can be not just checked but also understood by recalling that tθ is the map that rotates vectors about the origin through an angle of θ radians.
- Problem 10
Do the calculations for the proof of Corollary 4.12.
- Answer
There are two cases. For the first case we assume that a is nonzero. Then
shows that the matrix is invertible (in this
case) if and only if
. To find the inverse, we finish with the Jordan half of the reduction.
The other case is the a = 0 case. We swap to get c into the 1,1 position.
This matrix is nonsingular if and only if both b and c are nonzero (which, under the case assumption that a = 0, holds if and only if
). To find the inverse we do the Jordan half.
(Note that this is what is required, since a = 0 gives that ad − bc = − bc).
- Problem 11
Show that this matrix
has infinitely many right inverses. Show also that it has no left inverse.
- Answer
With H a
matrix, in looking for a matrix G such that the combination HG acts as the
identity we need G to be
. Setting up the equation
and solving the resulting linear system
gives infinitely many solutions.
Thus H has infinitely many right inverses.
As for left inverses, the equation
gives rise to a linear system with nine equations and four unknowns.
This system is inconsistent (the first equation conflicts with the third, as do the seventh and ninth) and so there is no left inverse.
- Problem 12
In Example 4.1, how many left inverses has η?
- Answer
With respect to the standard bases we have
and setting up the equation to find the matrix inverse
gives rise to a linear system.
There are infinitely many solutions in
to this system because two of these variables are entirely unrestricted
and so there are infinitely many solutions to the matrix equation.
With the bases still fixed at
, for instance taking c = 2 and f = 3 gives a matrix representing this map.
The check that
is the identity map on
is easy.
- Problem 13
If a matrix has infinitely many right-inverses, can it have infinitely many left-inverses? Must it have?
- Answer
By Lemma 4.3 it cannot have infinitely many left inverses, because a matrix with both left and right inverses has only one of each (and that one of each is one of both— the left and right inverse matrices are equal).
- This exercise is recommended for all readers.
- Problem 14
Assume that H is invertible and that HG is the zero matrix. Show that G is a zero matrix.
- Answer
The associativity of matrix multiplication gives on the one hand H − 1(HG) = H − 1Z = Z, and on the other that H − 1(HG) = (H − 1H)G = IG = G.
- Problem 15
Prove that if H is invertible then the inverse commutes with a matrix GH − 1 = H − 1G if and only if H itself commutes with that matrix GH = HG.
- Answer
Multiply both sides of the first equation by H.
- This exercise is recommended for all readers.
- Problem 16
Show that if T is square and if T4 is the zero matrix then (I − T) − 1 = I + T + T2 + T3. Generalize.
- Answer
Checking that when I − T is multiplied on both sides by that expression (assuming that T4 is the zero matrix) then the result is the identity matrix is easy. The obvious generalization is that if Tn is the zero matrix then
; the check again is easy.
- This exercise is recommended for all readers.
- Problem 17
Let D be diagonal. Describe D2, D3, ... , etc. Describe D − 1, D − 2, ... , etc. Define D0 appropriately.
- Answer
The powers of the matrix are formed by taking the powers of the diagonal entries. That is, D2 is all zeros except for diagonal entries of
,
, etc. This suggests defining D0 to be the identity matrix.
- Problem 18
Prove that any matrix row-equivalent to an invertible matrix is also invertible.
- Answer
Assume that B is row equivalent to A and that A is invertible. Because they are row-equivalent, there is a sequence of row steps to reduce one to the other. That reduction can be done with matrices, for instance, A can be changed by row operations to B as
. This equation gives B as a product of invertible matrices and by Lemma 4.5 then, B is also invertible.
- Problem 19
The first question below appeared as Problem 15 in the Matrix Multiplication subsection.
- Show that the rank of the product of two matrices is less than or equal to the minimum of the rank of each.
- Show that if T and S are square then TS = I if and only if ST = I.
- Answer
- See the answer to Problem 15 in the Matrix Multiplication subsection.
- We will show that both conditions are equivalent to the condition that the two matrices be nonsingular. As T and S are square and their product is defined, they are equal-sized, say
. Consider the TS = I half. By the prior item the rank of I is less than or equal to the minimum of the rank of T and the rank of S. But the rank of I is n, so the rank of T and the rank of S must each be n. Hence each is nonsingular. The same argument shows that ST = I implies that each is nonsingular.
- Problem 20
Show that the inverse of a permutation matrix is its transpose.
- Answer
Inverses are unique, so we need only show that it works. The check appears above as Problem 9 of the Mechanics of Matrix Multiplication subsection.
- Problem 21
The first two parts of this question appeared as Problem 12. of the Matrix Multiplication subsection
- Show that (GH)trans = HtransGtrans.
- A square matrix is symmetric if each i,j entry equals the j,i entry (that is, if the matrix equals its transpose). Show that the matrices HHtrans and HtransH are symmetric.
- Show that the inverse of the transpose is the transpose of the inverse.
- Show that the inverse of a symmetric matrix is symmetric.
- Answer
- See the answer for Problem 12 of the Matrix Multiplication subsection.
- See the answer for Problem 12 of the Matrix Multiplication subsection.
- Apply the first part to I = AA − 1 to get
. - Apply the prior item with Atrans = A, as A is symmetric.
- This exercise is recommended for all readers.
- Problem 22
The items starting this question appeared as Problem 17 of the Matrix Multiplication subsection.
- Prove that the composition of the projections
is the zero map despite that neither is the zero map. - Prove that the composition of the derivatives
is the zero map despite that neither map is the zero map. - Give matrix equations representing each of the prior two items.
When two things multiply to give zero despite that neither is zero, each is said to be a zero divisor. Prove that no zero divisor is invertible.
- Answer
For the answer to the items making up the first half, see Problem 17 of the Matrix Multiplication subsection. For the proof in the second half, assume that A is a zero divisor so there is a nonzero matrix B with AB = Z (or else BA = Z; this case is similar), If A is invertible then A − 1(AB) = (A − 1A)B = IB = B but also A − 1(AB) = A − 1Z = Z, contradicting that B is nonzero.
- Problem 23
In real number algebra, there are exactly two numbers, 1 and − 1, that are their own multiplicative inverse. Does H2 = I have exactly two solutions for
matrices?
- Answer
No, there are at least four.
- Problem 24
Is the relation "is a two-sided inverse of" transitive? Reflexive? Symmetric?
- Answer
It is not reflexive since, for instance,
is not a two-sided inverse of itself. The same example shows that it is not transitive. That matrix has this two-sided inverse
and while H is a two-sided inverse of G and G is a two-sided inverse of H, we know that H is not a two-sided inverse of H. However, the relation is symmetric: if G is a two-sided inverse of H then GH = I = HG and therefore H is also a two-sided inverse of G.
- Problem 25
Prove: if the sum of the elements of a square matrix is k, then the sum of the elements in each row of the inverse matrix is 1 / k. (Wilansky 1951)
- Answer
This is how the answer was given in the cited source.
Let A be
, non-singular, with the stated property. Let B be its inverse. Then for
,
(A is singular if k = 0).
[edit] Footnotes
- ↑ More information on function inverses is in the appendix.
[edit] References
- Wilansky, Albert (Nov. 1951), "The Row-Sum of the Inverse Matrix", American Mathematical Monthly (American Mathematical Society) 58 (9): 614.














![\begin{array}{rcl}
\left(\begin{array}{cc|cc}
1 &1 &1 &0 \\
2 &-1 &0 &1
\end{array}\right)
&\xrightarrow[]{-2\rho_1+\rho_2}
&\left(\begin{array}{cc|cc}
1 &1 &1 &0 \\
0 &-3 &-2 &1
\end{array}\right) \\
&\xrightarrow[]{-1/3\rho_2}
&\left(\begin{array}{cc|cc}
1 &1 &1 &0 \\
0 &1 &2/3 &-1/3
\end{array}\right) \\
&\xrightarrow[]{-\rho_2+\rho_1}
&\left(\begin{array}{cc|cc}
1 &0 &1/3 &1/3 \\
0 &1 &2/3 &-1/3
\end{array}\right)
\end{array}](http://upload.wikimedia.org/math/9/c/0/9c07b20c2b0b2da8d6a69a1bbfba9d3d.png)

![\begin{array}{rcl}
\left(\begin{array}{ccc|ccc}
0 &3 &-1 &1 &0 &0 \\
1 &0 &1 &0 &1 &0 \\
1 &-1 &0 &0 &0 &1
\end{array}\right)
&\xrightarrow[]{\rho_1\leftrightarrow\rho_2}
& \left(\begin{array}{ccc|ccc}
1 &0 &1 &0 &1 &0 \\
0 &3 &-1 &1 &0 &0 \\
1 &-1 &0 &0 &0 &1
\end{array}\right) \\
&\xrightarrow[]{-\rho_1+\rho_3}
& \left(\begin{array}{ccc|ccc}
1 &0 &1 &0 &1 &0 \\
0 &3 &-1 &1 &0 &0 \\
0 &-1 &-1 &0 &-1 &1
\end{array}\right) \\
&\vdots \\
&\xrightarrow[]{}
& \left(\begin{array}{ccc|ccc}
1 &0 &0 &1/4 &1/4 &3/4 \\
0 &1 &0 &1/4 &1/4 &-1/4 \\
0 &0 &1 &-1/4 &3/4 &-3/4
\end{array}\right)
\end{array}](http://upload.wikimedia.org/math/0/2/2/022e3d0d6045f09e8af24fa6aaf9de31.png)
![\left(\begin{array}{cc|cc}
1 &1 &1 &0 \\
2 &2 &0 &1
\end{array}\right)
\xrightarrow[]{-2\rho_1+\rho_2}
\left(\begin{array}{cc|cc}
1 &1 &1 &0 \\
0 &0 &-2 &1
\end{array}\right)](http://upload.wikimedia.org/math/0/8/a/08a78f60fdce9524d836afce44ea74e4.png)

![\begin{align}
&\xrightarrow[]{(1/3)\rho_2+\rho_3}\;
\left(\begin{array}{ccc|ccc}
1 &0 &1 &0 &1 &0 \\
0 &3 &-1 &1 &0 &0 \\
0 &0 &-4/3 &1/3 &-1 &1
\end{array}\right)
\;\xrightarrow[-(3/4)\rho_3]{(1/3)\rho_2}\;
\left(\begin{array}{ccc|ccc}
1 &0 &1 &0 &1 &0 \\
0 &1 &-1/3 &1/3 &0 &0 \\
0 &0 &1 &-1/4 &3/4 &-3/4
\end{array}\right) \\
&\xrightarrow[-\rho_3+\rho_1]{(1/3)\rho_3+\rho_2}\;
\left(\begin{array}{ccc|ccc}
1 &0 &0 &1/4 &1/4 &3/4 \\
0 &1 &0 &1/4 &1/4 &-1/4 \\
0 &0 &1 &-1/4 &3/4 &-3/4
\end{array}\right)
\end{align}](http://upload.wikimedia.org/math/f/a/1/fa17b5b9fce8130f13d8ecc7b5f3b35b.png)









![\left(\begin{array}{cc|cc}
3 &1 &1 &0 \\
0 &2 &0 &1
\end{array}\right)
\;\xrightarrow[(1/2)\rho_2]{(1/3)\rho_1}\;
\left(\begin{array}{cc|cc}
1 &1/3 &1/3 &0 \\
0 &1 &0 &1/2
\end{array}\right)
\;\xrightarrow[]{-(1/3)\rho_2+\rho_1}\;
\left(\begin{array}{cc|cc}
1 &0 &1/3 &-1/6 \\
0 &1 &0 &1/2
\end{array}\right)](http://upload.wikimedia.org/math/e/1/3/e1324f34088add55180fd3670332468b.png)

![\;\xrightarrow[4\rho_2]{(1/2)\rho_1}\;
\left(\begin{array}{cc|cc}
1 &1/4 &1/2 &0 \\
0 &1 &-6 &4
\end{array}\right)
\;\xrightarrow[]{-(1/4)\rho_2+\rho_1}\;
\left(\begin{array}{cc|cc}
1 &0 &2 &-1 \\
0 &1 &-6 &4
\end{array}\right)](http://upload.wikimedia.org/math/2/8/d/28db7c178222e0c52ec64a0f8d6a6631.png)

![\left(\begin{array}{cc|cc}
2 &-4 &1 &0 \\
-1 &2 &0 &1
\end{array}\right)
\;\xrightarrow[]{(1/2)\rho_1+\rho_2}\;
\left(\begin{array}{cc|cc}
2 &-4 &1 &0 \\
0 &0 &1/2 &1
\end{array}\right)](http://upload.wikimedia.org/math/e/f/d/efdddbebfaded01dc29908b166c681c7.png)
![\begin{align}
&\xrightarrow[-\rho_3]{(1/2)\rho_2}\;
\left(\begin{array}{ccc|ccc}
1 &1 &3 &1 &0 &0 \\
0 &1 &2 &0 &1/2 &0 \\
0 &0 &1 &-1 &1 &-1
\end{array}\right)
\;\xrightarrow[-3\rho_3+\rho_1]{-2\rho_3+\rho_2}\;
\left(\begin{array}{ccc|ccc}
1 &1 &0 &4 &-3 &3 \\
0 &1 &0 &2 &-3/2 &2 \\
0 &0 &1 &-1 &1 &-1
\end{array}\right) \\
&\xrightarrow[]{-\rho_2+\rho_1}\;
\left(\begin{array}{ccc|ccc}
1 &0 &0 &2 &-3/2 &1 \\
0 &1 &0 &2 &-3/2 &2 \\
0 &0 &1 &-1 &1 &-1
\end{array}\right)
\end{align}](http://upload.wikimedia.org/math/0/4/7/04766a98434f71e73a7f886b6f36961a.png)
![\begin{align}
&\;\xrightarrow[]{(1/2)\rho_2+\rho_3}\;
\left(\begin{array}{ccc|ccc}
2 &3 &-2 &0 &0 &1 \\
0 &-2 &4 &0 &1 &0 \\
0 &0 &7 &1 &1/2 &0
\end{array}\right)
\xrightarrow[\begin{array}{c}\\[-19pt]\scriptstyle -(1/2)\rho_2 \\[-5pt] \scriptstyle (1/7)\rho_3\end{array}]{(1/2)\rho_1}\;
\left(\begin{array}{ccc|ccc}
1 &3/2 &-1 &0 &0 &1/2 \\
0 &1 &-2 &0 &-1/2 &0 \\
0 &0 &1 &1/7 &1/14 &0
\end{array}\right) \\
&\;\xrightarrow[\rho_3+\rho_1]{2\rho_3+\rho_2}\;
\left(\begin{array}{ccc|ccc}
1 &3/2 &0 &1/7 &1/14 &1/2 \\
0 &1 &0 &2/7 &-5/14 &0 \\
0 &0 &1 &1/7 &1/14 &0
\end{array}\right)
\xrightarrow[]{-(3/2)\rho_2+\rho_1}\;
\left(\begin{array}{ccc|ccc}
1 &0 &0 &-2/7 &17/28 &1/2 \\
0 &1 &0 &2/7 &-5/14 &0 \\
0 &0 &1 &1/7 &1/14 &0
\end{array}\right)
\end{align}](http://upload.wikimedia.org/math/9/e/9/9e9c843950b24b0c9f17853c94d1de14.png)
![\begin{array}{rl}
\left(\begin{array}{ccc|ccc}
2 &2 &3 &1 &0 &0 \\
1 &-2 &-3 &0 &1 &0 \\
4 &-2 &-3 &0 &0 &1
\end{array}\right)
&\;\xrightarrow[-2\rho_1+\rho_3]{-(1/2)\rho_1+\rho_2}\;
\left(\begin{array}{ccc|ccc}
2 &2 &3 &1 &0 &0 \\
0 &-3 &-9/2 &-1/2 &1 &0 \\
0 &-6 &-9 &-2 &0 &1
\end{array}\right) \\
&\xrightarrow[]{-2\rho_2+\rho_3}\;
\left(\begin{array}{ccc|ccc}
2 &2 &3 &1 &0 &0 \\
0 &-3 &-9/2 &-1/2 &1 &0 \\
0 &0 &0 &-1 &-2 &1
\end{array}\right)
\end{array}](http://upload.wikimedia.org/math/0/2/c/02cda8996649de07a61ad3bf35d18ed0.png)








![\xrightarrow[]{-(c/a)\rho_1+\rho_2}
\left(\begin{array}{cc|cc}
a &b &1 &0 \\
0 &-(bc/a)+d &-c/a &1
\end{array}\right)
=\left(\begin{array}{cc|cc}
a &b &1 &0 \\
0 &(ad-bc)/a &-c/a &1
\end{array}\right)](http://upload.wikimedia.org/math/2/4/d/24dbc6a0346abe4ce2e5fa7215574631.png)
![\xrightarrow[(a/ad-bc)\rho_2]{(1/a)\rho_1}
\left(\begin{array}{cc|cc}
1 &b/a &1/a &0 \\
0 &1 &-c/(ad-bc) &a/(ad-bc)
\end{array}\right)
\xrightarrow[]{-(b/a)\rho_2+\rho_1}
\left(\begin{array}{cc|cc}
1 &0 &d/(ad-bc) &-b/(ad-bc) \\
0 &1 &-c/(ad-bc) &a/(ad-bc)
\end{array}\right)](http://upload.wikimedia.org/math/9/9/f/99f78ee9e9acb9762ca90e7ed40f0cdb.png)
![\xrightarrow[]{\rho_1\leftrightarrow\rho_2}\;
\left(\begin{array}{cc|cc}
c &d &0 &1 \\
0 &b &1 &0
\end{array}\right)](http://upload.wikimedia.org/math/f/c/5/fc5fbd994f247e6d812aeabd6d3f7ef0.png)
![\xrightarrow[(1/b)\rho_2]{(1/c)\rho_1}\;
\left(\begin{array}{cc|cc}
1 &d/c &0 &1/c \\
0 &1 &1/b &0
\end{array}\right)
\;\xrightarrow[]{-(d/c)\rho_2+\rho_1}\;
\left(\begin{array}{cc|cc}
1 &0 &-d/bc &1/c \\
0 &1 &1/b &0
\end{array}\right)](http://upload.wikimedia.org/math/2/2/e/22eddc536ef816231d2f347fbc061708.png)















