Midterm 1 Flashcards
Consistent system
Has at least one solution
Inconsistent system
Has no solutions
Find orthogonal vector
Dot vectors together, must equal zero
Formula for finding inverse of a 2x2 matrix
(1/det(A)) * [[d, -b], [-c, a]]
Determinant formula (2x2 matrix)
det(A) = ad-bc
Finding inverse of non 2x2 matrix
change matrix to rref, apply same operations to an identity matrix
system has infinitely many solutions
at least one free variable
system has no solution
solution matrix has zero row, but corresponding vector position is non zero [A|b], [0 0 0|3]
system has unique solution
for m*n matrix, rank = n (no zero rows, no free variables)
linear dependence
c1v1+c2v2+c3v3=0, where at least one c is non zero
dot product formula
u*v = u1v1 + u2v2 … + unvn
length of a vector
||u|| = square root(u*u)
projection of u onto v
proj v u = (uv / vv)*v
angle (theta) between nonzero u and v
cos(theta) = (uv) / (||u||||v||)
(AB)^-1 equivalent
B^-1 * A^-1