finals: sections 9.3 - 2.8 Flashcards

1
Q

what is a slack variable?

A

a nonnegative variable that is added to the smaller side of an inequality to make it an equality

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

what are the steps to solve a linear programming problem using the simplex method?

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

what is an invertible matrix?

A

a nxn (square) matrix is said to be invertible if there is a matrix C such that
AC = I and CA = I

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

how do you find the inverse of a matrix for any matrix?

A

[A I] algorithm

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

how do you find the inverse of a 2x2 matrix?

A

1/(ad-bc)[[d -b],[-c a]]

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

what is another name for a matrix that is not invertible?

A

singular matrix

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

what is another name for a matrix that is invertible?

A

nonsingular matrix

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

what is the determinant of a 2x2 matrix A?

A

det A = ad - bc

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

if A is an invertible matrix, then for each b in R^n, the equation Ax = b has the ________

A

UNIQUE solution x = A^-1b

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

what are the three rules for inverses?

A

(A^-1)^-1 = A
(AB)^-1 = B^-1 * A^-1
(A^T)^-1 = (A^-1)^T

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

an nxn matrix A is invertible if and only if _________

A

A is row equivalent to I

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

what are the statements in the Invertible Matrix Theorem?

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

what is the definition of a factorization?

A

a factorization of a matrix A is an equation that expresses A as the product of two or more matrices

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

what is an upper triangular matrix?

A

the matrix has stuff on the upper triangle, and zeros on the lower triangle (echelon form)
* * * *
0 * * *
0 0 * *
0 0 0 *

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

what is a lower triangular matrix?

A

the matrix has stuff on the lower triangle, and zeros on the upper triangle
* 0 0 0
* * 0 0
* * * 0
* * * *

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

what is the LU factorization?

A

A = LU, where A is an mxn matrix
L is an mxm lower triangular matrix with 1s on the diagonal
U is the mxn echelon form of A

17
Q

how do you find x in the equation Ax = b using LU factorization?

A

1) Ly = b
2) Ux = y

18
Q

what is a subspace in R^n?

A

any set H in R^n that has three properties:
1) the zero vector is in H
2) H is closed under vector addition
3) H is closed under scalar multiplication

19
Q

what is the column space of a matrix?

A

Col A = span{columns of matrix A}

20
Q

what is the null space?

A

Nul A is the set of all solutions of the homogeneous equation Ax = 0

21
Q

a basis for a subspace H of R^n is _________________

A

a linearly independent set in H that spans H

22
Q

what is a subspace spanned by a set?

A

given any subspace H of V, a spanning set for H is a set {v1, …, vp} such that H = span{v1, …,vp}

23
Q

what is row space?

A

Row A = span{rows of A}