Week 4 Flashcards

1
Q

What is sensitivity analysis?

A

It deals with questions in the following nature:

  • Is the optimal solution still optimal with new parameter values?
  • Is there a range of parameters values for which the optimal solution found remains optimal?
  • Does the solution found remain feasible with new parameter values?
  • Is there a range of parameter values for which the optimal solution found remains feasible?
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How can we check what changes in the constraints do to our optimal result?

A

We can rewrite the simplex problem to include delta1, delta2, delta3, …..

Then if we just solve the simplex problem, we can see how the optimal changes. Note this formula only holds if the constraints are still met.

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

How to calculate the optimal value, using matrix algebra?

A

B-1 b(bar) = xB

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

How to calculate the optimal value of using a new right hand side?

A

We just compute B-1b(bar) = xB, if this is feasible then we’re done, if not we need to do the dual simplex steps.

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

How to do a dual simplex step?

A
  1. Make the negative value the leaving variable
  2. Apply the minimum ratio test, on the absolue values of the quotient obtained by divinding the reduceed objective coefficients by the coefficients in the row of the learing variable that are negative.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How to determine the interval of one of the constraints for which the solution remains basic feasible?

A
  1. Find B-1
  2. Calculate the following: B-1 b(bar) + B-1 deltai ≥ 0
  3. Solve and find the interval.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How to determine the new reduced objective coefficients, if the values left hand sides change?

A

We can calculate using the following formula:

cBT B-1 Aj - cj + dBT B-1 Aj - dj

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

How to determine the new objective function with changed coefficients?

A

Let d1, d2, … be the changes in coefficients. Then add to the current value the transpose of the vector with the d1, d2, … which are in the left optimal value in the tableau, and mutliply it with the coefficients in the row for every row that is non-zero.

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

When does the new formula for changed coefficients remain feasible?

A

If the values in the objective funcion remain positive.

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

What to do if the solution when changing the coeficients does not remain feasible?

A

Just apply (some) simplex steps.

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

What are ILP?

A

Integer Linear Problems, so they only allow integers.

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

What are binary variables?

A

Variables that can only be 0 or 1.

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

What is a problem with ILP problems?

A

Because only a finite number of variables exist, we need to check them all, and we cannot do it really any faster.

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