• Keine Ergebnisse gefunden

E3. Linear & Integer Programming

N/A
N/A
Protected

Academic year: 2022

Aktie "E3. Linear & Integer Programming"

Copied!
6
0
0

Wird geladen.... (Jetzt Volltext ansehen)

Volltext

(1)

Planning and Optimization

E3. Linear & Integer Programming

Gabriele R¨ oger and Thomas Keller

Universit¨ at Basel

November 14, 2018

G. R¨oger, T. Keller (Universit¨at Basel) Planning and Optimization November 14, 2018 1 / 22

Planning and Optimization

November 14, 2018 — E3. Linear & Integer Programming

E3.1 Examples

E3.2 Linear Programs E3.3 Duality

E3.4 Summary

G. R¨oger, T. Keller (Universit¨at Basel) Planning and Optimization November 14, 2018 2 / 22

E3. Linear & Integer Programming Examples

E3.1 Examples

E3. Linear & Integer Programming Examples

Linear Program: Example Maximization Problem

Example

maximize 2x − 3y + z subject to x + 2y + z ≤ 10

x − z ≤ 0

x ≥ 0, y ≥ 0, z ≥ 0 unique optimal solution:

x = 5, y = 0, z = 5 (objective value 15)

(2)

E3. Linear & Integer Programming Examples

Example: Diet Problem

I n different types of food F 1 , . . . , F n

I m different nutrients N 1 , . . . , N m

I The minimum daily requirement of nutrient N j is r j .

I The amount of nutrient N j in one unit of food F i is a ij .

I One unit of food F i costs c i .

How to supply the required nutrients at minimum cost?

G. R¨oger, T. Keller (Universit¨at Basel) Planning and Optimization November 14, 2018 5 / 22

E3. Linear & Integer Programming Examples

Example: Diet Problem

I Use LP variable x i for the number of units of food F i purchased per day.

I The cost per day is P n i=1 c i x i .

I The amount of nutrient N j in this diet is P n

i=1 a ij x i .

I The minimum daily requirement for each nutrient N j must be met: P n

i=1 a ij x i ≥ r j for 1 ≤ j ≤ m

I We can’t buy negative amounts of food: x i ≥ 0 for 1 ≤ i ≤ n

I We want to minimize the cost of food.

G. R¨oger, T. Keller (Universit¨at Basel) Planning and Optimization November 14, 2018 6 / 22

E3. Linear & Integer Programming Examples

Diet Problem: Linear Program

Example (Linear Program for Diet Problem) minimize P n

i=1 c i x i subject to

n

X

i=1

a ij x i ≥ r j for 1 ≤ j ≤ m

x i ≥ 0 for 1 ≤ i ≤ n

E3. Linear & Integer Programming Linear Programs

E3.2 Linear Programs

(3)

E3. Linear & Integer Programming Linear Programs

Linear Programs and Integer Programs

Linear Program

A linear program (LP) consists of:

I a finite set of real-valued variables V

I a finite set of linear inequalities (constraints) over V

I an objective function, which is a linear combination of V

I which should be minimized or maximized.

Integer program (IP): LP with only integer-valued variables Mixed IP (MIP): LP with some integer-valued variables

G. R¨oger, T. Keller (Universit¨at Basel) Planning and Optimization November 14, 2018 9 / 22

E3. Linear & Integer Programming Linear Programs

Terminology

I A variable assignment is feasible if it satisfies the constraints.

I A linear program is feasible if there is such a feasible assignment. Otherwise it is infeasible.

I A feasible maximization (resp. minimization) problem is unbounded if the objective function can assume arbitrarily large positive (resp. negative) values at feasible assignments.

Otherwise it is bounded.

I The objective value of a bounded feasible maximization (resp. minimization) problem is the maximum (resp.

minimum) value of the objective function with a feasible assignment.

G. R¨oger, T. Keller (Universit¨at Basel) Planning and Optimization November 14, 2018 10 / 22

E3. Linear & Integer Programming Linear Programs

Solving Linear Programs and Integer Programs

Complexity:

I LP solving is a polynomial-time problem.

I Finding solutions for IPs is NP-complete.

Common idea:

I Approximate IP solution with corresponding LP (LP relaxation).

E3. Linear & Integer Programming Linear Programs

LP Relaxation

Theorem (LP Relaxation)

The LP relaxation of an integer program is the problem that arises by removing the requirement that variables are integer-valued.

For a maximization (resp. minimization) problem, the objective value of the LP relaxation is an upper (resp. lower) bound on the value of the IP.

