Matrices Flashcards
What is a vector?
A Parameter with a magnitude and a directioin
What is a row vector?
[1,2]
What is a column vector?
1
2
How are two vectors summed?
By adding the number together
What is a Matrix?
This is a set of vectors arranged in a square
What are the parameters of the size of a matrix and what do they mean?
M and N
> M is the height
> N is the width
How is matrix addition done?
Add the number in the same position on each vector together.
1 2 + 3 2 = 4 4
2 3 4 1 6 4
How does matrix multiplication work?
By multiplying and summing along rows and collumns
a b + v x = av+by ax+bz
c d c d cv+dy cx+dz
Do matrices have to be the same size to multiply?
No
How is the determinant calculated?
ad-bc
a b ==> ad-bc
c d
What is a unit matrix?
This is a matrix that when multiplied by another matrix has no effect on that matrix. Its values is essentially 1
How is a matrix inverted?
e.g. x^-1 where
x = a b
c d
1/Determinent * | d -b |
| -c a |
What is a singular matrix?
This is a matrix where the determinant is zero
Can a singular matrix be inverted?
No
What is matrix transportation?
This is when the matrix is reordered.
a b c ==> a d
d e f b e
c f