finals: sections 9.3 - 2.8 Flashcards
what is a slack variable?
a nonnegative variable that is added to the smaller side of an inequality to make it an equality
what are the steps to solve a linear programming problem using the simplex method?
1) restate the original problem using slack variables
2) write the augmented matrix of the equalities made in step 1
3) identify which variable to change: it is the one that has the largest negative coefficient in the augmented matrix. which one should go? look at the ratios of the largest coefficient over the coefficient of the variables that are nonzero and choose the smallest one
4) perform row operations to to get a one in the variable that we changed and zeros in the rest of that column
5) repeat the process until all coefficients in the M equation are negative, then that is the optimal solution
what is an invertible matrix?
a nxn (square) matrix is said to be invertible if there is a matrix C such that
AC = I and CA = I
how do you find the inverse of a matrix for any matrix?
[A I] algorithm
how do you find the inverse of a 2x2 matrix?
1/(ad-bc)[[d -b],[-c a]]
what is another name for a matrix that is not invertible?
singular matrix
what is another name for a matrix that is invertible?
nonsingular matrix
what is the determinant of a 2x2 matrix A?
det A = ad - bc
if A is an invertible matrix, then for each b in R^n, the equation Ax = b has the ________
UNIQUE solution x = A^-1b
what are the three rules for inverses?
(A^-1)^-1 = A
(AB)^-1 = B^-1 * A^-1
(A^T)^-1 = (A^-1)^T
an nxn matrix A is invertible if and only if _________
A is row equivalent to I
what are the statements in the Invertible Matrix Theorem?
a. A is an invertible matrix.
b. A is row equivalent to the n n identity matrix.
c. A has n pivot positions.
d. The equation Ax D 0 has only the trivial solution.
e. The columns of A form a linearly independent set.
f. The linear transformation x 7! Ax is one-to-one.
g. The equation Ax D b has at least one solution for each b in R^n
h. The columns of A span R^n
i. The linear transformation x 7! Ax maps R^n onto R^n
j. There is an nxn matrix C such that CA = I .
k. There is an nxn matrix D such that AD = I
l. A^T is an invertible matrix
what is the definition of a factorization?
a factorization of a matrix A is an equation that expresses A as the product of two or more matrices
what is an upper triangular matrix?
the matrix has stuff on the upper triangle, and zeros on the lower triangle (echelon form)
* * * *
0 * * *
0 0 * *
0 0 0 *
what is a lower triangular matrix?
the matrix has stuff on the lower triangle, and zeros on the upper triangle
* 0 0 0
* * 0 0
* * * 0
* * * *