Skip to main content
Logo image

Exercises 5.6 Exercises

1. Entry pattern in identity matrices.

As usual, let I represent the n×n identity matrix. Describe the pattern of the entries of I in terms of the entry index pair (i,j). That is, what is the nth(i,j) entry of I, and how does the value of that entry depend on the indices i and j?
Note: your response should be a description in words, not a formula in i and j.

Verifying inverses.

In each case, determine whether the two matrices are inverses of each other.

2.

A=[2714], B=[4712].
Solution.
Compute:
AB=[2714][4712]=[1001],BA=[4712][2714]=[1001].
Since both AB=I and BA=I are true, these matrices are inverses of each other.

3.

A=[2312], C=[4710].
Solution.
The matrix A is the same as in Exercise 2, and that exercise confirms that A1=B (where B is also as in that exercise). Therefore, the matrix C in the present exercise cannot be inverse with A, according to Theorem 5.5.2.

4.

A=[0113], B=[310100001].
Solution.
These matrices cannot be inverses of each other because the are not the same size.

5.

A=[131023271], B=[23411613412].
Solution.
Compute:
AB=[131023271][23411613412]=[100010001],BA=[23411613412][131023271]=[100010001].
Since both AB=I and BA=I are true, these matrices are inverses of each other.

6.

A=[247123013], B=[352361121].
Solution.
Compute:
AB=[247123013][352361121]=[107013002].
Since AB does not evaluate to I, these matrices are not inverses of each other.

7.

A=[1322000100101421], B=[411143134100100100].
Solution.
Compute:
AB=[1322000100101421][411143134100100100]=[1000010000100001],BA=[411143134100100100][1322000100101421]=[1000010000100001].
Since both AB=I and BA=I are true, these matrices are inverses of each other.

8.

A=[5], B=[15].
Solution.
Compute:
AB=[5][15]=[1],BA=[15][5]=[1].
Since both AB=I and BA=I are true, these matrices are inverses of each other.

The inversion problem as systems of equations.

In each case, carry out the following steps:
  1. Compute the product matrix AB. (The result will be a matrix whose entries are formulas in the variables that make up the entries of B.)
  2. Use the definition of equal matrices to convert the matrix equality AB=I into equations in the variables that make up the entries of B (where, as usual, I represents the identity matrix of appropriate dimensions).
  3. Solve the equations to compute the entries of B, which will then be equal to A1, or use the equations to decide that A has no inverse.

9.

