Chapter 2- Matrix Algebra Flashcards
Properties of Matrix Multiplication (Theorem 2)
1) A(BC) = (AB)C
2) A(B + C) = AB + AC
3) (B + C)A = BA + CA
4) r(AB) = (rA)B = A(rB) r is scalar
5) ImA = A = AIn
6) A^k = AAA … *A (k times)
Warnings about multiplying matrices
1) In general, AB =/= BA
2) Cancellation laws do NOT hold for matrices. That is, if AB = AC, then in general, B =/= C.
3) If AB = 0, that does NOT imply A = 0 or B = 0
Definition of transposing a matrix A
A is an mxn matrix, then the transpose of A, denoted by A^T, whose switching the rows and columns to an nxm matrix
What are the properties of transposing a matrix?
Let A and B denote matrices whose sizes are appropriate for the following sums and products.
1) (A^T)^T = A
2) (A + B)^T = A^T + B^T
3) for any scalar r, (rA)^T = rA^T
4) (AB)^T = B^T*A^T
The transpose of a product of matrices equals the product of their transposes in the reverse order
If A and B are matrices, how do we know if AB is defined?
AB is defined iff the number of columns for A is equal to the number of rows for B
How to compute AB separately using its components
Each column of AB is a linear combination of the columns of A using weights from the corresponding column of B (B has p columns).
AB = A[b1 b2 b3 … bp]
Let A and B be matrices. If A and B commute with one another…
… then AB = BA. Also, they are both square matrices.
If a matrix A is 5x3 and the product AB is 5x7, what is the size of B?
3x7
True or false. Why?
If A and B are 2x2 matrices with columns a1, a2, and b1, b2, respectively, then AB = [a1b1 a2b2]
False
AB = A[b1 b2] = [Ab1 Ab2]
True or false. Why?
Each column of AB is a linear combination of the columns of A using weights from the corresponding column of B.
True
AB = [Ab1 Ab2 … Abp]
True or false. Why?
The transpose of a product of matrices equals the product of their transposes in the same order.
False
(AB)^T = B^T*A^T
Says the property of transposing matrices
True or false. Why?
If A is an nxn matrix,
then (A^2)^T = (A^T)^2
True
(A^2)^T = (AA)^T = A^TA^T
= (A^T)^2
Suppose the third column of B is the sum of the first two columns. What can be said about the third column of AB? Why?
Third column of AB is the sum of the first two columns of AB
Third column AB = Ab3 = A(b1 + b2)
= Ab1 + Ab2
By a property of matrix-vector multiplication
Suppose the first two columns, b1 and b2, of B are equal, what can we say about AB. Why?
Those columns will be equal to each other
AB = [Ab1 Ab2 … ]
If b1 and b2 are equal, the first two columns of AB are interchangeable.
Suppose the last column of AB is entirely zeros but B itself has no column of zeros. What can be said about the columns of A? Why?
Columns of AB are linearly dependent. Figure out why