Proof idea.

Every feasible vector for the IP is also feasible for the LP.

(4)

E3. Linear & Integer Programming Duality

E3.3 Duality

G. R¨oger, T. Keller (Universit¨at Basel) Planning and Optimization November 14, 2018 13 / 22

E3. Linear & Integer Programming Duality

Some LP Theory: Duality

Some LP theory: Every LP has an alternative view (its dual LP).

I roughly: variables and constraints swap roles

I roughly: objective coefficients and bounds swap roles

I dual of maximization LP is minimization LP and vice versa

I dual of dual: original LP

G. R¨oger, T. Keller (Universit¨at Basel) Planning and Optimization November 14, 2018 14 / 22

E3. Linear & Integer Programming Duality

Example Maximization Problem

Example

maximize 2x − 3y + z subject to x + 2y + z ≤ 10

x − z ≤ 0

x ≥ 0, y ≥ 0, z ≥ 0

unique optimal solution:

x = 5, y = 0, z = 5 (objective value 15)

E3. Linear & Integer Programming Duality

Dual for Example Maximization Problem

Example

minimize 10a subject to a + b ≥ 2

2a ≥ −3

a − b ≥ 1 a ≥ 0, b ≥ 0 unique optimal solution:

a = 1.5, b = 0.5 (objective value 15)

(5)

E3. Linear & Integer Programming Duality

Dual for Diet Problem

Example (Dual of Linear Program for Diet Problem) maximize P m

j=1 y j r j subject to

m

X

j=1

a ij y j ≤ c i for 1 ≤ i ≤ n

y j ≥ 0 for 1 ≤ j ≤ m

G. R¨oger, T. Keller (Universit¨at Basel) Planning and Optimization November 14, 2018 17 / 22

E3. Linear & Integer Programming Duality

Duality Theorem

Theorem (Duality Theorem)

If a linear program is bounded feasible, then so is its dual, and their objective values are equal.

(Proof omitted.)

The dual provides a different perspective on a problem.

G. R¨oger, T. Keller (Universit¨at Basel) Planning and Optimization November 14, 2018 18 / 22

E3. Linear & Integer Programming Duality

Dual for Diet Problem: Interpretation

Example (Dual of Linear Program for Diet Problem) maximize P m

j=1 y j r j subject to

m

X

j=1

a ij y j ≤ c i for 1 ≤ i ≤ n

y j ≥ 0 for 1 ≤ j ≤ m

Find nutrient prices that maximize total worth of daily nutrients.

The value of nutrients in food F i may not exceed the cost of F i .

E3. Linear & Integer Programming Summary

E3.4 Summary

(6)

E3. Linear & Integer Programming Summary

Summary

I Linear (and integer) programs consist of an objective function that should be maximized or minimized subject to a set of given linear constraints.

I Finding solutions for integer programs is NP-complete.

I LP solving is a polynomial time problem.

I The dual of a maximization LP is a minimization LP and vice versa.

I The dual of a bounded feasible LP has the same objective value.

G. R¨oger, T. Keller (Universit¨at Basel) Planning and Optimization November 14, 2018 21 / 22

E3. Linear & Integer Programming Summary

Further Reading

The slides in this chapter are based on the following excellent tutorial on LP solving:

Thomas S. Ferguson.

Linear Programming – A Concise Introduction.

UCLA, unpublished document available online.

G. R¨oger, T. Keller (Universit¨at Basel) Planning and Optimization November 14, 2018 22 / 22

Referenzen

ÄHNLICHE DOKUMENTE

(resp. minimum) problem is the maximum (resp. minimum) value of the objective function with a feasible assignment. Linear & Integer Programming

The algorithm approximates the optimal solution by solving a sequence of convex and separable subproblems, where a line search procedure with respect to the aug- mented Lagrangian

However, discrimination (largely indirect) plays an important role as well, hindering migrants from performing better or from obtaining jobs which fit their skills. Judging from

Because European funding is more welcome than from the U.S., the EU should resist any Egyptian government attempts to politicise the issue of foreign funding and

Fachbereich Mathematik und Statistik Prof.. Describe explicitly the ordering on R [x] corresponding to each Dedekind cut

To achieve public support, effective and feasible climate policy packages should bundle ambitious measures with visible mitigation costs with policies that compensate citizens

safekeeping. The pynabyte utility DYNASTAT displays your current system configuration. 'The steps described below will change the drive assignrnentsso that you will

The six papers of Chapter 3 concern aspects of variants of the simplex method which take into account through basis factorization the specific block-angular structure of