Matrices Flashcards
When given the dimensions of a matrix what order do you get given it e.g a 2x3 matrix?
Rows x Columns
What is the case when adding or subtracting matrices?
You add each term (top left + top left or top right + top right)
Note to add matrices they must have exactly the same dimensions
How do you multiply a matrix by a scalar?
Multiply every element in the matrix by the scalar
How do you multiply matrices?
(top left * top left + top right * bottom left top left * top right + top right * bottom right)
(bottom left * top left + bottom right * bottom left bottom left * top right + bottom right * bottom right)
First term of first matrix * first term of second matric then go across a column in first matrix and down a row in second matrix
First row in first matrix relates to first row in second matrix
Second row in first matrix relates to second row in second matrix
Note to multiply matrices they must have the same number of rows
What is an identity matrix?
I is the identity matrix where the values in the leading diagonal are all 1 and every other value is 0
Note the leading diagonal is top left to bottom right and the matrix must be square
How do you find the determinant of a 2x2 matrix?
top left * bottom right - top right * bottom left = det
How do you multiply modulus of matrices?
|a|*|b| = |ab|
How do you find the inverse of a 2x2 matrix?
Swap the entries in the leading diagonal and make the other entries negative. Then divide the original matrix by its determinant
WHat are some things used to solve matrix equations?
MM-1 = M-1M = I
(M-1)-1 = M
(AB)-1 = B-1A-1
How do you pre multiply to rearrange AB=C for B?
MUltiply both sides (on the furthest left) by A-1
What is the case if a matrix is singular?
det(M) = 0 and no inverse matrix exists
How do you find the determinant of a 3x3 matrix?
Determinant of the matrix by removing the row and column containing the top left element - the same for the next element in the row + the same for the next element in the row
How do you find the inverse of a 3x3 matrix?
- Find the determinant of the matrix
- Find the minor of each element (replace each term with the determinant of the matrix you get from removing the row and column that contain that term)
- Apply the matrix of signs, everything except from the top right to bottom left and top left to bottom right diagonals gets multiplied by -1
- Transpose the matrix (first row becomes first column second row becomes second column and third row becomes third column)
- Divide by the original matrix’s determinant
How can simultaneous equations be represented in matrix form?
(matrix of coefficients (2x2 or 3x3)) * (matrix of variables (1x2 or 1x3)) = constants equations are equal too
The equations literaly just go into each row (term term = constant)
For simultaneous equation matrices if the coefficient matrix has a det of 0 then what is the case?
The equations have 0 or infinite solutions
If the det is not 0 then the equations have a unique solution