Matrix Mechanics Flashcards
Given matrices AB=C, what row and column of A are being muiltiplied to find Cm,n?
Row m of A and
Column n of B
Given matrices GH = F,
what operation would be performed to find Fm.n?
You would take the dot product of Row m of G and Column n of H.
Each value in a matrix is referred to as an ______
Entry
Given matrices AB = C,
what is the entry by entry formula that would produce entry C4,5?
C4,5 = A4,1C1,5 + A4,2C2,5 + A4,3 C3,5 + ….
= Σ A4,kCk,5 for k from 1 to n ( the number or columns in A or rows in B
If you multilply a matrix by a one column vector, what shape answer to you get?
A one column vector
If you multilply a matrix by a two column vector, what shape answer to you get?
A two column vector
What are the 5 methods to muliply matrices
- Standard Entry by Entry
- Column scaling Column = Column
- Row scaling Row = Row
- Blocking
- Row by Column = list of matricies to sum
What is the advantage of multiplying matrices using the Row by Column = Series of matrices to sum.
Each of the individual resulting matrices is made up of Linearly Dependent vectors.
How do you do Column by Row matrix multiplication?
Multiply each Row of the left matrix by the corresponding Column of the right matrix. Each of these multiplications will produce a matrix made up of LD vectors which is the size of the final answer.
Add all of these matrices together to get the final answer.
In the Scaling Rows by Rows = Rows method, which matrix contains the rows that will be the scalars and which contains the row vectors that will be scaled?
The scaling scalars come from the left matrix. <–
The rows to be scaled come from the right matrix. –>
How do you find the Inverse of a matrix?
- Augment the original matirix A with I
- then reduce this augmented matrix to the identiy matrix while doing the same steps to the augmented I
- the right hand I will become the inverse of A
What is the fundamental formula relating a matrix, its inverse and the Identity matrix I?
A A-1 = i = A-1 A
In other words A inverse can be multiplied on either the left or the right of A to give I
What is the inverse of the product of two matrices AB?
The inverse of the product of AB is B-1A-1
This is because matirx multiplication is associative - it doesn’t matter what order you do it in. So multiply the inner two terms (B B-1) to get I (which can then disappear) and then do the same with the outer terms (A A-1) which yields I
What the transpose of the Identity Matrix I?
IT = I