1 / 20

A Randomized Polynomial-Time Simplex Algorithm for Linear Programming by J. Kelner & D. Spielman

A Randomized Polynomial-Time Simplex Algorithm for Linear Programming by J. Kelner & D. Spielman. Course: Advanced Algorithms CSG713, Fall 2008 CCIS Department, Northeastern University Dimitrios Kanoulas. Linear Programming. The form of the LP we will analyze:. Maximize cx

tekli
Download Presentation

A Randomized Polynomial-Time Simplex Algorithm for Linear Programming by J. Kelner & D. Spielman

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. A Randomized Polynomial-Time Simplex Algorithmfor Linear Programmingby J. Kelner & D. Spielman Course: Advanced Algorithms CSG713, Fall 2008 CCIS Department, Northeastern University Dimitrios Kanoulas

  2. Linear Programming The form of the LP we will analyze: Maximize cx Subject to: Ax ≤ b Objective Function (c vector) Constraints where:x and c are two d-size vectors A is a nxd matrix b is a n-size right-hand vector Convex Polyhedron: Set of feasible points P:={x|Ax ≤ b} where: the vertices can be defined by the d constraints Polytope: A bounded Convex Polyhedron

  3. Simplex Method(Intuition) Opt. Starting from a vertex Try to find that vertex that optimizes the objective function • TIME:(given random input constraints) • Worst-Case: exponential Start Thus: An algorithm that uses the Simplex method in worst-case polynomial time is needed. (open problem for 50 years) Solution:Randomization Picture from: commons.wikimedia.org

  4. Main Result A Randomized Polynomial-Time LP Simplex Method • Given a Linear Program, we can randomly perturb it, in such a way that: • We can use (Shadow) Simplex Method to solve this new nearby but different Linear Program • and • The solution of this new Linear Program to be the solution of the starting one. • and • It is polynomial in time w.h.p.

  5. Overview of the Algorithm Reduce the starting LP to a problem of certifying boundednessBoundedness does not depend on RHS vector b, of the constraints Loop: 2. Perturb randomly b vector of constraints andrun shadow-vertex Simplex Method on perturbed polytope to generate certificate of boundedness 3. If it fails in constant number of steps, change the distribution on perturbations and run the algorithm again. TIME: The number of iterations of this loop is polynomial on the bit-length of the input, with high probability (w.h.p.)

  6. Overview of the Algorithm Reduce the starting LP to a problem of certifying boundedness A polyhedron is said to be bounded If the solution set is bounded The problem of determining whether a set of linear constraints defines an unbounded polyhedron or not. Boundedness does not depend on RHS vector b, of the constraints Maximize cx Subject to: Ax ≤ b

  7. Overview of the Algorithm Reduce the starting LP to a problem of certifying boundednessBoundedness does not depend on RHS vector b, of the constraints Loop: 2. Perturb randomly b vector of constraints andrun shadow-vertex Simplex Method on perturbed polytope to generate certificate of boundedness 3. If it fails in constant number of steps, change the distribution on perturbations and run the algorithm again. TIME: The number of iterations of this loop is polynomial on the bit-length of the input, with high probability (w.h.p.)

  8. Shadow of polytope The shadow of a polytope P onto a 2-dimensions plane S is just the projection of P onto S. Create shadow: Every vertex/edge of the shadow’s polygon is the image of a vertex/edge of the polytope P The shadow is a polygon

  9. Shadow of polytope The shadow of a polytope P onto a 2-dimensions plane S is just the projection of P onto S. Idea: Find S such that the set of vertices of P that projects onto the boundary of the shadow polygon, are exactly the vertices of P that optimize the objective function in S. The shadow is a polygon

  10. Shadow-Vertex-Simplex Method Selection of 2-dimensions plane S Input: a starting vertex u0of starting polytope P. Choose some random objective function f optimized at u0. Set S = span(c,f).S is the 2-dimentional subspace which has c and f as bases. Find the shadow of P onto S. S = span(f,c) f (opt. by u0) objective function c Image: BU`sprof. Teng presentation

  11. Shadow-Vertex-Simplex Method 5. Each vertex y on P that projects onto the boundary of the shadow has a unique neighbor on P that projects onto the next vertex of the shadow in clockwise order. 6. Looking all the vertices on P that map to the boundary of the shadow we can move from vertex that optimize fto the vertex that optimize c. u0 opt. f u opt. c or -c

  12. Disadvantage of using the Starting LP Problem: By using the starting LP and the plane S we proposed, we cannot guarantee that: the number of edges of the shadow will be polynomial in size. [There is the possibility to be exponentially large] Solution: Guarantee that the number of edges of the shadow’s boundary will be polynomially large by perturbing the b-vector

  13. Shadow Size(Number of shadow's edges) The real problem is to bound the number of shadow’s edges • 2 cases: • Polytope in k-near-isotropic position • Polytope in non k-near-isotropic position

  14. k-near-isotropic position P is the polytope:Ax≤b k 1

  15. k-near-isotropic position Perturb polytope P: P := {x | for each i: aix ≤ bi} Q := {x | for each i: aix ≤ bi + ri} ri: independent exponentially distributed random variable with expectation λ ( Pr[ri≥t] = e-t/l, t≥0 ) Proof of Poly Size of the shadow • Upper bound of total shadow length (Shadow Size). • Lower bound expected length of each edge. Number of edges of the shadow is poly large w.h.p.

  16. Until Now Starting LP: Perturb b vector: guarantee that the number of edges of the shadow of the new polytope will be polynomially large w.h.p. From the shadow find the vertex that optimizes the objective function c in polynomial number of steps, w.h.p. Maximize cx Subject to: Ax ≤ b

  17. Boundedness Certification Problem P is the polytope:Ax≤b Starting LP Maximize cx Subject to: Ax ≤ b Boundedness Certification Problem B w ≤ b’ B -> A, c, b Dual Reduction Dual LP Minimize by Subject to: ATy = c y≥0 Need feasible x and y: Ax ≤ b ATy = cy≥0 cx = by CombinePrimal & Dual

  18. Boundedness Certification Problem Boundedness Certification Problem B w ≤ b Boundedness independent of b-vector Find certificate of boundedness by minimizing and maximizing the objective function (c)

  19. Summary • Reduce the starting LP to a problem of certifying boundednessBoundedness does not depend on RHS vector b, of the constraints • We choose the correct 2-dimensions plane S: care only about the boundary of the shadow • Perturb randomly b vector: guarantee that the number of edges of the boundary of the shadow is polynomially large, w.h.p. • We can move from a starting vertex of the shadow to this that optimizes c or -c objective function in polynomial number of steps, by doing fixed number of steps. • If it fails in constant number of steps, change the distribution on perturbations and run the algorithm again.

  20. Thank You 11:15, restate my assumptions: Mathematics is the language of nature. Everything around us can be represented and understood through numbers. If you graph these numbers, patterns emerge. Therefore:There are patterns everywhere in nature. (From the movie: π) I have uploaded the presentation on my web site: http://www.ccs.neu.edu/home/dkanou/

More Related