Matrices Flashcards
what does it mean if matrix multiplication is associative, using A B and C as examples
- (AB)C = A(BC) = ABC
- or A(B+C) = AB + AC
what does it mean if matrix multiplication is not commutative, using A and B as examples
AB does not = BA
what does the transpose of a transpose of a matrix equal
the original matrix
what are the 2 things ((AB)^T)ij can equate to
- (AB)ji (notice i and j swapped)
- (B^T * A^T)ij ( notice i and j did not swap but B and A did)
what does a . b equal in terms of a^T
a . b = a^T * b
what is the condition in order for the inverse of a matrix to not exist
the determinant of the matrix must be 0
how does multiplying a matrix by a constant c change the determinant
it also multiplies the determinant by c
what is an easy way to spot whether the det of a matrix is 0
if 2 rows or columns are equal
does the det(A) = det(A^T)
yes
what is the det(AB) also equal to
det(BA)
what is the 2x2 matrix for rotations (all matrix notations are read downwards first
- cosθ, sinθ
- -sinθ, cosθ
what direction does the inverse of a regular rotation matrix rotate a vector and why
- in the clockwise direction
- because all the θs turn into -θs
what is the inverse of a rotation matrix equal to
its transpose
what is the matrix for rotation about the x-axis
- 1 0 0
- 0 cosθ sinθ
- 0 -sinθ cosθ
what is the matrix for the rotation about the y-axis
- cosθ 0 -sinθ
- 0 1 0
- sinθ 0 cosθ