Core Pure - Matricies Flashcards
What is a matrix?
An array of elements set out in a pair of brackets
How cn you describe the size of a matrix?
By the number of rows and columns
Generally you say the number of rows then columns
What is a row?
The number of lines of horizontal elements
1
2
3
(Rows go down)
What is a column?
The number of vertical lines of elements
1 2 3
(Columns go right)
Give an example of a 2X4 matrix?
What is a square matrix?
A matrix with the same number of rows and columns
Eg 1x1 or 2x2 or 3x3
What is a zero matrix?
A zero matrix is a matrix in which all of the elements are zero
How is a zero matrix denoted?
0
)dbdhdbcwidn odjn ik
What is an identity matrix?
Give an example?
A square matrix where all the elements on the leading diagonal are 1 and the rest are 0
What is something that you dan say about matrices that are the same size?
They are said to be additively confortable
How do you add or subtract matrices?
You just + or - each corresponding element
What needs to be the case for you to be able to add 2 matrices?
They need to be the same size
(They need to be additively confortable)
How can you multiply a matrix by a scale factor?
You just multiply each element by the scale factor
How can you divide a matrix by a scale factor?
You need to multiply by the inverse of that
What is a scale factor?
A number
Eg 1,5, sqr(2), e
What needs to be the case for matrix multiplication?
The n.columns in the first matrix is equal to the n.rows in the second matrix
What size will a matrix be after matrix multiplication?
The same n.rows as the first matrix and the same n.columns of the second matrix
MatA has size: nxm
MatB has size: mxk
What size will MatC have?
nxk
If you CAN multiply MatA with MatB, what can be said about these two matrices?
If AB exists then MatA is said to be multiplicatively confortable with MatB
Multiply these matrices:
What is very important to remember with matrix multiplication?
In general AB doesn’t equal BA
What are the main take aways from matrix multiplication?
In general AB doesn’t equal BA
If AB exists BA doesn’t necessarily exist