Matrix Flashcards

(13 cards)

1
Q

Matrix Size Order

A

Rows x Columns

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

Matrix Multiplication Rule

A

A Columns = B Rows

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

Symmetric v Antisymmetric Matrix

A

Symmetric if A=A^T
Anti if A=-A^T

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

Matrix vs Augmented vs Coefficient Form

A

Matrix has whole Ax=B

Augmented drops x, and has A|B

Coefficient is just the A

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

Row Echelon + Reduced Row Echelon

A

a) Non-Zero rows at the bottom
b) First non-zero entry is to the right of the pivot above it

If all pivots are 0, it’s reduced row echelon

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

Infinite or No Solutions with Matrices

A

No Solutions if there is a zero row, that has a non-zero answer -> you can’t have 0x+0y=2

Infinite Solutions if there is a zero row with a zero answer, therefore there is x variables and (x-1) equations

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

Linear Dependence

A

When one equation is a scalar multiple of another equation

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

Matrix Rank

A

How many of the rows are unique - linearly dependent

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

Homogenous System

A

Let [A|B], where all B is 0

Will always have the trivial solution, where all of x is equal to 0

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

Inverse Matrix (What we can do with it & how to find it)

A

AA^-1=Identity and A^-1A = Identity

We can also use it to find solutions:
Identity*X=A^-1 * B

To find it for 2x2: use the formula
for >3x3, use the Gauss Jordan

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

How to Calculate the Determinant

A

for n=2 use the formula

for n>3, do it recursively across any column or row
note the sign matrix

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

What does the Det mean

A

if det A = 0, then A has no inverse

if det A != 0, then A has an inverse

If no inverse, system has no solutions

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

Cramers Rule

A

Another method to find the solution with a matrix

Define Ai as the Matrix A with the ith column replaced by Bi

Then x=[x1,x2,x3] has the solution xi=det Ai/det A

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