Matrices Flashcards

1
Q

Scalar multiplication

A

multiply each element by scalar

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

addition, subtraction

A

add, subtract elements in same position. Matrices must be equal size

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

Multiplication

A

rows by columns. R1xC1 R1Xc2, underneath is R2xc1, R2xc2, etc

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

Not commutative

A

AB not = BA

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

To see if can be multiplied

A

write sizes of both, inside numbers must match, outside numbers size of new matrix 3x2 2x3 so new matrix will be 3 x 3

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

Matrix powers

A

A^ is AA, A^3 is A^2A, A^6 is A^3A^3

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

Network matrices

A

Input vector x Matrix representing network = output vector. No of columns = no of inputs, no of rows = no of outputs

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

Identity matrix

A

Multiplying by it leaves original matrix unchanged. Square matrix. Diagonal set of “1” from top left to bottom right, all other elements 0

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

Inverse of 2x2 matrix

A

top row a b, 2nd row cd. Determinant ad-bc, if not 0 then matrix invertible. Swap a and c elements, change sign on b and d ones, 1/det in front of matrix

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

Solve simul eq with matrices

A

Rewrite eq so x + y (in same order) = constant. If no x or y, then 0x or 0y. That is the coefficient matrix. That by vector (x/y) = vector (constant/constant). Find inverse of coefficient matrix including 1/determinant (A^-1). So vector (x/y) A^-1 x vector (constant/constant)

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

Simultaneous linear eq matrix coefficient determinant

A

if det is 0 then no or infinitely many solutions. If not 0 then unique solution

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