A=[3825], B=[abcd],
Solution.
  1. AB=[3825][abcd]=[3a8c3b8d2a5c2b5d]
  2. Matrix equality AB=I is
    [3a8c3b8d2a5c2b5d]=[1001].
    Equating corresponding entries leads to a pair of systems of equations:
    {3a8c=12a5c=0,{3b8d=02b5d=1.
  3. Put each of the systems of equations into an augmented matrices and reduce to solve. (Notice how A ends up being the coefficient matrix of both systems, and the column of constants is one of the columns of the identity matrix!) First,
    [381250]reducerow[105012],
    from which we obtain a=5, c=2. Next,
    [380251]reducerow[108013],
    from which we obtain b=8, d=3. Therefore, we have
    A1=B=[5823].

10.

A=[656036620], B=[abcdefghi],
Solution.
  1. AB=[656036620][abcdefghi]=[6a5d6g6b5e6h6c5f6i3d6g3e6h3f6i6a2d6b2e6c2f]
  2. Matrix equality AB=I is
    [6a5d6g6b5e6h6c5f6i3d6g3e6h3f6i6a2d6b2e6c2f]=[100010001].
    Equating corresponding entries leads to a triple of systems of equations:
    {6a5d6g=13d6g=06a2d=0,
    {6b5e6h=03e6h=16b2e=0,
    {6c5f6i=03f6i=06c2f=1
  3. Let’s put the first system of equations into an augmented matrices and reduce to solve. (Notice how A ends up being the coefficient matrix, and the column of constants is the first column of the identity matrix!)
    [656103606200]reducerow[1023001200001]
    This RREF matrix has a leading one in the “equals” column, which indicates that the system is inconsistent. It doesn’t matter whether the other two systems are consistent or not, because the inconsistency of this first system means it is impossible to determine the values of entries a,d,g in B so that AB=I is true. Therefore, A is not invertible.

11.

A=[113013112], B=[abcdefghi],
Solution.
  1. AB=[113013112][abcdefghi]=[a+d3gb+e3hc+f3id3ge3hf3ia+d2gb+e2hc+f2i]
  2. Matrix equality AB=I is
    [a+d3gb+e3hc+f3id3ge3hf3ia+d2gb+e2hc+f2i]=[100010001].
    Equating corresponding entries leads to a triple of systems of equations:
    {a+d3g=1d3g=0a+d2g=0,
    {b+e3h=0e3h=1b+e2h=0,
    {c+f3i=0f3i=0c+f2i=1.
  3. Put each of the systems of equations into an augmented matrices and reduce to solve. (Notice how A ends up being the coefficient matrix of both systems, and the column of constants is one of the columns of the identity matrix!) First,
    [113101301120]reducerow[100101030011],
    from which we obtain a=1, d=3, g=1. Next,
    [113001311120]reducerow[100101050012],
    from which we obtain b=1, e=5, h=2.
    [113001301121]reducerow[100001030011],
    from which we obtain c=0, f=3, i=1. Therefore, we have
    A1=B=[110353121].

Computing 2×2 inverses.

Use the 2×2 inversion formula, if possible, to compute the inverse of each matrix. In the case that the matrix is invertible, multiply it against your computed inverse to verify that your inverse is correct.

12.

[1132]
Answer.
[2131]

13.

[5912]
Answer.
[2915]

17.

[132313]
Answer.
[9231]

Solving systems using inverses.

In each case, solve the system using the inverse of the corresponding coefficient matrix.

18.

{xy=03x2y=8
Solution.
This system is represented in matrix form Ax=b where
A=[1132],x=[xy],b=[08].
The coefficient matrix is identical to the matrix of Exercise 12 and has inverse
[2131].
The system therefore has unique solution
x=A1b=[2131][08]=[88].
In this unique solution, x=8 and y=8.

19.

{xy=63x2y=5
Solution.
This system has the same coefficient matrix and variable column as Exercise 18, but has column of constants
b=[65].
We can use the same inverse matrix computed in Exercise 12 to compute the unique solution
x=A1b=[2131][65]=[18].
In this unique solution, x=1 and y=8.

20.

{2s3t=72s+4t=3
Solution.
This system is represented in matrix form Ax=b where
A=[2324],x=[st],b=[73].
The coefficient matrix is identical to the matrix of Exercise 16 and has inverse
[23211].
The system therefore has unique solution
x=A1b=[23211][73]=[1924].
In this unique solution, s=19/2 and t=4.

21.

{2x13x2=32x1+4x2=4
Solution.
This system has the same coefficient matrix as Exercise 20, but has variable and constant columns
x=[x1x2],b=[34].
We can use the same inverse matrix computed in Exercise 16 to compute the unique solution
x=A1b=[2131][34]=[127].
In this unique solution, x1=1 and x2=7.

22.

{x+y3z=3y3z=8x+y2z=1
Hint.
First see Exercise 11.
Solution.
This system is represented in matrix form Ax=b where
A=[113013112],x=[xyz],b=[381].
The coefficient matrix is identical to the matrix of Exercise 11 and has inverse
[110353121].
The system therefore has unique solution
x=A1b=[110353121][381]=[53414].
In this unique solution, x=5, y=34, and z=14.

23.

{x1+x23x3=3x23x3=5x1+x22x3=4
Hint.
First see Exercise 11.
Solution.
This system has the same coefficient matrix as Exercise 22, but has variable and constant columns
x=[x1x2x3],b=[354].
We can use the same inverse matrix computed in Exercise 11 to compute the unique solution
x=A1b=[110353121][354]=[243].
In this unique solution, x1=2, x2=4, and x3=3.

Isolating via matrix algebra.

In each case, use matrix algebra to isolate and determine the unknown variable matrix.

24.

[4178][1312]X=[0661]
Solution.
It’s less messy to perform algebraic manipulations with letters, so assign
A=[4178],B=[1312],C=[0661]
Then we have
ABX=CAC=BXB1(AC)=B1BXB1(AC)=IXX=B1(AC),
assuming that B is invertible. Applying Proposition 5.5.4, for B we have
adbc=1231=1,
and so B is indeed invertible, with inverse
B1=11[2311]=[2311].
With this inverse in hand, we may calculate
AC=[4178][0661]=[45139],
X=B1(AC)=[2311][45139]=[311794].

25.

XT[13310]+[3133]=I
Solution.
It’s less messy to perform algebraic manipulations with letters, so assign
A=[13310],B=[3133].
Then we have
XTA+B=IXTA=IBXTAA1=(IB)A1XTI=(IB)A1XT=(IB)A1,
assuming that A is invertible.
Note how we have multiplied by A1 on the right on both sides of the second equality above to obtain the third. Since order of matrix multiplication matters, multiplying by A1 on the left would not cancel the A on the left-hand side of the equality.
The final algebraic step is to “undo” the transpose that has been applied to X, but by Rule 5.a of Proposition 4.5.1, transpose reverses itself:
XT=(IB)A1(XT)T=((IB)A1)TX=((IB)A1)T.
(We could apply more Rules involving the transpose from Proposition 4.5.1 to further “simplify” the right-hand side of the last line above, but it’s probably easier to just calculate one final transpose at the end instead of several intermediate transposes along the way.)
Our first calculation should be to confirm that A is invertible. Applying Proposition 5.5.4, for A we have
adbc=110(3)(3)=1,
and so A is indeed invertible, with inverse
A1=[10331].
With this inverse in hand, and noting that the I in our equality should be the 2×2 identity matrix to match the dimensions of the other matrices involved, we may calculate
IB=[1001][3133]=[2134],
(IB)A1=[2134][10331]=[237185],
X=((IB)A1)T=[237185]T=[231875].

26.

[1322000100101421]X[411143134100100100]5I=[8297713526648193]
Hint.
First see Exercise 7.
Solution.
It’s less messy to perform algebraic manipulations with letters, so assign
A=[1322000100101421],B=[411143134100100100],C=[8297713526648193].
Then we have
AXB5I=CAXB=C+5IA1(AXB)B1=A1(C+5I)B1(A1A)X(BB1)=A1(C+5I)B1IXI=A1(C+5I)B1X=A1(C+5I)B1,
assuming that both A and B are invertible.
Remember that order of matrix multiplication matters. In particular, we cannot rearrange AXB to either ABX or XAB, and we have been careful to cancel A and B by multiplying by A1 on the left and by B1 on the right on both sides of the equality.
Now back to the question of the invertibility of A and B. Per the hint, matrices A and B in this exercise match the matrices in Exercise 5.6.7, where we verified that they are inverses of each other; that is,
A1=B,B1=A.
While normally there is no calculation advantage to expanding the brackets in our last algebraic expression above, in this case we might be able to further simplify our right-hand side a bit more:
X=A1(C+5I)B1X=A1(C+5I)AX=A1CA+5A1IAX=A1CA+5A1AX=A1CA+5IX=BCA+5I.
Once again, remember that order of matrix multiplication matters, and so while A1IA=I is true because first we may simplify IA=A before “cancelling” A with its inverse, we cannot similarly simplify A1CA because the A is not right next to its inverse to “cancel.”
Our final algebraic expression above now tells us what to calculate:
BC=[411143134100100100][8297713526648193]=[5778121813223326647135],
BCA=(BC)A=[5778121813223326647135][1322000100101421]=[3999138541027297210614212120].
Taking the I in the equality to represent the 4×4 identity matrix to match the dimensions of the other matrices, we also have
5I=5[1000010000100001]=[5000050000500005].
Finally,
X=BCA+5I=[3999138541027297210614212120]+[5000050000500005]=[3499138541032297210114212125].

Guessing inversion patterns from multiplication patterns.

In each of the following, use the referenced multiplication pattern from Exercises 4.6 to answer the following about the given matrix.
  1. Using the idea that an inverse should “reverse” multiplication, guess the inverse of matrix.
  2. Verify that your guess is correct by multiplying it against the original matrix.
  3. Determine whether there any values or combinations of values for the variable entries in the original matrix for which your inverse doesn’t work. In those situations, is the original matrix invertible?

Singular patterns of zero entries.

Having nonzero entries does not guarantee that a matrix will be invertible. But, on the other hand, certain patterns of zero entries in a matrix guarantee that it will be singular.

29.

Argue that a matrix with a row that is all zeros must be singular.
Hint.
Consider what Exercise 4.6.101 says about the possibility that the definition of inverse matrix could be fulfilled for such a matrix.

30.

Argue that a matrix with a column that is all zeros must be singular.
Hint.
Consider what Exercise 4.6.102 says about the possibility that the definition of inverse matrix could be fulfilled for such a matrix.