Up Main page

Introducing the left inverse of a square matrix

Consider the system Ax=b where A=[102203020], x=[x1x2x3], and b=[112]. As we have seen, one way to solve this system is to transform the augmented matrix [Ab] to one in reduced row-echelon form using elementary row operations. In the table below, each row shows the current matrix and the elementary row operation to be applied to give the matrix in the next row. The elementary matrix corresponding to the operation is shown in the right-most column.

Matrix Elementary row operation Elementary matrix
[102120310202] R2R2+2R1 M1=[100210001]
[102100110202] R2R3 M2=[100001010]
[102102020011] R212R2 M3=[1000120001]
[102101010011] R1R1+(2)R3 M4=[102010001]
[100101010011]

This table tells us that [102100110202]=[M1AM1b], [102102020011]=M2[102100110202]=[M2(M1A)M2(M1b)], [102101010011]=M3[102102020011]=[M3(M2(M1A))M3(M2(M1b))], and [100101010011]=M4[102101010011]=[M4(M3(M2(M1A)))M4(M3(M2(M1b)))].

Looking at the last set of equalities, we see that M4(M3(M2(M1A)))=[100010001]. The left-hand side is rather messy. But we know that there is a single matrix M such that MA=M4(M3(M2(M1A))). Can we obtain M from M1,,M4? The answer is “yes” because of the associativity of matrix multiplication: For matrices P,Q,R such that the product P(QR) is defined, P(QR)=(PQ)R.

Therefore, M4(M3(M2(M1A)))=(M4(M3(M2M1)))A. So we can first compute M2M1, then compute M3(M2M1), and then M4(M3(M2M1)), which gives us M.

Performing the calculations gives M=[3200012210]. One can verify that MA=I3 and Mb=[111].

Remark: If one does not need to specify each of the elementary matrices, one could have obtained M directly by applying the same sequence of elementary row operations to the 3×3 identity matrix. (Try this.)

The matrix M is called a left-inverse of A because when it is multiplied to the left of A, we get the identity matrix. Incidentally, if you multiply M to the right of A, i.e. computing AM instead of MA, you also get the identity matrix. This is not a coincidence.

The above example illustrates a couple of ideas.

First, performing a sequence of elementary row operations corresponds to applying a sequence of linear transformation to both sides of Ax=b, which in turn can be written as a single linear transformation since composition of linear transformations results in a linear transformation. The matrix M represents this single linear transformation.

Second, any time we row reduce a square matrix A that ends in the identity matrix, the matrix that corresponds to the linear transformation that encapsulates the entire sequence gives a left inverse of A. This means that left inverses of square matrices can be found via row reduction.

Quick Quiz

Exercises

Find a left inverse of each of the following matrices.

  1. [3423]

  2. [100210321]