Skip to main content
Logo image

Exercises 6.6 Exercises

Creating elementary matrices.

In each case, create an elementary matrix of the stated size that represents the specified operation. Then also create its inverse.

1.

2×2; swap rows
Answer.
E=[0110],E1=same.

2.

2×2; multiply first row by 3
Answer.
E=[3001],E1=[13001].

3.

2×2; multiply second row by π
Answer.
E=[100π],E1=[1001/π].

4.

2×2; add 4 times the first row to the second
Answer.
E=[1041],E1=[1041].

5.

2×2; subtract 3/2 times the second row from the first
Answer.
E=[13201],E1=[13201].

6.

3×3; swap first and third rows
Answer.
E=[001010100],E1=same.

7.

3×3; swap second and third rows
Answer.
E=[100001010],E1=same.

8.

3×3; multiply second row by 5/4
Answer.
E=[1000540001],E1=[1000450001].

9.

3×3; add 4 times the first row to the second
Answer.
E=[100410001],E1=[100410001].

10.

3×3; subtract 2 times the third row from the first
Answer.
E=[102010001],E1=[102010001].

11.

4×4; swap third and fourth rows
Answer.
E=[1000010000010010],E1=same.

12.

4×4; multiply third row by 1/7
Answer.
E=[10000100001700001],E1=[1000010000700001].

13.

4×4; add 2 times the first row to the fourth
Answer.
E=[1000010000102001],E1=[10000100001012001].

14. Non-elementary operations.

Suppose A is a 4× matrix, where is an arbitrary but unknown positive integer.

(a)

Create a matrix E so that the result of EA is the same as applying the row operation R23R2+5R4 to A.
Answer.
E=[1000030500100001]

(c)

Express E as as a product of elementary matrices.
Answer 1.
E=[1000030000100001][10000105300100001]
Answer 2.
E=[1000010500100001][1000030000100001]

Recognizing elementary matrices.

Decide whether each matrix is elementary. If it is, state the corresponding row operation. If it is not, express it as a product of elementary matrices.

15.

[010100001]
Answer.
Elementary: swap first and second rows.

16.

[105010001]
Answer.
Elementary: add 5 times the third row to the first.

17.

[100010501]
Answer.
Elementary: add 5 times the first row to the third.

18.

[105010501]
Answer.
Not elementary:
[105010501]=[100010501][1000100024][105010001].

19.

[1000π0001]
Answer.
Elementary: multiply the second row by π.

20.

[2000010000300001]
Answer.
Not elementary:
[2000010000300001]=[2000010000100001][1000010000300001].

21.

[1000013000100001]
Answer.
Elementary: subtract 3 times the third row from the second.

22.

[0001001001001000]
Answer 1.
Not elementary:
[0001001001001000]=[1000001001000001][0001010000101000].
Answer 2.
Not elementary:
[0001001001001000]=[0001010000101000][1000001001000001].

Computing inverses and decomposing into elementary matrices.

For each matrix:
  1. Use Procedure 6.3.7 to compute the inverse, or to determine that the matrix is not invertible.
  2. If the matrix is invertible, use multiplication to verify that your inverse is correct.
  3. If the matrix is invertible, express both it and its inverse as a product of elementary matrices.

23.

[2512]
Solution.
  1. We augment the matrix with the identity matrix and attempt to reduce to the identity on the left:
    [25101200]reducerow[10250112].
    To achieve the reduction above, you can use the following sequence of operations (following Procedure 2.3.2).
    1. R1R2
    2. R1
    3. R22R1
    4. R12R2
    From the reduced augmented matrix, we see that the inverse is
    [2512].
    Interestingly, in this case the inverse is equal to the negative of the original. That is, if we label the original matrix as A, then A1=A. This also implies that A2=I, so that in some sense we could say that A is a “square root” of 1!
  2. To verify that we have the correct inverse, multiply it against the original matrix — the resulting product should be the identity matrix.
  3. Create the elementary matrix for each of the steps in our row reduction process, in order:
    E1=[0110],E2=[1001],E3=[1021],E4=[1201].
    These elementary matrices, in order from right to left, generate the inverse matrix:
    A1=E4E3E2E1,[2512]=[1201][1021][1001][0110].
    The inverses of the elementary matrices, in the reverse order, generate the original matrix. To create those inverse elementary matrices, we use the reverse row operations. (Keep in mind that some operations reverse themselves.)
    1. R1R2
    2. R1
    3. R2+2R1
    4. R1+2R2.
    Therefore we have
    E11=[0110],E21=[1001],E31=[1021],E41=[1201],
    and can decompose:
    A=E11E31E31E41,[2512]=[0110][1001][1021][1201].
    Note: since alternative sequences of row operations could be used to reduce the original matrix, there exist alternative collections of elementary matrices that could be used to generate A and A1.

24.

[01112171812]
Solution.
  1. We augment the matrix with the identity matrix and attempt to reduce to the identity on the left:
    [01110012101071812001]reducerow[100661010571001471].
    To achieve the reduction above, you can use the following sequence of operations (following Procedure 2.3.2).
    1. R1R2
    2. R37R1
    3. R1+2R2;R3+4R2
    4. R3
    5. R1R3;R2R3
    From the reduced augmented matrix, we see that the inverse is
    [661571471].
  2. To verify that we have the correct inverse, multiply it against the original matrix — the resulting product should be the identity matrix.
  3. Create the elementary matrix for each of the steps in our row reduction process, in order:
    E1=[010100001],E2=[100010701],E3=[120010001],E4=[100010041],
    E5=[100010001],E6=[101010001],E7=[100011001].
    These elementary matrices, in order from right to left, generate the inverse matrix:
    A1=E7E6E5E4E3E2E1,
    [661571471]=[100011001][101010001][100010001][100010041][120010001][100010701][010100001].
    The inverses of the elementary matrices, in the reverse order, generate the original matrix. To create those inverse elementary matrices, we use the reverse row operations. (Keep in mind that some operations reverse themselves.)
    1. R1R2
    2. R3+7R1
    3. R12R2;R34R2
    4. R3
    5. R1+R3;R2+R3
    Therefore we have
    E11=[010100001],E21=[100010701],E31=[120010001],E41=[100010041],
    E51=[100010001],E61=[101010001],E71=[100011001].
    and can decompose:
    A=E11E31E31E41E51E61E71,
    [01112171812]=[010100001][100010701][120010001][100010041][100010001][101010001][100011001].
    Note: since alternative sequences of row operations could be used to reduce the original matrix, there exist alternative collections of elementary matrices that could be used to generate A and A1.

25.

[141285143]
Solution.
We augment the matrix with the identity matrix and attempt to reduce to the identity on the left:
[141100285010143001]reducerow[1403201200112012000112172].
This matrix is not fully reduced, but only on the right-hand side, which is irrelevant to our purposes.
To achieve the reduction above, you can use the following sequence of operations (following Procedure 2.3.2).
  1. R2+2R1
  2. R3+R1
  3. 12R3
  4. R2R3
  5. R1+R2;R3+7R2
Since the original matrix did not reduce to the identity, it is not invertible.

26.

