matrix
an array of numbers
used to
- represent linear transformations
- solve linear simultaneous equations
dimensions of a matrix
its size
rows then columns
adding/ subtracting matrices
add together the corresponding elements of each matrix
square matrix
same no. rows and columns
zero matrix
all elements are zero
identity matrix I
ones in the leading diagonal
100
010
001
multiplying by I
AI = IA = A
multiplying matrices
star with the first row and column and sum the products of each pair - repeat for next column - then repeat for all the rows
- dimensions have to agree eg 2 2 x 23 = 2*3
raising to power
only square matrices
determinant of a 2*2
a b
c d
det(A) = ad - bc
if = 0 then its singular (no inverse)
if != 0 then its non-singular (has inverse)
inversing a 2*2
a b
c d
A-1 = 1/det(A) (d -b
-c a)
if Ax = y then A-1y = x
AA-1 = I
determinant of a 3*3
a b c
d e f
g h I
det(A) = a(det(efhi) + b(det(fdig) + c(det(degh)
minors matrix
for each element find the determinant of the 2*2 after the row and column with that element have been crossed out
transposing a matrix
where the rows and columns are interchanged (rows become columns columns become rows)
inversing a 3*3
using matrices to solve simultaneous eq
consistency of linear eq
one point of intersection - consistent - 1 solution - non-singular matrix
parallel - inconsistent - no solutions - singular matrix
same line - consistent - infinite solutions - singular matrix
consistency of 3 variable eq
planes meet at one point - consistent - 1 solution
sheaf - consistent - infinite solutions
prism - inconsistent
2 parallel one not - inconsistent
all the same - consistent - infinite solutions