Matrix Mechanics Flashcards

1
Q

Given matrices AB=C, what row and column of A are being muiltiplied to find Cm,n?

A

Row m of A and

Column n of B

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Given matrices GH = F,

what operation would be performed to find Fm.n?

A

You would take the dot product of Row m of G and Column n of H.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Each value in a matrix is referred to as an ______

A

Entry

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Given matrices AB = C,

what is the entry by entry formula that would produce entry C4,5?

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

If you multilply a matrix by a one column vector, what shape answer to you get?

A

A one column vector

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

If you multilply a matrix by a two column vector, what shape answer to you get?

A

A two column vector

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What are the 5 methods to muliply matrices

A
  1. Standard Entry by Entry
  2. Column scaling Column = Column
  3. Row scaling Row = Row
  4. Blocking
  5. Row by Column = list of matricies to sum
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is the advantage of multiplying matrices using the Row by Column = Series of matrices to sum.

A

Each of the individual resulting matrices is made up of Linearly Dependent vectors.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

How do you do Column by Row matrix multiplication?

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

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?

A

The scaling scalars come from the left matrix. <–

The rows to be scaled come from the right matrix. –>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

How do you find the Inverse of a matrix?

A
  1. Augment the original matirix A with I
  2. then reduce this augmented matrix to the identiy matrix while doing the same steps to the augmented I
  3. the right hand I will become the inverse of A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is the fundamental formula relating a matrix, its inverse and the Identity matrix I?

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is the inverse of the product of two matrices AB?

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What the transpose of the Identity Matrix I?

A

IT = I

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is (AT)-1 in terms of A-1 ?

A

(AT)-1 = (A-1)T

17
Q

How do you create the inverse of a Pivot Elementary Matrix?

A

Just change the sign of the scaling factor in the Pivot Elementary Matrix