Matrices¶
Exercise 0.
Exercise 1.
compute
Verify the equalities
Is
Exercise 2.
that the identity
does not hold in a matrix algebra.
What is the correct formula for a square of sum or difference
of matrices ?Under what condition on matrices
the formula (1) is true ?
Exercise 3.
Compute
What is the effect of multiplication of an arbitrary matrix
on the left or on the right by or ?Give examples of other matrices of order three whose square is equal to the identity matrix.
Hint to point 3.
Exercise 4.
Hint.
Exercise 5.
Compute
Exercise 6.
are known. Consider a matrix
What is the effect of matrix multiplication
?Assume that
is a nondegenerate square matrix of order 3.: What is the meaning of the matrix ?Assume that
is a degenerate square matrix of order 3.:a). Explain why in such case one of the problems (2) does not have a solution.
b). Denote by
the number of linear problems without solutions. In what situations ? Give an example of each such situation.Consider matrix equation
where and is the unknown matrix. Explain why solving this equation is equivalent to solving linear systems of equations of the form with unknowns.
Hints.
Apply the column rule of matrix multiplication (section Matrix Multiplication (Product of Two Matrices)).
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.
Without loss of generality we may assume that (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 then and which means thatIf
then and This means that the first problem is consistent if and only ifHence,
if or then and if then Without loss of generality (up to the order of the rows) we may assume thatwhere are linearly independent.Now the third problem of (2) is inconsistent for any values of constantsFurthermore, by the same argument as above, we find thatif and thenif or thenif then .
Exercise 7.
The matrix
Write the code which generates matrix
Exercise 8.
Generalise the answer to similar matrices of arbitary orders.
In Sage such an upper triangular matrix of order
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.
a.)
Exercise 10.
a.)
Exercise 11.
Exercise 12.