brief intro to linear and integer programming
play

Brief Intro to Linear and Integer Programming Marco Chiarandini - PowerPoint PPT Presentation

Brief Intro to Linear and Integer Programming Marco Chiarandini Institut for Matematik og Datalogi (IMADA) Linear Programming Outline Integer Linear Programming 1. Linear Programming Modeling Resource Allocation Diet Problem Solution


  1. Linear Programming The Mathematical Model Integer Linear Programming Parameters (given data) F = set of foods N = set of nutrients a ij = amount of nutrient j in food i , ∀ i ∈ F , ∀ j ∈ N c i = cost per serving of food i , ∀ i ∈ F F mini = minimum number of required servings of food i , ∀ i ∈ F F maxi = maximum allowable number of servings of food i , ∀ i ∈ F N minj = minimum required level of nutrient j , ∀ j ∈ N N maxj = maximum allowable level of nutrient j , ∀ j ∈ N Decision Variables x i = number of servings of food i to purchase/consume, ∀ i ∈ F 17

  2. Linear Programming The Mathematical Model Integer Linear Programming Objective Function: Minimize the total cost of the food � Minimize c i x i i ∈ F 18

  3. Linear Programming The Mathematical Model Integer Linear Programming Objective Function: Minimize the total cost of the food � Minimize c i x i i ∈ F Constraint Set 1: For each nutrient j ∈ N , at least meet the minimum required level � a ij x i ≥ N minj , ∀ j ∈ N i ∈ F 18

  4. Linear Programming The Mathematical Model Integer Linear Programming Objective Function: Minimize the total cost of the food � Minimize c i x i i ∈ F Constraint Set 1: For each nutrient j ∈ N , at least meet the minimum required level � a ij x i ≥ N minj , ∀ j ∈ N i ∈ F Constraint Set 2: For each nutrient j ∈ N , do not exceed the maximum allowable level. � a ij x i ≤ N maxj , ∀ j ∈ N i ∈ F 18

  5. Linear Programming The Mathematical Model Integer Linear Programming Objective Function: Minimize the total cost of the food � Minimize c i x i i ∈ F Constraint Set 1: For each nutrient j ∈ N , at least meet the minimum required level � a ij x i ≥ N minj , ∀ j ∈ N i ∈ F Constraint Set 2: For each nutrient j ∈ N , do not exceed the maximum allowable level. � a ij x i ≤ N maxj , ∀ j ∈ N i ∈ F Constraint Set 3: For each food i ∈ F , select at least the minimum required number of servings x i ≥ F mini , ∀ i ∈ F 18

  6. Linear Programming The Mathematical Model Integer Linear Programming Objective Function: Minimize the total cost of the food � Minimize c i x i i ∈ F Constraint Set 1: For each nutrient j ∈ N , at least meet the minimum required level � a ij x i ≥ N minj , ∀ j ∈ N i ∈ F Constraint Set 2: For each nutrient j ∈ N , do not exceed the maximum allowable level. � a ij x i ≤ N maxj , ∀ j ∈ N i ∈ F Constraint Set 3: For each food i ∈ F , select at least the minimum required number of servings x i ≥ F mini , ∀ i ∈ F Constraint Set 4: For each food i ∈ F , do not exceed the maximum allowable number of servings. x i ≤ F maxi , ∀ i ∈ F 18

  7. Linear Programming The Mathematical Model Integer Linear Programming system of equalities and inequalities � min c i x i i ∈ F � a ij x i ≥ N minj , ∀ j ∈ N i ∈ F � a ij x i ≤ N maxj , ∀ j ∈ N i ∈ F x i ≥ F mini , ∀ i ∈ F x i ≤ F maxi , ∀ i ∈ F 19

  8. Linear Programming Integer Linear Programming ◮ The linear program consisted of 9 equations in 77 variables ◮ Stigler, guessed an optimal solution using a heuristic method ◮ In 1947, the National Bureau of Standards used the newly developed simplex method to solve Stigler’s model. It took 9 clerks using hand-operated desk calculators 120 man days to solve for the optimal solution 20

  9. Linear Programming AMPL Model Integer Linear Programming ✞ ☎ # diet.mod set NUTR; set FOOD; # param cost {FOOD} > 0; param f_min {FOOD} >= 0; param f_max { i in FOOD} >= f_min[i]; param n_min { NUTR } >= 0; param n_max {j in NUTR } >= n_min[j]; param amt {NUTR,FOOD} >= 0; # var Buy { i in FOOD} >= f_min[i], <= f_max[i] # minimize total_cost: sum { i in FOOD } cost [i] * Buy[i]; subject to diet { j in NUTR }: n_min[j] <= sum {i in FOOD} amt[i,j] * Buy[i] <= n_max[i]; ✝ ✆ 21

  10. Linear Programming AMPL Model Integer Linear Programming ✞ ☎ ✞ ☎ # diet.dat param amt (tr): data; A C B1 B2 := BEEF 60 20 10 15 set NUTR := A B1 B2 C ; CHK 8 0 20 20 set FOOD := BEEF CHK FISH HAM MCH MTL SPG FISH 8 10 15 10 TUR; HAM 40 40 35 10 MCH 15 35 15 15 param: cost f_min f_max := MTL 70 30 15 15 BEEF 3.19 0 100 SPG 25 50 25 15 CHK 2.59 0 100 TUR 60 20 15 10 ; ✝ ✆ FISH 2.29 0 100 HAM 2.89 0 100 MCH 1.89 0 100 MTL 1.99 0 100 SPG 1.99 0 100 TUR 2.49 0 100 ; param: n_min n_max := A 700 10000 C 700 10000 B1 700 10000 B2 700 10000 ; # % ✝ ✆ 22

  11. Linear Programming Duality Integer Linear Programming Resource Valuation problem: Determine the value of the raw materials on hand such that: The company must be willing to sell the raw materials should an outside firm offer to buy them at a price consistent with the market 23

  12. Linear Programming Duality Integer Linear Programming Resource Valuation problem: Determine the value of the raw materials on hand such that: The company must be willing to sell the raw materials should an outside firm offer to buy them at a price consistent with the market z i value of a unit of raw material i � m i = 1 b i z i opportunity cost (cost of having instead of selling) ρ i prevailing unit market value of material i σ j prevailing unit product price 23

  13. Linear Programming Duality Integer Linear Programming Resource Valuation problem: Determine the value of the raw materials on hand such that: The company must be willing to sell the raw materials should an outside firm offer to buy them at a price consistent with the market z i value of a unit of raw material i � m i = 1 b i z i opportunity cost (cost of having instead of selling) ρ i prevailing unit market value of material i σ j prevailing unit product price Goal is to minimize the lost opportunity cost m � min b i z i (1) i = 1 z i ≥ ρ i , i = 1 . . . m (2) m � z i a ij ≥ σ j , j = 1 . . . n (3) i = 1 (1) and (2) otherwise contradicting market 23

  14. Linear Programming Integer Linear Programming Let y i = z i − ρ i markup that the company would make by reselling the raw material instead of producing. m � � min y i b i + ρ i b i i = 1 i m � y i a ij ≥ c j , j = 1 . . . n i = 1 y i ≥ 0 , i = 1 . . . m 24

  15. Linear Programming Outline Integer Linear Programming 1. Linear Programming Modeling Resource Allocation Diet Problem Solution Methods Gaussian Elimination Simplex Method 2. Integer Linear Programming Solution Methods Applications Finance 25

  16. Linear Programming Notions of Computer Science Integer Linear Programming Algorithm: a finite, well-defined sequence of operations to perform a calculation 26

  17. Linear Programming Notions of Computer Science Integer Linear Programming Algorithm: a finite, well-defined sequence of operations to perform a calculation Algorithm: LargestNumber Input: A non-empty list of numbers L Output: The largest number in the list L largest ← L[0] L: 2 3 5 1 8 1 4 foreach each item in the list L do if the item > largest then largest ← the item return largest Running time: proportional to number of operations 26

  18. Linear Programming Growth Functions Integer Linear Programming 10 , 000 2 n 8 , 000 n 3 # operations 6 , 000 4 , 000 2 , 000 50 n 0 0 5 10 15 20 n NP-hard problems: bad if we have to solve them, good for cryptology 27

  19. Linear Programming History of Linear Programming (LP) Integer Linear Programming ◮ Origins date back to Newton, Leibnitz, Lagrange, etc. 28

  20. Linear Programming History of Linear Programming (LP) Integer Linear Programming ◮ Origins date back to Newton, Leibnitz, Lagrange, etc. ◮ In 1827, Fourier described a variable elimination method for systems of linear inequalities, today often called Fourier-Moutzkin elimination (Motzkin, 1937). It can be turned into an LP solver but inefficient. 28

  21. Linear Programming History of Linear Programming (LP) Integer Linear Programming ◮ Origins date back to Newton, Leibnitz, Lagrange, etc. ◮ In 1827, Fourier described a variable elimination method for systems of linear inequalities, today often called Fourier-Moutzkin elimination (Motzkin, 1937). It can be turned into an LP solver but inefficient. ◮ In 1932, Leontief (1905-1999) Input-Output model to represent interdependencies between branches of a national economy (1976 Nobel prize) 28

  22. Linear Programming History of Linear Programming (LP) Integer Linear Programming ◮ Origins date back to Newton, Leibnitz, Lagrange, etc. ◮ In 1827, Fourier described a variable elimination method for systems of linear inequalities, today often called Fourier-Moutzkin elimination (Motzkin, 1937). It can be turned into an LP solver but inefficient. ◮ In 1932, Leontief (1905-1999) Input-Output model to represent interdependencies between branches of a national economy (1976 Nobel prize) ◮ In 1939, Kantorovich (1912-1986): Foundations of linear programming (Nobel prize with Koopmans on LP, 1975) 28

  23. Linear Programming History of Linear Programming (LP) Integer Linear Programming ◮ Origins date back to Newton, Leibnitz, Lagrange, etc. ◮ In 1827, Fourier described a variable elimination method for systems of linear inequalities, today often called Fourier-Moutzkin elimination (Motzkin, 1937). It can be turned into an LP solver but inefficient. ◮ In 1932, Leontief (1905-1999) Input-Output model to represent interdependencies between branches of a national economy (1976 Nobel prize) ◮ In 1939, Kantorovich (1912-1986): Foundations of linear programming (Nobel prize with Koopmans on LP, 1975) ◮ The math subfield of Linear Programming was created by George Dantzig, John von Neumann (Princeton), and Leonid Kantorovich in the 1940s. 28

  24. Linear Programming History of Linear Programming (LP) Integer Linear Programming ◮ Origins date back to Newton, Leibnitz, Lagrange, etc. ◮ In 1827, Fourier described a variable elimination method for systems of linear inequalities, today often called Fourier-Moutzkin elimination (Motzkin, 1937). It can be turned into an LP solver but inefficient. ◮ In 1932, Leontief (1905-1999) Input-Output model to represent interdependencies between branches of a national economy (1976 Nobel prize) ◮ In 1939, Kantorovich (1912-1986): Foundations of linear programming (Nobel prize with Koopmans on LP, 1975) ◮ The math subfield of Linear Programming was created by George Dantzig, John von Neumann (Princeton), and Leonid Kantorovich in the 1940s. ◮ In 1947, Dantzig (1914-2005) invented the (primal) simplex algorithm working for the US Air Force at the Pentagon. (program=plan) 28

  25. Linear Programming History of LP (cntd) Integer Linear Programming ◮ In 1958, Integer Programming was born with cutting planes by Gomory and branch and bound 29

  26. Linear Programming History of LP (cntd) Integer Linear Programming ◮ In 1958, Integer Programming was born with cutting planes by Gomory and branch and bound ◮ In 1979, L. Khachain found a new efficient algorithm for linear programming. It was terribly slow. (Ellipsoid method) 29

  27. Linear Programming History of LP (cntd) Integer Linear Programming ◮ In 1958, Integer Programming was born with cutting planes by Gomory and branch and bound ◮ In 1979, L. Khachain found a new efficient algorithm for linear programming. It was terribly slow. (Ellipsoid method) ◮ In 1984, Karmarkar discovered yet another new efficient algorithm for linear programming. It proved to be a strong competitor for the simplex method. (Interior point method) 29

  28. Linear Programming Linear Programming Integer Linear Programming objective func. max / min c T · x c ∈ R n A · x � b A ∈ R m × n , b ∈ R m constraints x ∈ R n , 0 ∈ R n x ≥ 0 Essential features of a Linear program: 1. continuity (later, integrality) 2. linearity � proportionality + additivity 3. certainty of parameters 30

  29. Linear Programming Definition Integer Linear Programming ◮ N natural numbers, Z integer numbers, Q rational numbers, R real numbers ◮ column vector and matrices scalar product: y T x = � n i = 1 y i x i ◮ linear combination x ∈ R k x = � k x 1 ∈ R , . . . , x k ∈ R i = 1 λ i x i λ = ( λ 1 , . . . , λ k ) T ∈ R k 31

  30. Linear Programming Fundamental Theorem of LP Integer Linear Programming Theorem (Fundamental Theorem of Linear Programming) Given: min { c T x | x ∈ P } where P = { x ∈ R n | Ax ≤ b } If P is a bounded polyhedron and not empty and x ∗ is an optimal solution to the problem, then: ◮ x ∗ is an extreme point (vertex) of P, or ◮ x ∗ lies on a face F ⊂ P of optimal solution 35

  31. Linear Programming Fundamental Theorem of LP Integer Linear Programming Theorem (Fundamental Theorem of Linear Programming) Given: min { c T x | x ∈ P } where P = { x ∈ R n | Ax ≤ b } If P is a bounded polyhedron and not empty and x ∗ is an optimal solution to the problem, then: ◮ x ∗ is an extreme point (vertex) of P, or ◮ x ∗ lies on a face F ⊂ P of optimal solution Proof: ◮ assume x ∗ not a vertex of P then ∃ a ball around it still in P . Show that a point in the ball has better cost ◮ if x ∗ is not a vertex then it is a convex combination of vertices. Show that all points are also optimal. 35

  32. Linear Programming Integer Linear Programming Implications: ◮ the optimal solution is at the intersection of hyperplanes supporting halfspaces. ◮ hence finitely many possibilities � n ◮ Solution method: write all inequalities as equalities and solve all � m systems of linear equalities ◮ for each point we need then to check if feasible and if best in cost. ◮ each system is solved by Gaussian elimination 36

  33. Linear Programming Gaussian Elimination Integer Linear Programming 1. Forward elimination reduces the system to triangular (row echelon) form (or degenerate) elementary row operations (or LU decomposition) 2. back substitution Example: 2 x + y − z = 8 ( I ) − 3 x − y + 2 z = − 11 ( II ) − 2 x + y + 2 z = − 3 ( III ) 37

  34. Linear Programming Integer Linear Programming |-----------+---+-----+-----+---| 2 x + y − z = 8 ( I ) | | 2 | 1 | -1 | 8 | 1 1 + 2 y + 2 z = 1 ( II ) | 3/2 I+II | 0 | 1/2 | 1/2 | 1 | | I+III | 0 | 2 | 1 | 5 | + 2 y + 1 z = 5 ( III ) |-----------+---+-----+-----+---| |-----------+---+-----+-----+---| 2 x + y − z = 8 ( I ) | | 2 | 1 | -1 | 8 | 1 1 + 2 y + 2 z = 1 ( II ) | | 0 | 1/2 | 1/2 | 1 | | -4 II+III | 0 | 0 | -1 | 1 | − z = 1 ( III ) |-----------+---+-----+-----+---| 2 x + y − z = 8 ( I ) |---+-----+-----+---| | 2 | 1 | -1 | 8 | 1 1 + 2 y + 2 z = 1 ( II ) | 0 | 1/2 | 1/2 | 1 | − z = 1 ( III ) | 0 | 0 | -1 | 1 | |---+-----+-----+---| x = 2 ( I ) |---+---+---+----| y = 3 ( II ) | 1 | 0 | 0 | 2 | => x=2 | 0 | 1 | 0 | 3 | => y=3 z = − 1 ( III ) | 0 | 0 | 1 | -1 | => z=-1 |---+---+---+----| 38

  35. Linear Programming A Numerical Example Integer Linear Programming n max � c j x j max 6 x 1 + 8 x 2 j = 1 5 x 1 + 10 x 2 ≤ 60 n � a ij x j ≤ b i , i = 1 , . . . , m 4 x 1 + 4 x 2 ≤ 40 j = 1 x 1 , x 2 ≥ 0 x j ≥ 0 , j = 1 , . . . , n � 6 8 � � x 1 � max max c T x x 2 Ax ≤ b x ≥ 0 � 5 10 � � x 1 � � 60 � ≤ 4 4 x 2 40 x ∈ R n , c ∈ R n , A ∈ R m × n , b ∈ R m x 1 , x 2 ≥ 0 39

  36. Linear Programming Standard Form Integer Linear Programming Each linear program can be converted in the form: max c T x Ax ≤ b x ∈ R n c ∈ R n , A ∈ R m × n , b ∈ R m 40

  37. Linear Programming Standard Form Integer Linear Programming Each linear program can be converted in the form: max c T x ◮ if equations, then put two Ax ≤ b constraints, ax ≤ b and ax ≥ b x ∈ R n ◮ if ax ≥ b then − ax ≤ − b c ∈ R n , A ∈ R m × n , b ∈ R m ◮ if min c T x then max ( − c T x ) and then be put in standard (or equational) form max c T x 1. “ = ” constraints Ax = b 2. x ≥ 0 nonnegativity constraints x ≥ 0 3. ( b ≥ 0) x ∈ R n , c ∈ R n , A ∈ R m × n , b ∈ R m 4. max 40

  38. Linear Programming Simplex Method Integer Linear Programming introduce slack variables (or surplus) 5 x 1 + 10 x 2 + x 3 = 60 4 x 1 + 4 x 2 + x 4 = 40 41

  39. Linear Programming Simplex Method Integer Linear Programming introduce slack variables (or surplus) 5 x 1 + 10 x 2 + x 3 = 60 4 x 1 + 4 x 2 + x 4 = 40 � 6 8 � � x 1 � max z = x 2 Canonical std. form: one decision variable is isolated in   x 1 each constraint and does not � � � � 5 10 1 0 x 2 60    = appear in the other constraints   4 4 0 1 x 3 40  or in the obj. func. x 4 x 1 , x 2 , x 3 , x 4 ≥ 0 41

  40. Linear Programming Simplex Method Integer Linear Programming introduce slack variables (or surplus) 5 x 1 + 10 x 2 + x 3 = 60 4 x 1 + 4 x 2 + x 4 = 40 � 6 8 � � x 1 � max z = x 2 Canonical std. form: one decision variable is isolated in   x 1 each constraint and does not � � � � 5 10 1 0 x 2 60    = appear in the other constraints   4 4 0 1 x 3 40  or in the obj. func. x 4 x 1 , x 2 , x 3 , x 4 ≥ 0 It gives immediately a feasible solution: x 1 = 0 , x 2 = 0 , x 3 = 60 , x 4 = 40 Is it optimal? 41

  41. Linear Programming Simplex Method Integer Linear Programming introduce slack variables (or surplus) 5 x 1 + 10 x 2 + x 3 = 60 4 x 1 + 4 x 2 + x 4 = 40 � 6 8 � � x 1 � max z = x 2 Canonical std. form: one decision variable is isolated in   x 1 each constraint and does not � � � � 5 10 1 0 x 2 60    = appear in the other constraints   4 4 0 1 x 3 40  or in the obj. func. x 4 x 1 , x 2 , x 3 , x 4 ≥ 0 It gives immediately a feasible solution: x 1 = 0 , x 2 = 0 , x 3 = 60 , x 4 = 40 Is it optimal? Look at signs in z � if positive then an increase would improve. 41

  42. Linear Programming Simplex Tableau Integer Linear Programming First simplex tableau: x 1 x 2 x 3 x 4 − z b x 3 5 10 1 0 0 60 x 4 4 4 0 1 0 40 6 8 0 0 1 0 43

  43. Linear Programming Simplex Tableau Integer Linear Programming First simplex tableau: we want to reach this new tableau x 1 x 2 x 3 x 4 − z b x 1 x 2 x 3 x 4 − z b x 3 5 10 1 0 0 60 x 3 0 ? 1 ? 0 ? x 4 4 4 0 1 0 40 x 1 1 ? 0 ? 0 ? 6 8 0 0 1 0 0 ? 0 ? 1 ? Pivot operation: 1. Choose pivot: column: one with positive coefficient in obj. func. (to discuss later) row: ratio between coefficient b and pivot column: choose the one with smallest ratio: � b i � θ = min : a is > 0 , θ increase value of entering var. a is i 2. elementary row operations to update the tableau 43

  44. ◮ x 4 leaves the basis, x 1 enters the basis ◮ Divide row pivot by pivot ◮ Send to zero the coefficient in the pivot column of the first row ◮ Send to zero the coefficient of the pivot column in the third (cost) row

  45. ◮ x 4 leaves the basis, x 1 enters the basis ◮ Divide row pivot by pivot ◮ Send to zero the coefficient in the pivot column of the first row ◮ Send to zero the coefficient of the pivot column in the third (cost) row | | x1 | x2 | x3 | x4 | -z | b | |---------------+----+----+----+------+----+-----| | I’=I-5II’ | 0 | 5 | 1 | -5/4 | 0 | 10 | | II’=II/4 | 1 | 1 | 0 | 1/4 | 0 | 10 | |---------------+----+----+----+------+----+-----| | III’=III-6II’ | 0 | 2 | 0 | -6/4 | 1 | -60 |

  46. ◮ x 4 leaves the basis, x 1 enters the basis ◮ Divide row pivot by pivot ◮ Send to zero the coefficient in the pivot column of the first row ◮ Send to zero the coefficient of the pivot column in the third (cost) row | | x1 | x2 | x3 | x4 | -z | b | |---------------+----+----+----+------+----+-----| | I’=I-5II’ | 0 | 5 | 1 | -5/4 | 0 | 10 | | II’=II/4 | 1 | 1 | 0 | 1/4 | 0 | 10 | |---------------+----+----+----+------+----+-----| | III’=III-6II’ | 0 | 2 | 0 | -6/4 | 1 | -60 | From the last row we read: 2 x 2 − 3 / 2 x 4 − z = − 60, that is: z = 60 + 2 x 2 − 3 / 2 x 4 . Since x 2 and x 4 are nonbasic we have z = 60 and x 1 = 10 , x 2 = 0 , x 3 = 10 , x 4 = 0. ◮ Done?

  47. ◮ x 4 leaves the basis, x 1 enters the basis ◮ Divide row pivot by pivot ◮ Send to zero the coefficient in the pivot column of the first row ◮ Send to zero the coefficient of the pivot column in the third (cost) row | | x1 | x2 | x3 | x4 | -z | b | |---------------+----+----+----+------+----+-----| | I’=I-5II’ | 0 | 5 | 1 | -5/4 | 0 | 10 | | II’=II/4 | 1 | 1 | 0 | 1/4 | 0 | 10 | |---------------+----+----+----+------+----+-----| | III’=III-6II’ | 0 | 2 | 0 | -6/4 | 1 | -60 | From the last row we read: 2 x 2 − 3 / 2 x 4 − z = − 60, that is: z = 60 + 2 x 2 − 3 / 2 x 4 . Since x 2 and x 4 are nonbasic we have z = 60 and x 1 = 10 , x 2 = 0 , x 3 = 10 , x 4 = 0. ◮ Done? No! Let x 2 enter the basis

  48. ◮ x 4 leaves the basis, x 1 enters the basis ◮ Divide row pivot by pivot ◮ Send to zero the coefficient in the pivot column of the first row ◮ Send to zero the coefficient of the pivot column in the third (cost) row | | x1 | x2 | x3 | x4 | -z | b | |---------------+----+----+----+------+----+-----| | I’=I-5II’ | 0 | 5 | 1 | -5/4 | 0 | 10 | | II’=II/4 | 1 | 1 | 0 | 1/4 | 0 | 10 | |---------------+----+----+----+------+----+-----| | III’=III-6II’ | 0 | 2 | 0 | -6/4 | 1 | -60 | From the last row we read: 2 x 2 − 3 / 2 x 4 − z = − 60, that is: z = 60 + 2 x 2 − 3 / 2 x 4 . Since x 2 and x 4 are nonbasic we have z = 60 and x 1 = 10 , x 2 = 0 , x 3 = 10 , x 4 = 0. ◮ Done? No! Let x 2 enter the basis | | x1 | x2 | x3 | x4 | -z | b | |--------------+----+----+------+------+----+-----| | I’=I/5 | 0 | 1 | 1/5 | -1/4 | 0 | 2 | | II’=II-I’ | 1 | 0 | -1/5 | 1/2 | 0 | 8 | |--------------+----+----+------+------+----+-----| | III’=III-2I’ | 0 | 0 | -2/5 | -1 | 1 | -64 |

  49. Linear Programming Integer Linear Programming Optimality: The basic solution is optimal when the coefficient of the nonbasic variables (reduced costs) in the corresponding simplex tableau are nonpositive, ie, such that: ¯ c N ≤ 0 45

  50. Linear Programming Graphical Representation Integer Linear Programming x 2 x 1 ? ? 46

  51. Linear Programming Graphical Representation Integer Linear Programming x 2 x 2 x 1 x 1 ? ? ? ? 46

  52. Linear Programming Efficiency of Simplex Method Integer Linear Programming ◮ Trying all points is ≈ 4 m ◮ In practice between 2 m and 3 m iterations ◮ Clairvoyant’s rule: shortest possible sequence of steps Hirsh conjecture O ( n ) but best known n 1 + ln n 49

  53. Linear Programming Outline Integer Linear Programming 1. Linear Programming Modeling Resource Allocation Diet Problem Solution Methods Gaussian Elimination Simplex Method 2. Integer Linear Programming Solution Methods Applications Finance 50

  54. Linear Programming Outline Integer Linear Programming 1. Linear Programming Modeling Resource Allocation Diet Problem Solution Methods Gaussian Elimination Simplex Method 2. Integer Linear Programming Solution Methods Applications Finance 51

  55. Linear Programming Integer Linear Programming Problem Integer Linear Programming max 100 x 1 + 64 x 2 50 x 1 + 31 x 2 ≤ 250 3 x 1 − 2 x 2 ≥ − 4 x 1 , x 2 ∈ Z + 52

  56. Linear Programming Integer Linear Programming Problem Integer Linear Programming max 100 x 1 + 64 x 2 50 x 1 + 31 x 2 ≤ 250 3 x 1 − 2 x 2 ≥ − 4 x 1 , x 2 ∈ Z + 3 x 1 − 2 x 2 + 4 x 2 � feasible region convex but not continuous: Now the optimum can be on the border (vertices) but also internal. x 1 x 1 + 0 . 64 x 2 − 4 50 x 1 + 31 x 2 − 250 52

  57. Linear Programming Integer Linear Programming Problem Integer Linear Programming max 100 x 1 + 64 x 2 50 x 1 + 31 x 2 ≤ 250 LP optimum ( 376 / 193 , 950 / 193 ) 3 x 1 − 2 x 2 ≥ − 4 x 1 , x 2 ∈ Z + 3 x 1 − 2 x 2 + 4 x 2 � feasible region convex but not continuous: Now the optimum can be on the border (vertices) but also internal. x 1 x 1 + 0 . 64 x 2 − 4 50 x 1 + 31 x 2 − 250 52

  58. Linear Programming Integer Linear Programming Problem Integer Linear Programming max 100 x 1 + 64 x 2 50 x 1 + 31 x 2 ≤ 250 LP optimum ( 376 / 193 , 950 / 193 ) 3 x 1 − 2 x 2 ≥ − 4 IP optimum ( 5 , 0 ) x 1 , x 2 ∈ Z + 3 x 1 − 2 x 2 + 4 x 2 � feasible region convex but not continuous: Now the optimum can be on the border (vertices) but also internal. x 1 x 1 + 0 . 64 x 2 − 4 50 x 1 + 31 x 2 − 250 52

  59. Linear Programming Cutting Planes Integer Linear Programming max x 1 + 4 x 2 x 1 + 6 x 2 ≤ 18 x 1 ≤ 3 x 1 , x 2 ≥ 0 x 1 , x 2 integer x 2 x 1 = 3 x 1 + 6 x 2 = 18 x 1 x 1 + 4 x 2 = 2 53

  60. Linear Programming Cutting Planes Integer Linear Programming max x 1 + 4 x 2 x 1 + 6 x 2 ≤ 18 x 1 ≤ 3 x 1 , x 2 ≥ 0 x 1 , x 2 integer x 2 x 1 = 3 x 1 + 6 x 2 = 18 x 1 x 1 + 4 x 2 = 2 53

  61. Linear Programming Cutting Planes Integer Linear Programming max x 1 + 4 x 2 x 1 + 6 x 2 ≤ 18 x 1 ≤ 3 x 1 , x 2 ≥ 0 x 1 , x 2 integer x 2 x 1 = 3 x 1 + 6 x 2 = 18 x 1 + x 2 = 5 x 1 x 1 + 4 x 2 = 2 53

  62. Linear Programming Cutting Planes Integer Linear Programming max x 1 + 4 x 2 x 1 + 6 x 2 ≤ 18 x 1 ≤ 3 x 1 , x 2 ≥ 0 x 1 , x 2 integer x 2 x 1 = 3 x 1 + 6 x 2 = 18 x 1 + x 2 = 5 x 1 x 1 + 4 x 2 = 2 53

  63. Linear Programming Branch and Bound Integer Linear Programming max x 1 + 2 x 2 x 1 + 4 x 2 ≤ 8 4 x 1 + x 2 ≤ 8 x 1 , x 2 ≥ 0 , integer x 2 x 1 + 4 x 2 = 8 x 1 x 1 + 2 x 2 = 1 4 x 1 + x 2 = 8 54

  64. Linear Programming Integer Linear Programming 4 . 8 x 1 ≤ 1 x 1 ≥ 2 x 2 x 2 x 1 = 1 x 1 + 4 x 2 = 8 x 1 + 4 x 2 = 8 x 1 x 1 x 1 + 2 x 2 = 1 x 1 + 2 x 2 = 1 4 x 1 + x 2 = 8 4 x 1 + x 2 = 8 55

  65. Linear Programming Integer Linear Programming 4 . 8 −∞ x 2 ≤ 1 x 1 ≥ 2 x 1 = 2 4 . 5 x 2 = 0 −∞ x 2 ≤ 1 x 2 ≥ 2 x 1 = 1 x 1 = 0 x 2 = 1 x 2 = 2 x 2 x 2 x 1 + 4 x 2 = 8 x 1 + 4 x 2 = 8 x 1 x 1 x 1 + 2 x 2 = 1 x 1 + 2 x 2 = 1 4 x 1 + x 2 = 8 4 x 1 + x 2 = 8 56

  66. Linear Programming Integer Linear Programming 4 . 8 −∞ x 2 ≤ 1 x 1 ≥ 2 x 1 = 2 4 . 5 5 x 2 = 0 −∞ 5 x 2 ≤ 1 x 2 ≥ 2 x 1 = 1 x 1 = 0 3 4 x 2 = 1 3 4 x 2 = 2 x 2 x 2 x 1 + 4 x 2 = 8 x 1 + 4 x 2 = 8 x 1 x 1 x 1 + 2 x 2 = 1 x 1 + 2 x 2 = 1 4 x 1 + x 2 = 8 4 x 1 + x 2 = 8 56

  67. Linear Programming Outline Integer Linear Programming 1. Linear Programming Modeling Resource Allocation Diet Problem Solution Methods Gaussian Elimination Simplex Method 2. Integer Linear Programming Solution Methods Applications Finance 57

  68. Linear Programming Budget Allocation Integer Linear Programming (aka, knapsack problem) There is a budget B available for investments in projects during the coming year and n projects are under consideration, where a j is the cost of project j and c j its expected return. GOAL: chose a set of project such that the budget is not exceeded and the expected return is maximized. Variables x j = 1 if project j is selected and x j = 0 otherwise Objective n � max c j x j j = 1 Constraints � n j = 1 a j x j ≤ B x j ∈ { 0 , 1 }∀ j = 1 , . . . , n 58

  69. Linear Programming Facility Location Integer Linear Programming Given a certain number of regions, where to install a set of fire stations such that all regions are serviced within 8 minutes? For each station the cost of installing the station and which regions it covers are known. Variables: x j = 1 if the center j is selected and x j = 0 otherwise Objective: n � min c j x j j = 1 Constraints: � n j = 1 a ij x j ≥ 1 ∀ i = 1 , . . . , m x j ∈ { 0 , 1 }∀ j = 1 , . . . , n 59

  70. Linear Programming Other Applications of MILP Integer Linear Programming ◮ Energy planning unit commitment (more than 1.000.000 variables of which 300.000 integer) 60

  71. Linear Programming Other Applications of MILP Integer Linear Programming ◮ Energy planning unit commitment (more than 1.000.000 variables of which 300.000 integer) ◮ Scheduling/Timetabling ◮ Examination timetabling/ train timetabling ◮ Manpower Planning ◮ Crew Rostering (airline crew, rail crew, nurses) ◮ Routing ◮ Vehicle Routing Problem (trucks, planes, trains ...) 60

  72. Linear Programming Outline Integer Linear Programming 1. Linear Programming Modeling Resource Allocation Diet Problem Solution Methods Gaussian Elimination Simplex Method 2. Integer Linear Programming Solution Methods Applications Finance 61

  73. Linear Programming Finance Integer Linear Programming In Finance LP can be used: ◮ By a government to design an optimum tax package to achieve some required aim (in particular, an improvement in the balance of payments). ◮ In revenue management, concerned with setting prices for goods at different times in order to maximize revenue. It is particularly applicable to the hotel, catering, airline and train industries. ◮ In portfolio selection 62

  74. Linear Programming Portfolio Selection Integer Linear Programming Given a sum of money to invest, how to spend it among a portfolio of shares and stocks. The objective is to maintain a certain level of risk and to maximize the expected rate of return from the investment. 1400 c jt A B C r jt A B C 1 19.33 8.52 11.84 1 0.01 0.15 0.04 Exchange index 1200 2 19.46 9.89 12.28 2 0.01 0.01 0.00 3 19.75 9.97 12.34 3 -0.03 -0.02 -0.02 1000 4 19.21 9.75 12.12 4 0.03 0.06 -0.02 800 5 19.83 10.34 11.84 5 -0.01 -0.05 0.01 6 19.54 9.87 11.94 6 -0.01 0.02 -0.02 7 19.25 10.09 11.69 7 -0.02 -0.05 -0.01 8 18.83 9.63 11.56 8 0.06 -0.04 0.01 80 9 20.04 9.23 11.62 9 -0.00 0.12 0.02 60 10 19.96 10.43 11.84 10 -0.01 -0.13 0.01 Asset prices 11 19.75 9.19 12.00 11 -0.03 0.02 0.04 40 12 19.12 9.38 12.47 12 -0.01 -0.05 0.12 13 18.91 8.92 14.00 13 0.05 -0.04 0.02 20 14 19.79 8.58 14.25 14 0.00 0.11 0.05 15 19.83 9.55 15.03 15 0.04 0.02 0.12 0.4 0.2 0.0 Asset returns −0.2 −0.4 −0.6 −0.8 0 50 100 150 200 250 300 Time The trend of the Stock Exchange index (top), and the price (middle) and the returns (bottom) of three investments. 63

  75. Linear Programming Portfolio Selection - Modeling Integer Linear Programming Variables: a collection of nonnegative numbers 0 ≤ 0 x j ≤ 1 , j = 1 , . . . , N that divide the capital we want to invest on the stocks j = 1 , . . . , N . 64

  76. Linear Programming Portfolio Selection - Modeling Integer Linear Programming Variables: a collection of nonnegative numbers 0 ≤ 0 x j ≤ 1 , j = 1 , . . . , N that divide the capital we want to invest on the stocks j = 1 , . . . , N . Objective: The return (on each Krone) in the next time period that one would obtain from the investment in a portfolio is � R = x j R j j and the expected return: � E [ R ] = x j E [ R j ] j 64

  77. Linear Programming Portfolio Selection - Modeling Integer Linear Programming Variables: a collection of nonnegative numbers 0 ≤ 0 x j ≤ 1 , j = 1 , . . . , N that divide the capital we want to invest on the stocks j = 1 , . . . , N . Objective: The return (on each Krone) in the next time period that one would obtain from the investment in a portfolio is � R = x j R j j and the expected return: � E [ R ] = x j E [ R j ] j We do not know E [ R j ] � a good guess is that it is like the average from past T R j = 1 E [ R j ] ≈ ˆ � r jt T t = 1 N N T T N 1 r jt = 1 E [ R ] ≈ ˆ � x j ˆ � � � � R = R j = x j x j r jt T T j = 1 j = 1 t = 1 t = 1 j = 1 64

  78. Linear Programming Portfolio Selection - Modeling Integer Linear Programming Constraints: All and only the capital must used: N � x j = 1 j = 1 65

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend