integer programming
play

Integer programming Math 482, Lecture 32 Misha Lavrov April 24, - PowerPoint PPT Presentation

Introduction to integer programming Logical constraints Mixing logical and linear constraints Integer programming Math 482, Lecture 32 Misha Lavrov April 24, 2020 Introduction to integer programming Logical constraints Mixing logical and


  1. Introduction to integer programming Logical constraints Mixing logical and linear constraints Integer programming Math 482, Lecture 32 Misha Lavrov April 24, 2020

  2. Introduction to integer programming Logical constraints Mixing logical and linear constraints Integer linear programming Definition An integer linear program is a linear program in which some or all of the variables are constrained to have integer values only.

  3. Introduction to integer programming Logical constraints Mixing logical and linear constraints Integer linear programming Definition An integer linear program is a linear program in which some or all of the variables are constrained to have integer values only. Earlier in this class: bipartite matching. This is an integer program, but total unimodularity saved us and guaranteed integer optimal solutions.

  4. Introduction to integer programming Logical constraints Mixing logical and linear constraints Integer linear programming Definition An integer linear program is a linear program in which some or all of the variables are constrained to have integer values only. Earlier in this class: bipartite matching. This is an integer program, but total unimodularity saved us and guaranteed integer optimal solutions. Total unimodularity is important in integer programming, but doesn’t often happen: usually, the integrality matters.

  5. Introduction to integer programming Logical constraints Mixing logical and linear constraints Integer linear programming Definition An integer linear program is a linear program in which some or all of the variables are constrained to have integer values only. Earlier in this class: bipartite matching. This is an integer program, but total unimodularity saved us and guaranteed integer optimal solutions. Total unimodularity is important in integer programming, but doesn’t often happen: usually, the integrality matters.

  6. Introduction to integer programming Logical constraints Mixing logical and linear constraints Some examples Here is a completely ordinary linear program: maximize x + y x , y ∈ R subject to 3 x + 8 y ≤ 24 3 x − 4 y ≤ 6 x , y ≥ 0 The optimal solution is ( x , y ) = (4 , 3 2 ).

  7. Introduction to integer programming Logical constraints Mixing logical and linear constraints Some examples Now, change x to an integer variable: maximize x + y x ∈ Z , y ∈ R subject to 3 x + 8 y ≤ 24 3 x − 4 y ≤ 6 x , y ≥ 0 The optimal solution is still ( x , y ) = (4 , 3 2 ). Coincidentally, the integrality didn’t matter.

  8. Introduction to integer programming Logical constraints Mixing logical and linear constraints Some examples Now, make x and y both integers: maximize x + y x , y ∈ Z subject to 3 x + 8 y ≤ 24 3 x − 4 y ≤ 6 x , y ≥ 0 The optimal solutions are ( x , y ) = (2 , 2) and ( x , y ) = (3 , 1).

  9. Introduction to integer programming Logical constraints Mixing logical and linear constraints Some examples Now, make x and y both integers: maximize x + y x , y ∈ Z subject to 3 x + 8 y ≤ 24 3 x − 4 y ≤ 6 x , y ≥ 0 The optimal solutions are ( x , y ) = (2 , 2) and ( x , y ) = (3 , 1). Note that rounding (4 , 3 2 ) to the nearest integer won’t give us an optimal or even feasible solution!

  10. Introduction to integer programming Logical constraints Mixing logical and linear constraints Difficulty of approximation Optimal integer solutions can be arbitrarily far from optimal real solutions. Example: take the region � ( x , y ) ∈ R : x − 1 � x 998 ≤ y ≤ 1000 , x ≥ 0 , y ≥ 0 .

  11. Introduction to integer programming Logical constraints Mixing logical and linear constraints Difficulty of approximation Optimal integer solutions can be arbitrarily far from optimal real solutions. Example: take the region � ( x , y ) ∈ R : x − 1 � x 998 ≤ y ≤ 1000 , x ≥ 0 , y ≥ 0 .

  12. Introduction to integer programming Logical constraints Mixing logical and linear constraints Difficulty of approximation Optimal integer solutions can be arbitrarily far from optimal real solutions. Example: take the region � ( x , y ) ∈ R : x − 1 � x 998 ≤ y ≤ 1000 , x ≥ 0 , y ≥ 0 . This has a vertex at ( x , y ) = (500 , 1 2 ). But the only integer points are (0 , 0) and (1 , 0).

  13. Introduction to integer programming Logical constraints Mixing logical and linear constraints Difficulty of approximation Optimal integer solutions can be arbitrarily far from optimal real solutions. Example: take the region � ( x , y ) ∈ R : x − 1 � x 998 ≤ y ≤ 1000 , x ≥ 0 , y ≥ 0 . This has a vertex at ( x , y ) = (500 , 1 2 ). But the only integer points are (0 , 0) and (1 , 0). Even determining if a region contains any integer points can be difficult.

  14. Introduction to integer programming Logical constraints Mixing logical and linear constraints Logical constraints Logical expressions have Boolean variables with values TRUE and FALSE .

  15. Introduction to integer programming Logical constraints Mixing logical and linear constraints Logical constraints Logical expressions have Boolean variables with values TRUE and FALSE . They are combined with logical operations:

  16. Introduction to integer programming Logical constraints Mixing logical and linear constraints Logical constraints Logical expressions have Boolean variables with values TRUE and FALSE . They are combined with logical operations: X 1 AND X 2 = TRUE when X 1 = X 2 = TRUE , and FALSE otherwise.

  17. Introduction to integer programming Logical constraints Mixing logical and linear constraints Logical constraints Logical expressions have Boolean variables with values TRUE and FALSE . They are combined with logical operations: X 1 AND X 2 = TRUE when X 1 = X 2 = TRUE , and FALSE otherwise. X 1 OR X 2 = TRUE when at least one of X 1 , X 2 is TRUE , and FALSE otherwise.

  18. Introduction to integer programming Logical constraints Mixing logical and linear constraints Logical constraints Logical expressions have Boolean variables with values TRUE and FALSE . They are combined with logical operations: X 1 AND X 2 = TRUE when X 1 = X 2 = TRUE , and FALSE otherwise. X 1 OR X 2 = TRUE when at least one of X 1 , X 2 is TRUE , and FALSE otherwise. NOT ( TRUE ) = FALSE and NOT ( FALSE ) = TRUE .

  19. Introduction to integer programming Logical constraints Mixing logical and linear constraints Logical constraints Logical expressions have Boolean variables with values TRUE and FALSE . They are combined with logical operations: X 1 AND X 2 = TRUE when X 1 = X 2 = TRUE , and FALSE otherwise. X 1 OR X 2 = TRUE when at least one of X 1 , X 2 is TRUE , and FALSE otherwise. NOT ( TRUE ) = FALSE and NOT ( FALSE ) = TRUE . We can use these to express logic puzzles such as Sudoku,

  20. Introduction to integer programming Logical constraints Mixing logical and linear constraints Logical constraints Logical expressions have Boolean variables with values TRUE and FALSE . They are combined with logical operations: X 1 AND X 2 = TRUE when X 1 = X 2 = TRUE , and FALSE otherwise. X 1 OR X 2 = TRUE when at least one of X 1 , X 2 is TRUE , and FALSE otherwise. NOT ( TRUE ) = FALSE and NOT ( FALSE ) = TRUE . We can use these to express logic puzzles such as Sudoku, but also combinatorial problems such as bipartite matching,

  21. Introduction to integer programming Logical constraints Mixing logical and linear constraints Logical constraints Logical expressions have Boolean variables with values TRUE and FALSE . They are combined with logical operations: X 1 AND X 2 = TRUE when X 1 = X 2 = TRUE , and FALSE otherwise. X 1 OR X 2 = TRUE when at least one of X 1 , X 2 is TRUE , and FALSE otherwise. NOT ( TRUE ) = FALSE and NOT ( FALSE ) = TRUE . We can use these to express logic puzzles such as Sudoku, but also combinatorial problems such as bipartite matching, graph coloring, and more.

  22. Introduction to integer programming Logical constraints Mixing logical and linear constraints Boolean satisfiability Boolean satisfiability: the problem of determining if we can assign variables to Boolean variables X 1 , . . . , X n to make a logical expression true.

  23. Introduction to integer programming Logical constraints Mixing logical and linear constraints Boolean satisfiability Boolean satisfiability: the problem of determining if we can assign variables to Boolean variables X 1 , . . . , X n to make a logical expression true. (Example: does this Sudoku have a solution? Does this graph have a matching that covers all the vertices?)

  24. Introduction to integer programming Logical constraints Mixing logical and linear constraints Boolean satisfiability Boolean satisfiability: the problem of determining if we can assign variables to Boolean variables X 1 , . . . , X n to make a logical expression true. (Example: does this Sudoku have a solution? Does this graph have a matching that covers all the vertices?) This is very hard: we can solve the problem by checking all 2 n assignments of ( X 1 , . . . , X n ), but we don’t even know if there’s an algorithm that takes O (1 . 999 n ) steps.

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