[1354014200131342]
Solution.
  1. We augment the matrix with the identity matrix and attempt to reduce to the identity on the left:
    [13541000014201000013001013421001]reducerow[1000203121901001016100010302300011011].
    To achieve the reduction above, you can use the following sequence of operations (following Procedure 2.3.2).
    1. R4+R1
    2. R13R2
    3. R3R4
    4. R1+7R3;R24R3;R4+R3
    5. R1+12R4;R26R4;R3+2R4
    From the reduced augmented matrix, we see that the inverse is
    [203121910161030231011].
  2. To verify that we have the correct inverse, multiply it against the original matrix — the resulting product should be the identity matrix.
  3. Create the elementary matrix for each of the steps in our row reduction process, in order:
    E1=[1000010000101001],E2=[1300010000101001],E3=[1000010000010010],E4=[1070010000100001],E5=[1000014000101001],E6=[1000010000100011],E7=[10012010000100001],E8=[1000010600100001],E9=[1000010000120001].
    These elementary matrices, in order from right to left, generate the inverse matrix:
    A1=E9E8E7E6E5E4E3E2E1,
    [203121910161030231011]=[1000010000120001][1000010600100001][10012010000100001][1000010000100011][1000014000101001][1070010000100001][1000010000010010][1300010000101001][1000010000101001].
    The inverses of the elementary matrices, in the reverse order, generate the original matrix. To create those inverse elementary matrices, we use the reverse row operations. (Keep in mind that some operations reverse themselves.)
    1. R4R1
    2. R1+3R2
    3. R3R4
    4. R17R3;R2+4R3;R4R3
    5. R112R4;R2+6R4;R32R4
    Therefore we have
    E11=[1000010000101001],E21=[1300010000101001],E31=[1000010000010010],E41=[1070010000100001],E51=[1000014000101001],E61=[1000010000100011],E71=[10012010000100001],E81=[1000010600100001],E91=[1000010000120001].
    and can decompose:
    A=E11E31E31E41E51E61E71E81E91,
    [1354014200131342]=[1000010000101001][1300010000101001][1000010000010010][1070010000100001][1000014000101001][1000010000100011][10012010000100001][1000010600100001][1000010000120001].
    Note: since alternative sequences of row operations could be used to reduce the original matrix, there exist alternative collections of elementary matrices that could be used to generate A and A1.

Solving systems using inverses.

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

27.

{y+z=2x2yz=67x18y12z=4
Solution.
This system is represented in matrix form Ax=b where
A=[01112171812],x=[xyz],b=[264].
The coefficient matrix is identical to the matrix of Exercise 24 and has inverse
[661571471].
The system therefore has unique solution
x=A1b=[661571471][264]=[283638].
In this unique solution, x=28, y=36, and 38.

28.

{b+c=9a2bc=87a18b12c=3
Solution.
This system has the same coefficient matrix as Exercise 27, but has variable column and column of constants
x=[abc],b=[982].
We can use the same inverse matrix computed in Exercise 24 to compute the unique solution
x=A1b=[661571471][982]=[31423].
In this unique solution, a=3, b=14, and c=23.

29.

{x1+3x2+5x34x4=0x2+4x32x4=4x3+3x4=1x13x24x3+2x4=3
Solution.
This system is represented in matrix form Ax=b where
A=[1354014200131342],x=[x1x2x3x4],b=[0413].
The coefficient matrix is identical to the matrix of Exercise 26 and has inverse
[203121910161030231011].
The system therefore has unique solution
x=A1b=[203121910161030231011][0413]=[332072].
In this unique solution, x1=33, x2=20, x3=7, and x4=2.

30.

{w+3x+5y4z=2x+4y2z=1y+3z=3w3x4y+2z=0
Solution.
This system has the same coefficient matrix as Exercise 29, but has variable and constant columns
x=[wxyz],b=[2130].
We can use the same inverse matrix computed in Exercise 26 to compute the unique solution
x=A1b=[203121910161030231011][2130]=[7301].
In this unique solution, w=7, x=3, y=0, and z=1.

31. Properties of row equivalence.

Say that matrix B is row equivalent to matrix A if there exists some sequence of elementary row operations that can be applied to A to end up with result B.
Use the ideas of Subsection 6.3.3 to help verify the following properties of the row equivalence relation.

(a) Reflexivity.

Verify that the property of being row equivalent is reflexive: every matrix is row equivalent to itself.

(b) Symmetry.

Verify that the property of being row equivalent is symmetric: it is always true that if B is row equivalent to A then it must also be that A is row equivalent to B.

(c) Transitivity.

Verify that the property of being row equivalent is transitive: it is always true that if C is row equivalent to B and B is row equivalent to A then it must also be that C is row equivalent to A.