Matrices Flashcards
What do i and j represent in matrices?
i is the row and j is the column.
What is the identity matrix? What is a null matrix?
The identity matrix is a matrix which has 0’s everywhere except diagonally from the top left to bottom right, which are 1’s. The null matrix is just a matrix full of 0’s.
What is the transpose of a matrix?
Where aji = aij, the matrix is symmetric.
What order matrix do you get when you multiply two matrix together?
A matrix with the number of rows equal to that of matrix A and a number of columns equal to that of matrix B.
How do you find the elements of the product of two matrices A and B?
cij = sum from k=1 to number of columns in A or number of rows in B of :aik*bkj
What do you get if you multiply a matrix A by the identity matrix I?
You get the original matrix, A.
What do you get if you multiply a matrix by its inverse?
The identity matrix I.
What is the equation for the inverse of a matrix including minors?
A^-1 = 1/|A| * C(transpose)
where C is the cofactor matrix whose elements are multiplied by (-1)^(i+j)
How do you find the inverse of a 2 by 2 matrix?
- Swap the position of the two leading diagonal elements
- Negate the two off-diagonal elements
- Multiply all by the reciprocal of the determinant of tha matrix
How do you find the inverse of a 3 by 3 matrix?
Find all the minors - this is the cofactor matrix.
How do you solve simultateous equations using the inverse matrix?
Put the equations into a matrix, with one unknown column and one column for the answers. The answers to the simultaneous equation are the inverse of the matrix multiplied by the answers of the equation. (e.g. x+y = 4 - 4 is the answer here)
How do you solve simultaneous equations using determinants?
- Solve the equations to find x and y
- The answers you get should look similar to determinants
- Convert to determinants and rearrange so you have x and y on the top and the determinants as the denominators
How do you solve simultaneous equations using Gaussian elimination?
Use row operations to make a triangle of 0’s in the bottom left corner, starting from the top and working round the corner
What does it mean if, during Gaussian elimination, you get a zero in the bottom right corner (whole bottom row are zeros?
There is no solution to this set of equations.
How do you solve simultaneous equations using row reduced echelon form?
Use row operations until you have the identity matrix. Find zeros in same order, but after bottom left triangle, start from top middle zero and then work round the corner.