cs675 convex and combinatorial optimization fall 2019 the
play

CS675: Convex and Combinatorial Optimization Fall 2019 The Simplex - PowerPoint PPT Presentation

CS675: Convex and Combinatorial Optimization Fall 2019 The Simplex Algorithm Instructor: Shaddin Dughmi Algorithms for Convex Optimization We will look at 2 algorithms in detail: Simplex and Ellipsoid. If there is time, we might also look at


  1. CS675: Convex and Combinatorial Optimization Fall 2019 The Simplex Algorithm Instructor: Shaddin Dughmi

  2. Algorithms for Convex Optimization We will look at 2 algorithms in detail: Simplex and Ellipsoid. If there is time, we might also look at interior point methods (e.g. gradient descent and variants). These are important in practice.

  3. History and Basics of the Simplex Algorithm First methodical procedure for solving linear programs Developed by George Dantzig in 1947 Considered one of the most influential algorithms of the 20th century

  4. History and Basics of the Simplex Algorithm First methodical procedure for solving linear programs Developed by George Dantzig in 1947 Considered one of the most influential algorithms of the 20th century Really a family of algorithms, parametrized by a “pivot rule”

  5. History and Basics of the Simplex Algorithm First methodical procedure for solving linear programs Developed by George Dantzig in 1947 Considered one of the most influential algorithms of the 20th century Really a family of algorithms, parametrized by a “pivot rule” Efficient in practice, leading to conjectures that it runs in polynomial time In 1972, Klee and Minty exhibited worst-case examples that take exponential time, at least for some of the most popular simplex pivot rules

  6. History and Basics of the Simplex Algorithm First methodical procedure for solving linear programs Developed by George Dantzig in 1947 Considered one of the most influential algorithms of the 20th century Really a family of algorithms, parametrized by a “pivot rule” Efficient in practice, leading to conjectures that it runs in polynomial time In 1972, Klee and Minty exhibited worst-case examples that take exponential time, at least for some of the most popular simplex pivot rules This spurred development of the Ellipsoid method, interior point methods, . . .

  7. Outline Description of The Simplex Algorithm 1 Properties 2 Initialization 3

  8. Linear Programming We consider a standard form LP written as follows for convenience maximize c ⊺ x subject to Ax � b We use n to denote the number of variables, and m to denote the number of constraints. Description of The Simplex Algorithm 3/12

  9. Linear Programming We consider a standard form LP written as follows for convenience maximize c ⊺ x subject to Ax � b We use n to denote the number of variables, and m to denote the number of constraints. Recall: optimal occurs at a vertex and corresponds to n linearly-independent tight inequalities Description of The Simplex Algorithm 3/12

  10. Linear Programming We consider a standard form LP written as follows for convenience maximize c ⊺ x subject to Ax � b We use n to denote the number of variables, and m to denote the number of constraints. Recall: optimal occurs at a vertex and corresponds to n linearly-independent tight inequalities We assume we are given a starting vertex x 0 as input, and want to compute optimal vertex x ∗ This is Phase II Phase I, finding an initial vertex, involves solving another LP . We will come back to this at the end. Description of The Simplex Algorithm 3/12

  11. Linear Programming We consider a standard form LP written as follows for convenience maximize c ⊺ x subject to Ax � b We use n to denote the number of variables, and m to denote the number of constraints. Recall: optimal occurs at a vertex and corresponds to n linearly-independent tight inequalities We assume we are given a starting vertex x 0 as input, and want to compute optimal vertex x ∗ This is Phase II Phase I, finding an initial vertex, involves solving another LP . We will come back to this at the end. Degeneracy: a vertex with > n tight inequalities We will mostly assume this away to save ourselves a headache Description of The Simplex Algorithm 3/12

  12. Linear Programming We consider a standard form LP written as follows for convenience minimize y ⊺ b maximize c ⊺ x subject to y ⊺ A = c ⊺ subject to Ax � b y � 0 We use n to denote the number of variables, and m to denote the number of constraints. Recall: optimal occurs at a vertex and corresponds to n linearly-independent tight inequalities We assume we are given a starting vertex x 0 as input, and want to compute optimal vertex x ∗ This is Phase II Phase I, finding an initial vertex, involves solving another LP . We will come back to this at the end. Degeneracy: a vertex with > n tight inequalities We will mostly assume this away to save ourselves a headache Incidentally, algorithm will produce optimal dual y ∗ as well. Description of The Simplex Algorithm 3/12

  13. Recall: Physical Interpretation of LP Apply force field c to a ball inside bounded polytope Ax � b . Description of The Simplex Algorithm 4/12

  14. Recall: Physical Interpretation of LP Apply force field c to a ball inside bounded polytope Ax � b . Eventually, ball will come to rest against the walls of the polytope. Description of The Simplex Algorithm 4/12

  15. Recall: Physical Interpretation of LP Apply force field c to a ball inside bounded polytope Ax � b . Eventually, ball will come to rest against the walls of the polytope. Wall a i x ≤ b i applies some force − y i a i to the ball for some y i ≥ 0 Description of The Simplex Algorithm 4/12

  16. Recall: Physical Interpretation of LP Apply force field c to a ball inside bounded polytope Ax � b . Eventually, ball will come to rest against the walls of the polytope. Wall a i x ≤ b i applies some force − y i a i to the ball for some y i ≥ 0 Since the ball is still, c T = � i y i a i = y T A . Description of The Simplex Algorithm 4/12

  17. Recall: Physical Interpretation of LP Apply force field c to a ball inside bounded polytope Ax � b . Eventually, ball will come to rest against the walls of the polytope. Wall a i x ≤ b i applies some force − y i a i to the ball for some y i ≥ 0 Since the ball is still, c T = � i y i a i = y T A . At optimality, only the walls adjacent to the ball push (Complementary Slackness) Necessary and sufficient for optimality, given dual-feasible y Description of The Simplex Algorithm 4/12

  18. Informal Description Starts at initial vertex x = x 0 While x is not optimal, move to a neighbouring vertex x ′ with cx ′ > cx . Description of The Simplex Algorithm 5/12

  19. Informal Description Starts at initial vertex x = x 0 While x is not optimal, move to a neighbouring vertex x ′ with cx ′ > cx . Either c is in the cone defined by tight constraints at x , in which case x is optimal by complementary slackness Or else can improve cx by moving along an edge (1-d face) Description of The Simplex Algorithm 5/12

  20. Simplex Method Input: vertex x = x 0 Output: Optimal vertex x ∗ and complementary dual y ∗ , or unbounded Repeat the following: Write c ⊺ = y ⊺ A , where y i � = 0 only for n tight constraints a i x = b i . 1 If y � 0 then stop and return ( x, y ) , else 2 Choose i with y i < 0 , and let � d be s.t. A T \{ i } d = 0 and a i d = − 1 . 3 If x + λd feasible for all λ ≥ 0 , stop and return unbounded , else 4 x ← x + λd , for largest λ ≥ 0 maintaining feasibility 5 Description of The Simplex Algorithm 6/12

  21. Simplex Method Input: vertex x = x 0 Output: Optimal vertex x ∗ and complementary dual y ∗ , or unbounded Repeat the following: Write c ⊺ = y ⊺ A , where y i � = 0 only for n tight constraints a i x = b i . 1 If y � 0 then stop and return ( x, y ) , else 2 Choose i with y i < 0 , and let � d be s.t. A T \{ i } d = 0 and a i d = − 1 . 3 If x + λd feasible for all λ ≥ 0 , stop and return unbounded , else 4 x ← x + λd , for largest λ ≥ 0 maintaining feasibility 5 Let T be set of n linearly independent rows which are tight at x . y ⊺ T A T = c ⊺ Gaussian elimination Description of The Simplex Algorithm 6/12

  22. Simplex Method Input: vertex x = x 0 Output: Optimal vertex x ∗ and complementary dual y ∗ , or unbounded Repeat the following: Write c ⊺ = y ⊺ A , where y i � = 0 only for n tight constraints a i x = b i . 1 If y � 0 then stop and return ( x, y ) , else 2 Choose i with y i < 0 , and let � d be s.t. A T \{ i } d = 0 and a i d = − 1 . 3 If x + λd feasible for all λ ≥ 0 , stop and return unbounded , else 4 x ← x + λd , for largest λ ≥ 0 maintaining feasibility 5 y is a dual satisfying complementary slackness with x Therefore both are optimal Description of The Simplex Algorithm 6/12

  23. Simplex Method Input: vertex x = x 0 Output: Optimal vertex x ∗ and complementary dual y ∗ , or unbounded Repeat the following: Write c ⊺ = y ⊺ A , where y i � = 0 only for n tight constraints a i x = b i . 1 If y � 0 then stop and return ( x, y ) , else 2 Choose i with y i < 0 , and let � d be s.t. A T \{ i } d = 0 and a i d = − 1 . 3 If x + λd feasible for all λ ≥ 0 , stop and return unbounded , else 4 x ← x + λd , for largest λ ≥ 0 maintaining feasibility 5 Chosen so that moving in direction d preserves tightness of constraints T \ { i } , and loosens constraint i . A T is full-rank, therefore null ( A T \{ i } ) is a 1-dimensional subspace which is not normal to a i Choose d ∈ null ( A T \{ i } ) appropriately. Moving in direction d improves objective: c ⊺ d = y ⊺ Ad = y i a i d > 0 Description of The Simplex Algorithm 6/12

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