Matrices

Exercise 0. For three randomly chosen matrices  A,B,CM3(Q)  verify distributivity of multiplication over addition:

A(B+C) = AB+AC.

Exercise 1. For matrices  A=[510231122],   B=[120132254]   M3(R)

compute  AB, BA,   [A,B]=ABBA  and also determinants and traces of these three expressions.

Verify the equalities  det(AB)=detAdetB=det(BA),   tr(AB)=tr(BA).

Is  tr(AB)=trAtrB  ?

Exercise 2. Observe on the example of matrices

A = [1200],B = [1030] M2(Q)

that the identity

(1)(A+B)2 = A2+2AB+B2

does not hold in a matrix algebra.

  1. What is the correct formula for a square of sum or difference  (A±B)2  of matrices  A,BMn(K) ?

  2. Under what condition on matrices  A,BMn(K)  the formula (1) is true ?

Exercise 3. Let   P = [001010100], Q = [010100001] M3(R):

  1. Compute  PQ, QP, P2, Q2.

  2. What is the effect of multiplication of an arbitrary matrix  AM3(R)  on the left or on the right by  P  or  Q ?

  3. Give examples of other matrices of order three whose square is equal to the identity matrix.

Hint to point 3.  P  and  Q  are permutation matrices. The square of a permutation matrix is the identity matrix if and only if the square of the corresponding permutation is the identity permutation. Such a property holds for example for transpositions.

Exercise 4. Experiment with small exponents  n=2,3,4, to find a formula for the  n-th power of the following matrices over the field  Q:

[1c01],[2200],[2101],[1111],[ab00],[1110].

Hint. In the last case it may be helpful to use Wikipedia page on Fibonacci numbers.

Exercise 5. Let

A = [0200002000020000]  M4(Q),v = [abcd]Q4.

Compute  An  and  Anv  for arbitrary  nN .

Exercise 6. Given a rectangular matrix  A, assume that the solutions  X1,X2,X3  to linear problems

(2)AX1 = [100],AX2 = [010],AX3 = [001]

are known. Consider a matrix  X  whose columns are  X1,X2,X3:   X=[X1|X2|X3]. 

  1. What is the effect of matrix multiplication  AX ?

  2. Assume that  A  is a nondegenerate square matrix of order 3.:  detA0. What is the meaning of the matrix  X  ?

  3. Assume that  A  is a degenerate square matrix of order 3.:  detA=0.

    a). Explain why in such case one of the problems (2) does not have a solution.

    b). Denote by  N  the number of linear problems without solutions. In what situations  N=1,2,3 ? Give an example of each such situation.

  4. Consider matrix equation  AX=B,  where  AMp×q(K),   B=[B1|B2||Br]Mp×r(K),  and  X=[X1|X2||Xr]Mq×r(K)  is the unknown matrix. Explain why solving this equation is equivalent to solving  r  linear systems of equations of the form  AXj=Bj,  j=1,2,,r  with  q  unknowns.

Hints.

  1. Apply the column rule of matrix multiplication (section Matrix Multiplication (Product of Two Matrices)).

  1. Use a necessary and sufficient condition for a matrix to be invertible (section Calculation of the Inverse of a Matrix, Theorem 7).

Discussion of the point 3. Denote by  R1,R2,R3  the consecutive rows of the matrix  A. Since  detA=0,  then rank of the matrix  A  equals 1 or 2.

  1.  rkA=1.   Without loss of generality we may assume that  A=[R1c2R1c3R1], R10 (the other cases can be solved analogously). It is easy to see that then the second and the third problem in (2) are inconsistent. Indeed, if  R1X=0,  then  R2X=c2(R1X)=0  and  R3X=c3(R1X)=0, which means that  AX=0.

    If  R1X=1,  then  R2X=c2(R1X)=c2  and  R3X=c3(R1X)=c3. This means that the first problem is consistent if and only if  c2=c3=0.

    Hence, if  c20  or  c30,  then  N=3,  and if  c2=c3=0,  then  N=2.

  2.  rkA=2.   Without loss of generality (up to the order of the rows) we may assume that  A=[R1R2c1R1+c2R2],
    where  R1,R2  are linearly independent.
    Now the third problem of (2) is inconsistent for any values of constants  c1,c2.
    Furthermore, by the same argument as above, we find that
    if  c10  and  c20,  then  N=3;
    if  c1=0, c20  or  c10, c2=0,  then  N=2;
    if  c1=c2=0,  then  N=1 .

Exercise 7. Find inverse matrices to:

A = [1a0001b0001c0001],L5 = [1000011000121001331014641].

The matrix L5  is a lower triangular Pascal matrix: its  k-th row contains coefficients of the Newton’s binomial formula for  (a+b)k,   k=0,1,2,3,4  and the supplementary zeros.

Write the code which generates matrix  Ln  and its inverse  Ln1  for arbitrary order  n=2,3,

Exercise 8. Find the inverse of the matrix

A = [1111101111001110001100001].

Generalise the answer to similar matrices of arbitary orders.

In Sage such an upper triangular matrix of order  n  may be constructed as follows:

sage: n = 5
sage: A = matrix([[(-1)^(i+j) if j>=i else 0 for j in range(n)]
                                             for i in range(n)])

Exercise 9. Determine the matrix  X  from an equation:

a.)   X[123234341]=[698016];  b.)   [3152]X[5678]=[1416910].

Exercise 10. Solve a matrix equation:

a.)   [2346]X=[1428];  b.)   [2121]X=[1111].

Exercise 11. Can a square matrix of order 4. whose rows consist of numbers 0, 1, 2, 3 in a certain order be invertible ? What would be the answer if the rows consisted of numbers 0, 1, 2, -3 ?

Exercise 12. Find all matrices which commute with the matrix  A=[1211]M2(R),  i.e., find all the matrices  XM2(R),  such that  AX=XA. Observe that the solutions comprise a subalgebra of the matrix algebra  M2(R). Determine dimension of this subalgebra and give an example of its basis.