CS 372: Computational Geometry Lecture 10 Linear Programming in Fixed Dimension

Size: px
Start display at page:

Download "CS 372: Computational Geometry Lecture 10 Linear Programming in Fixed Dimension"

Transcription

1 CS 372: Computational Geometry Lecture 10 Linear Programming in Fixed Dimension Antoine Vigneron King Abdullah University of Science and Technology November 7, 2012 Antoine Vigneron (KAUST) CS 372 Lecture 9 November 7, / 48

2 1 Introduction 2 One dimensional case 3 Two-dimensional linear programming 4 Generalization to higher dimension Antoine Vigneron (KAUST) CS 372 Lecture 9 November 7, / 48

3 Outline This lecture is on linear programming. Special case: fixed dimension. It means d = O(1) variables. Even without this restriction, there are polynomial-time algorithms. For any fixed dimension, we give a simple linear-time algorithm. Reference: Textbook Chapter 4. Dave Mount s lecture notes, lectures Antoine Vigneron (KAUST) CS 372 Lecture 9 November 7, / 48

4 Example A factory can make two types of products: X and Y A product of type X requires 10 hours of manpower, 4l of oil, and 5m 3 of storage. A product of type Y requires 8 hours, 2l of oil and 10m 3 storage. A product X can be sold $200 and a product Y can be sold $250. You have 168 hours of manpower available, as well as 60l of oil and 150m 3 of storage. How many products of each type should you make so as to maximize their total price? Antoine Vigneron (KAUST) CS 372 Lecture 9 November 7, / 48

5 Formulation x and y denote the number of products of type X and Y, respectively. Maximize the price under the constraints f (x, y) = 200x + 250y x 0 y 0 10x + 8y 168 4x + 2y 60 5x + 10y 150. Antoine Vigneron (KAUST) CS 372 Lecture 9 November 7, / 48

6 Geometric Interpretation 4x + 2y = 60 f (x, y) = constant Feasible region 10x + 8y = 168 5x + 10y = 150 Antoine Vigneron (KAUST) CS 372 Lecture 9 November 7, / 48

7 Geometric Interpretation 4x + 2y = 60 optimal (x, y) 10x + 8y = 168 5x + 10y = 150 f (x, y) = constant Antoine Vigneron (KAUST) CS 372 Lecture 9 November 7, / 48

8 Solution From previous slide, at the optimum: x = 8 y = 11. Luckily these are integers. So it is the solution to our problem. If we add the constraint that all variables are integers, we are doing integer programming. We do not deal with it in CS 372. We consider only linear inequalities, no other constraint. Our example was a special case where the linear program has an integer solution, hence it is also a solution to the integer program. Antoine Vigneron (KAUST) CS 372 Lecture 9 November 7, / 48

9 Problem Statement Maximize the objective function under the constraints f (x 1, x 2... x d ) = c 1 x 1 + c 2 x c d x d a 1,1 x a 1,d x d b 1 a 2,1 x a 2,d x d b 2... a n,1 x a n,d x d b n This is linear programming in dimension d. Equivalently, the goal could be to minimize f. Antoine Vigneron (KAUST) CS 372 Lecture 9 November 7, / 48

10 Geometric Interpretation Each constraint represents a half-space in R d. The intersection of these half-spaces forms the feasible region. The feasible region is a convex polyhedron in R d. feasible region a constraint Antoine Vigneron (KAUST) CS 372 Lecture 9 November 7, / 48

11 Convex Polyhedra Definition (Convex polyhedron) A convex polyhedron is an intersection of half spaces in R d. May also be called convex polytope. A convex polyhedron is not necessarily bounded. Special case: A convex polygon is a a bounded, convex polytope in R 2. Antoine Vigneron (KAUST) CS 372 Lecture 9 November 7, / 48

12 Convex Polyhedra in R 3 a tetrahedron a cube a cone Faces of a convex polyhedron in R 3 : Vertices, edges and facets. Example: A cube has 8 vertices, 12 edges and 6 facets. Antoine Vigneron (KAUST) CS 372 Lecture 9 November 7, / 48

13 Geometric Interpretation Let c = (c 1, c 2,... c d ). We want to find a point v opt of the feasible region such that c is an outer normal at v opt, if there is one. c v opt Feasible region Antoine Vigneron (KAUST) CS 372 Lecture 9 November 7, / 48

14 Infeasible Linear Programs The feasible region may be empty. In this case there is no solution to the linear program. The program is said to be infeasible. We would like to know when it is the case. Antoine Vigneron (KAUST) CS 372 Lecture 9 November 7, / 48

15 Unbounded Linear Programs The feasible region may be unbounded in the direction of c. In this case, we say that the linear program is unbounded. Then we want to find a ray ρ in the feasible region along which f takes arbitrarily large values. ρ Feasible region c Antoine Vigneron (KAUST) CS 372 Lecture 9 November 7, / 48

16 Degenerate Cases A linear program may have an infinite number of optimal solutions. f (x, y) = opt c In this case, we report only one solution. Antoine Vigneron (KAUST) CS 372 Lecture 9 November 7, / 48

17 Background Many optimization problems in engineering, operations research, and economics are linear programs. A practical algorithm: The simplex algorithm. Exponential time in the worst case. There are polynomial time algorithms. Interior point methods. Integer programming is NP-hard. Antoine Vigneron (KAUST) CS 372 Lecture 9 November 7, / 48

18 Background Computational geometry techniques give good algorithms in low dimension. Running time is O(n) when d is constant. But exponential in d: Time O(3 d2 n). This lecture: Seidel s algorithm. Simple, randomized. Expected running time O(d!n). This is O(n) when d = O(1) In practice, very good for low dimension. Antoine Vigneron (KAUST) CS 372 Lecture 9 November 7, / 48

19 One dimensional case Maximize the objective function f (x) = cx under the constraints a 1 x b 1 a 2 x b 2.. a n x b n Antoine Vigneron (KAUST) CS 372 Lecture 9 November 7, / 48

20 Interpretation If a i > 0 then constraint i corresponds to the interval (, b ] i. a i If a i < 0 then constraint i corresponds to the interval [ ) bi,. a i The feasible region is an intersection of intervals. So the feasible region is an interval. Antoine Vigneron (KAUST) CS 372 Lecture 9 November 7, / 48

21 Interpretation a 1 > 0 b 1 /a 1 a 2 < 0 b 2 /a 2 L feasible region R R Antoine Vigneron (KAUST) CS 372 Lecture 9 November 7, / 48

22 Algorithm Case 1: (i 1, i 2 ) such that a i1 < 0 < a i2. Compute Compute It takes O(n) time. b i R = min. a i >0 a i b i L = max. a i <0 a i If L > R then the program in infeasible. Otherwise If c > 0 then the solution is x = R. If c < 0 then the solution is x = L. Antoine Vigneron (KAUST) CS 372 Lecture 9 November 7, / 48

23 Algorithm Case 2: a i > 0 for all i. Compute R = min b i a i. If c > 0 then the solution is x = R. If c < 0 then the program is unbounded and the ray (, R] is a solution. Case 3: a i < 0 for all i. Compute L = max b i a i. If c < 0 then the solution is x = L. If c > 0 then the program is unbounded and the ray [L, ) is a solution. Antoine Vigneron (KAUST) CS 372 Lecture 9 November 7, / 48

24 Two-Dimensional Linear Programming First approach: Compute the feasible region. In O(n log n) time by divide and conquer+plane sweep. Other method: see later, lecture on duality. The feasible region is a convex polyhedron. Find an optimal point. Can be done in O(log n) time. Overall, it is O(n log n) time. This lecture: An expected O(n)-time algorithm. Antoine Vigneron (KAUST) CS 372 Lecture 9 November 7, / 48

25 Preliminary We only consider bounded linear programs. We make sure that our linear program is bounded by enforcing two additional constraints m 1 and m 2. Objective function: f (x, y) = c1 x + c 2 y Let M be a large number. If c1 0 then m 1 is x M. If c 1 0 then m 1 is x M. If c 2 0 then m 2 is y M. If c2 0 then m 2 is y M. In practice, it often comes naturally. For instance, in our first example, it is easy to see that M = 30 is sufficient. Antoine Vigneron (KAUST) CS 372 Lecture 9 November 7, / 48

26 New constraints y M m 2 c m 1 M x Antoine Vigneron (KAUST) CS 372 Lecture 9 November 7, / 48

27 Notation The i th constraint is: It defines a half-plane h i. a i,1 x + a i,2 y b i. l i h i Let l i denote the line that bounds h i. Antoine Vigneron (KAUST) CS 372 Lecture 9 November 7, / 48

28 Algorithm A randomized incremental algorithm. We first compute a random permutation of the constraints (h 1, h 2... h n ). We denote H i = {m 1, m 2, h 1, h 2... h i }. We denote by v i a vertex of H i that maximizes the objective function. In other words, v i is a solution to the linear program where we only consider the first i constraints. v0 is simply the vertex of the boundary of m 1 m 2. Idea: knowing v i 1, we insert h i and find v i. Antoine Vigneron (KAUST) CS 372 Lecture 9 November 7, / 48

29 Example m 1 v 0 m 2 c f (x, y) = constant Feasible region Antoine Vigneron (KAUST) CS 372 Lecture 9 November 7, / 48

30 Example v 1 m 1 m 2 c f (x, y) = f (v 1 ) Feasible region h 1 Antoine Vigneron (KAUST) CS 372 Lecture 9 November 7, / 48

31 Example v 2 = v 1 m 1 m 2 c Feasible region h 2 f (x, y) = f (v 2 ) h 1 Antoine Vigneron (KAUST) CS 372 Lecture 9 November 7, / 48

32 Example m 1 h 3 m 2 v 3 c h 2 Feasible region f (x, y) = f (v 3 ) h 1 Antoine Vigneron (KAUST) CS 372 Lecture 9 November 7, / 48

33 Example m 1 h 3 m 2 v 4 = v 3 c h 4 h 2 Feasible region f (x, y) = f (v 4 ) h 1 Antoine Vigneron (KAUST) CS 372 Lecture 9 November 7, / 48

34 Algorithm Randomized incremental algorithm. Before inserting h i, we only assume that we know v i 1. How can we find v i? Antoine Vigneron (KAUST) CS 372 Lecture 9 November 7, / 48

35 First Case First case: v i 1 h i. h i v i 1 c Feasible region Then v i = v i 1. Proof? Antoine Vigneron (KAUST) CS 372 Lecture 9 November 7, / 48

36 Second Case Second case: v i 1 h i. v i 1 c Feasible region for H i 1 l i h i Then v i 1 is not in the feasible region of H i. So v i v i 1. What do we know about v i? Antoine Vigneron (KAUST) CS 372 Lecture 9 November 7, / 48

37 Second Case There exists an optimal solution v i l i. c v i Feasible region for H i 1 l i h i Proof? How can we find v i? Antoine Vigneron (KAUST) CS 372 Lecture 9 November 7, / 48

38 Second Case Assume that a i,2 0, then the equation of l i is We replace y with b i a i,1 x a i,2 objective function. y = b i a i,1 x a i,2. in all the constraints of H i and in the We obtain a one dimensional linear program, with variable x. If it is feasible, its solution gives us the x-coordinate of v i. We obtain the y-coordinate using the equation of l i. If this linear program is infeasible, then the original 2D linear program is infeasible too and we are done. Antoine Vigneron (KAUST) CS 372 Lecture 9 November 7, / 48

39 Analysis First case is done in O(1) time: Just check whether v i 1 h i. Second case in O(i) time: One dimensional linear program with i + 2 constraints. So the algorithm runs in O(n 2 ) time. Is there a worst case example where it runs in Ω(n 2 ) time? What is the expected running time? We need to know how often the second case happens. We define the random variable X i. Xi = 0 in first case (v i = v i 1 ). Xi = 1 in second case (v i v i 1 ). Antoine Vigneron (KAUST) CS 372 Lecture 9 November 7, / 48

40 Analysis When X i = 0 we spend O(1) time at i-th step. When X i = 1 we spend O(i) time. So the expected running time E[T (n)] is ( n ) E[T (n)] = O 1 + i.e[x i ]. Note: E[X i ] is simply the probability that X i = 1 in our case. i=1 Antoine Vigneron (KAUST) CS 372 Lecture 9 November 7, / 48

41 Analysis We denote C i = H i. In other words, C i is the feasible region at step i. v i is adjacent to two edges of C i, these edges correspond to two constraints h and h. C i h v i h If v i v i 1, then h i = h or h i = h. Antoine Vigneron (KAUST) CS 372 Lecture 9 November 7, / 48

42 Analysis What is the probability that h i = h or h i = h? We use backwards analysis. We assume that H i is fixed. So h i is chosen uniformly at random in H i \ {m 1, m 2 }. So the probability that h i = h or h i = h is at most 2/i. It could be 1/i or 0 if vi is defined by m 1 and/or m 2. So E[X i ] 2/i So ( n ) E[T (n)] = O 1 + i. 2 = O(n). i i=1 Antoine Vigneron (KAUST) CS 372 Lecture 9 November 7, / 48

43 Generalization to higher dimension First attempt: Each constraint is a half-space. Can we compute their intersection and get the feasible region? In R 3 it can be done in O(n log n) time. (Not covered in CS 372.) In higher dimension, the feasible region has Ω(n d 2 ) vertices in the worst case. So computing the feasible region requires Ω(n d 2 ) time. Here, we will give a O(n) expected time algorithm for finding one optimal point in the feasible region, when d = O(1). Antoine Vigneron (KAUST) CS 372 Lecture 9 November 7, / 48

44 Preliminary A hyperplane in R d has equation where α 1 x 1 + α 2 x α d x d = β d. (α 1, α 2,..., α d ) R d \ {0} d. In general position, d hyperplanes intersect at one point. Each constraint h i is a half-space, bounded by a hyperplane h i. We assume general position in the sense that: Any d hyperplanes h i1,..., h id intersect at exactly one point. The intersection of any d + 1 such hyperplanes is empty. No such hyperplane is orthogonal to c. Antoine Vigneron (KAUST) CS 372 Lecture 9 November 7, / 48

45 Algorithm We generalize the 2D algorithm. We first find d constraints m 1, m 2,... m d that make the linear program bounded: If ci 0 then m i is x i M. If ci < 0 then m i is x i M. We pick a random permutation (h 1, h 2,... h n ) of H. Then H i is {m 1, m 2,... m d, h 1, h 2,... h i }. We maintain v i, the solution to the linear program with constraints H i and objective function f. v 0 is the vertex of d m i. i=1 Antoine Vigneron (KAUST) CS 372 Lecture 9 November 7, / 48

46 Algorithm We assume d = O(1). Inserting h i is done in the same way as in R 2 : If v i 1 h i then v i 1 = v i. Otherwise, v i h i. We find v i by solving a linear program with i + d constraints in R d 1. If this linear program is infeasible, then the original linear program is infeasible too, so we are done. It can be done in expected O(i) time. (By induction.) Antoine Vigneron (KAUST) CS 372 Lecture 9 November 7, / 48

47 Analysis What is the probability that v i v i 1? By our general position assumption, v i belongs to exactly d hyperplanes that bound constraints in H i. The probability that vi v i 1 is the probability that one of these d constraints was inserted last. By backwards analysis, it is d/i. So the expected running time of our algorithm is ( n ) E[T (n)] = O 1 + i. d = O(dn) = O(n). i i=1 Antoine Vigneron (KAUST) CS 372 Lecture 9 November 7, / 48

48 Conclusion This algorithm can be made to handle unbounded linear programs and degenerate cases. A careful implementation of this algorithm runs in O(d!n) time. So it is only useful in low dimension. It can be generalized to other types of problems. See textbook: Smallest enclosing disk. Sometimes we can linearize a problem and use a linear programming algorithm. We will see such cases in homework or tutorial. (Example: Finding the enclosing annulus with minimum area.) Antoine Vigneron (KAUST) CS 372 Lecture 9 November 7, / 48

Linear Programming in Small Dimensions

Linear Programming in Small Dimensions Linear Programming in Small Dimensions Lekcija 7 sergio.cabello@fmf.uni-lj.si FMF Univerza v Ljubljani Edited from slides by Antoine Vigneron Outline linear programming, motivation and definition one dimensional

More information

Linear Programming- Manufacturing with

Linear Programming- Manufacturing with - 1395-2 1 / 36 Casting process 2 / 36 The of Casting top facet ordinary facet Every ordinary facet f has a corresponding facet in the mold, which we denote by ˆf. castable object top facet 3 / 36 The

More information

CS 372: Computational Geometry Lecture 3 Line Segment Intersection

CS 372: Computational Geometry Lecture 3 Line Segment Intersection CS 372: Computational Geometry Lecture 3 Line Segment Intersection Antoine Vigneron King Abdullah University of Science and Technology September 9, 2012 Antoine Vigneron (KAUST) CS 372 Lecture 3 September

More information

Linear Programming and its Applications

Linear Programming and its Applications Linear Programming and its Applications Outline for Today What is linear programming (LP)? Examples Formal definition Geometric intuition Why is LP useful? A first look at LP algorithms Duality Linear

More information

Computational Geometry

Computational Geometry Casting a polyhedron CAD/CAM systems CAD/CAM systems allow you to design objects and test how they can be constructed Many objects are constructed used a mold Casting Casting A general question: Given

More information

4 LINEAR PROGRAMMING (LP) E. Amaldi Fondamenti di R.O. Politecnico di Milano 1

4 LINEAR PROGRAMMING (LP) E. Amaldi Fondamenti di R.O. Politecnico di Milano 1 4 LINEAR PROGRAMMING (LP) E. Amaldi Fondamenti di R.O. Politecnico di Milano 1 Mathematical programming (optimization) problem: min f (x) s.t. x X R n set of feasible solutions with linear objective function

More information

CS 473: Algorithms. Ruta Mehta. Spring University of Illinois, Urbana-Champaign. Ruta (UIUC) CS473 1 Spring / 29

CS 473: Algorithms. Ruta Mehta. Spring University of Illinois, Urbana-Champaign. Ruta (UIUC) CS473 1 Spring / 29 CS 473: Algorithms Ruta Mehta University of Illinois, Urbana-Champaign Spring 2018 Ruta (UIUC) CS473 1 Spring 2018 1 / 29 CS 473: Algorithms, Spring 2018 Simplex and LP Duality Lecture 19 March 29, 2018

More information

Introduction to Linear Programming

Introduction to Linear Programming Introduction to Linear Programming Eric Feron (updated Sommer Gentry) (updated by Paul Robertson) 16.410/16.413 Historical aspects Examples of Linear programs Historical contributor: G. Dantzig, late 1940

More information

CS 473: Algorithms. Ruta Mehta. Spring University of Illinois, Urbana-Champaign. Ruta (UIUC) CS473 1 Spring / 50

CS 473: Algorithms. Ruta Mehta. Spring University of Illinois, Urbana-Champaign. Ruta (UIUC) CS473 1 Spring / 50 CS 473: Algorithms Ruta Mehta University of Illinois, Urbana-Champaign Spring 2018 Ruta (UIUC) CS473 1 Spring 2018 1 / 50 CS 473: Algorithms, Spring 2018 Introduction to Linear Programming Lecture 18 March

More information

Linear programming and duality theory

Linear programming and duality theory Linear programming and duality theory Complements of Operations Research Giovanni Righini Linear Programming (LP) A linear program is defined by linear constraints, a linear objective function. Its variables

More information

Advanced Operations Research Techniques IE316. Quiz 1 Review. Dr. Ted Ralphs

Advanced Operations Research Techniques IE316. Quiz 1 Review. Dr. Ted Ralphs Advanced Operations Research Techniques IE316 Quiz 1 Review Dr. Ted Ralphs IE316 Quiz 1 Review 1 Reading for The Quiz Material covered in detail in lecture. 1.1, 1.4, 2.1-2.6, 3.1-3.3, 3.5 Background material

More information

Chapter 4 Concepts from Geometry

Chapter 4 Concepts from Geometry Chapter 4 Concepts from Geometry An Introduction to Optimization Spring, 2014 Wei-Ta Chu 1 Line Segments The line segment between two points and in R n is the set of points on the straight line joining

More information

DM545 Linear and Integer Programming. Lecture 2. The Simplex Method. Marco Chiarandini

DM545 Linear and Integer Programming. Lecture 2. The Simplex Method. Marco Chiarandini DM545 Linear and Integer Programming Lecture 2 The Marco Chiarandini Department of Mathematics & Computer Science University of Southern Denmark Outline 1. 2. 3. 4. Standard Form Basic Feasible Solutions

More information

The Simplex Algorithm for LP, and an Open Problem

The Simplex Algorithm for LP, and an Open Problem The Simplex Algorithm for LP, and an Open Problem Linear Programming: General Formulation Inputs: real-valued m x n matrix A, and vectors c in R n and b in R m Output: n-dimensional vector x There is one

More information

! Linear programming"! Duality "! Smallest enclosing disk"

! Linear programming! Duality ! Smallest enclosing disk ! Linear programming"! Duality "! Smallest enclosing disk" 14. 24.! Define:" " i types of foods (1!i!d).! " j types of vitamins (1!j!n)." " x i the amount of food of type i." " a ji the amount of vitamin

More information

/ Approximation Algorithms Lecturer: Michael Dinitz Topic: Linear Programming Date: 2/24/15 Scribe: Runze Tang

/ Approximation Algorithms Lecturer: Michael Dinitz Topic: Linear Programming Date: 2/24/15 Scribe: Runze Tang 600.469 / 600.669 Approximation Algorithms Lecturer: Michael Dinitz Topic: Linear Programming Date: 2/24/15 Scribe: Runze Tang 9.1 Linear Programming Suppose we are trying to approximate a minimization

More information

Lecture 3. Corner Polyhedron, Intersection Cuts, Maximal Lattice-Free Convex Sets. Tepper School of Business Carnegie Mellon University, Pittsburgh

Lecture 3. Corner Polyhedron, Intersection Cuts, Maximal Lattice-Free Convex Sets. Tepper School of Business Carnegie Mellon University, Pittsburgh Lecture 3 Corner Polyhedron, Intersection Cuts, Maximal Lattice-Free Convex Sets Gérard Cornuéjols Tepper School of Business Carnegie Mellon University, Pittsburgh January 2016 Mixed Integer Linear Programming

More information

16.410/413 Principles of Autonomy and Decision Making

16.410/413 Principles of Autonomy and Decision Making 16.410/413 Principles of Autonomy and Decision Making Lecture 17: The Simplex Method Emilio Frazzoli Aeronautics and Astronautics Massachusetts Institute of Technology November 10, 2010 Frazzoli (MIT)

More information

Mathematical and Algorithmic Foundations Linear Programming and Matchings

Mathematical and Algorithmic Foundations Linear Programming and Matchings Adavnced Algorithms Lectures Mathematical and Algorithmic Foundations Linear Programming and Matchings Paul G. Spirakis Department of Computer Science University of Patras and Liverpool Paul G. Spirakis

More information

Lecture 4: Linear Programming

Lecture 4: Linear Programming COMP36111: Advanced Algorithms I Lecture 4: Linear Programming Ian Pratt-Hartmann Room KB2.38: email: ipratt@cs.man.ac.uk 2017 18 Outline The Linear Programming Problem Geometrical analysis The Simplex

More information

Outline. CS38 Introduction to Algorithms. Linear programming 5/21/2014. Linear programming. Lecture 15 May 20, 2014

Outline. CS38 Introduction to Algorithms. Linear programming 5/21/2014. Linear programming. Lecture 15 May 20, 2014 5/2/24 Outline CS38 Introduction to Algorithms Lecture 5 May 2, 24 Linear programming simplex algorithm LP duality ellipsoid algorithm * slides from Kevin Wayne May 2, 24 CS38 Lecture 5 May 2, 24 CS38

More information

Math 5593 Linear Programming Lecture Notes

Math 5593 Linear Programming Lecture Notes Math 5593 Linear Programming Lecture Notes Unit II: Theory & Foundations (Convex Analysis) University of Colorado Denver, Fall 2013 Topics 1 Convex Sets 1 1.1 Basic Properties (Luenberger-Ye Appendix B.1).........................

More information

Discrete Optimization 2010 Lecture 5 Min-Cost Flows & Total Unimodularity

Discrete Optimization 2010 Lecture 5 Min-Cost Flows & Total Unimodularity Discrete Optimization 2010 Lecture 5 Min-Cost Flows & Total Unimodularity Marc Uetz University of Twente m.uetz@utwente.nl Lecture 5: sheet 1 / 26 Marc Uetz Discrete Optimization Outline 1 Min-Cost Flows

More information

OPERATIONS RESEARCH. Linear Programming Problem

OPERATIONS RESEARCH. Linear Programming Problem OPERATIONS RESEARCH Chapter 1 Linear Programming Problem Prof. Bibhas C. Giri Department of Mathematics Jadavpur University Kolkata, India Email: bcgiri.jumath@gmail.com 1.0 Introduction Linear programming

More information

Voronoi diagram and Delaunay triangulation

Voronoi diagram and Delaunay triangulation Voronoi diagram and Delaunay triangulation Ioannis Emiris & Vissarion Fisikopoulos Dept. of Informatics & Telecommunications, University of Athens Computational Geometry, spring 2015 Outline 1 Voronoi

More information

Linear Programming Duality and Algorithms

Linear Programming Duality and Algorithms COMPSCI 330: Design and Analysis of Algorithms 4/5/2016 and 4/7/2016 Linear Programming Duality and Algorithms Lecturer: Debmalya Panigrahi Scribe: Tianqi Song 1 Overview In this lecture, we will cover

More information

maximize c, x subject to Ax b,

maximize c, x subject to Ax b, Lecture 8 Linear programming is about problems of the form maximize c, x subject to Ax b, where A R m n, x R n, c R n, and b R m, and the inequality sign means inequality in each row. The feasible set

More information

College of Computer & Information Science Fall 2007 Northeastern University 14 September 2007

College of Computer & Information Science Fall 2007 Northeastern University 14 September 2007 College of Computer & Information Science Fall 2007 Northeastern University 14 September 2007 CS G399: Algorithmic Power Tools I Scribe: Eric Robinson Lecture Outline: Linear Programming: Vertex Definitions

More information

Lecture 2 - Introduction to Polytopes

Lecture 2 - Introduction to Polytopes Lecture 2 - Introduction to Polytopes Optimization and Approximation - ENS M1 Nicolas Bousquet 1 Reminder of Linear Algebra definitions Let x 1,..., x m be points in R n and λ 1,..., λ m be real numbers.

More information

CMPSCI611: The Simplex Algorithm Lecture 24

CMPSCI611: The Simplex Algorithm Lecture 24 CMPSCI611: The Simplex Algorithm Lecture 24 Let s first review the general situation for linear programming problems. Our problem in standard form is to choose a vector x R n, such that x 0 and Ax = b,

More information

POLYHEDRAL GEOMETRY. Convex functions and sets. Mathematical Programming Niels Lauritzen Recall that a subset C R n is convex if

POLYHEDRAL GEOMETRY. Convex functions and sets. Mathematical Programming Niels Lauritzen Recall that a subset C R n is convex if POLYHEDRAL GEOMETRY Mathematical Programming Niels Lauritzen 7.9.2007 Convex functions and sets Recall that a subset C R n is convex if {λx + (1 λ)y 0 λ 1} C for every x, y C and 0 λ 1. A function f :

More information

Advanced Operations Research Techniques IE316. Quiz 2 Review. Dr. Ted Ralphs

Advanced Operations Research Techniques IE316. Quiz 2 Review. Dr. Ted Ralphs Advanced Operations Research Techniques IE316 Quiz 2 Review Dr. Ted Ralphs IE316 Quiz 2 Review 1 Reading for The Quiz Material covered in detail in lecture Bertsimas 4.1-4.5, 4.8, 5.1-5.5, 6.1-6.3 Material

More information

Applied Integer Programming

Applied Integer Programming Applied Integer Programming D.S. Chen; R.G. Batson; Y. Dang Fahimeh 8.2 8.7 April 21, 2015 Context 8.2. Convex sets 8.3. Describing a bounded polyhedron 8.4. Describing unbounded polyhedron 8.5. Faces,

More information

MATH 890 HOMEWORK 2 DAVID MEREDITH

MATH 890 HOMEWORK 2 DAVID MEREDITH MATH 890 HOMEWORK 2 DAVID MEREDITH (1) Suppose P and Q are polyhedra. Then P Q is a polyhedron. Moreover if P and Q are polytopes then P Q is a polytope. The facets of P Q are either F Q where F is a facet

More information

Combinatorial Geometry & Topology arising in Game Theory and Optimization

Combinatorial Geometry & Topology arising in Game Theory and Optimization Combinatorial Geometry & Topology arising in Game Theory and Optimization Jesús A. De Loera University of California, Davis LAST EPISODE... We discuss the content of the course... Convex Sets A set is

More information

CS675: Convex and Combinatorial Optimization Spring 2018 The Simplex Algorithm. Instructor: Shaddin Dughmi

CS675: Convex and Combinatorial Optimization Spring 2018 The Simplex Algorithm. Instructor: Shaddin Dughmi CS675: Convex and Combinatorial Optimization Spring 2018 The Simplex Algorithm Instructor: Shaddin Dughmi Algorithms for Convex Optimization We will look at 2 algorithms in detail: Simplex and Ellipsoid.

More information

AMATH 383 Lecture Notes Linear Programming

AMATH 383 Lecture Notes Linear Programming AMATH 8 Lecture Notes Linear Programming Jakob Kotas (jkotas@uw.edu) University of Washington February 4, 014 Based on lecture notes for IND E 51 by Zelda Zabinsky, available from http://courses.washington.edu/inde51/notesindex.htm.

More information

Lecture notes on the simplex method September We will present an algorithm to solve linear programs of the form. maximize.

Lecture notes on the simplex method September We will present an algorithm to solve linear programs of the form. maximize. Cornell University, Fall 2017 CS 6820: Algorithms Lecture notes on the simplex method September 2017 1 The Simplex Method We will present an algorithm to solve linear programs of the form maximize subject

More information

Linear Programming. Presentation for use with the textbook, Algorithm Design and Applications, by M. T. Goodrich and R. Tamassia, Wiley, 2015

Linear Programming. Presentation for use with the textbook, Algorithm Design and Applications, by M. T. Goodrich and R. Tamassia, Wiley, 2015 Presentation for use with the textbook, Algorithm Design and Applications, by M. T. Goodrich and R. Tamassia, Wiley, 2015 Linear Programming 2015 Goodrich and Tamassia 1 Formulating the Problem q The function

More information

IE 5531: Engineering Optimization I

IE 5531: Engineering Optimization I IE 5531: Engineering Optimization I Lecture 3: Linear Programming, Continued Prof. John Gunnar Carlsson September 15, 2010 Prof. John Gunnar Carlsson IE 5531: Engineering Optimization I September 15, 2010

More information

Convex Geometry arising in Optimization

Convex Geometry arising in Optimization Convex Geometry arising in Optimization Jesús A. De Loera University of California, Davis Berlin Mathematical School Summer 2015 WHAT IS THIS COURSE ABOUT? Combinatorial Convexity and Optimization PLAN

More information

The Simplex Algorithm

The Simplex Algorithm The Simplex Algorithm Uri Feige November 2011 1 The simplex algorithm The simplex algorithm was designed by Danzig in 1947. This write-up presents the main ideas involved. It is a slight update (mostly

More information

MA4254: Discrete Optimization. Defeng Sun. Department of Mathematics National University of Singapore Office: S Telephone:

MA4254: Discrete Optimization. Defeng Sun. Department of Mathematics National University of Singapore Office: S Telephone: MA4254: Discrete Optimization Defeng Sun Department of Mathematics National University of Singapore Office: S14-04-25 Telephone: 6516 3343 Aims/Objectives: Discrete optimization deals with problems of

More information

FACES OF CONVEX SETS

FACES OF CONVEX SETS FACES OF CONVEX SETS VERA ROSHCHINA Abstract. We remind the basic definitions of faces of convex sets and their basic properties. For more details see the classic references [1, 2] and [4] for polytopes.

More information

J Linear Programming Algorithms

J Linear Programming Algorithms Simplicibus itaque verbis gaudet Mathematica Veritas, cum etiam per se simplex sit Veritatis oratio. [And thus Mathematical Truth prefers simple words, because the language of Truth is itself simple.]

More information

Circuit Walks in Integral Polyhedra

Circuit Walks in Integral Polyhedra Circuit Walks in Integral Polyhedra Charles Viss Steffen Borgwardt University of Colorado Denver Optimization and Discrete Geometry: Theory and Practice Tel Aviv University, April 2018 LINEAR PROGRAMMING

More information

Some Advanced Topics in Linear Programming

Some Advanced Topics in Linear Programming Some Advanced Topics in Linear Programming Matthew J. Saltzman July 2, 995 Connections with Algebra and Geometry In this section, we will explore how some of the ideas in linear programming, duality theory,

More information

Chapter 15 Introduction to Linear Programming

Chapter 15 Introduction to Linear Programming Chapter 15 Introduction to Linear Programming An Introduction to Optimization Spring, 2015 Wei-Ta Chu 1 Brief History of Linear Programming The goal of linear programming is to determine the values of

More information

Math 414 Lecture 2 Everyone have a laptop?

Math 414 Lecture 2 Everyone have a laptop? Math 44 Lecture 2 Everyone have a laptop? THEOREM. Let v,...,v k be k vectors in an n-dimensional space and A = [v ;...; v k ] v,..., v k independent v,..., v k span the space v,..., v k a basis v,...,

More information

BCN Decision and Risk Analysis. Syed M. Ahmed, Ph.D.

BCN Decision and Risk Analysis. Syed M. Ahmed, Ph.D. Linear Programming Module Outline Introduction The Linear Programming Model Examples of Linear Programming Problems Developing Linear Programming Models Graphical Solution to LP Problems The Simplex Method

More information

Programming, numerics and optimization

Programming, numerics and optimization Programming, numerics and optimization Lecture C-4: Constrained optimization Łukasz Jankowski ljank@ippt.pan.pl Institute of Fundamental Technological Research Room 4.32, Phone +22.8261281 ext. 428 June

More information

CS 473: Algorithms. Ruta Mehta. Spring University of Illinois, Urbana-Champaign. Ruta (UIUC) CS473 1 Spring / 36

CS 473: Algorithms. Ruta Mehta. Spring University of Illinois, Urbana-Champaign. Ruta (UIUC) CS473 1 Spring / 36 CS 473: Algorithms Ruta Mehta University of Illinois, Urbana-Champaign Spring 2018 Ruta (UIUC) CS473 1 Spring 2018 1 / 36 CS 473: Algorithms, Spring 2018 LP Duality Lecture 20 April 3, 2018 Some of the

More information

11.1 Facility Location

11.1 Facility Location CS787: Advanced Algorithms Scribe: Amanda Burton, Leah Kluegel Lecturer: Shuchi Chawla Topic: Facility Location ctd., Linear Programming Date: October 8, 2007 Today we conclude the discussion of local

More information

Linear programming and the efficiency of the simplex algorithm for transportation polytopes

Linear programming and the efficiency of the simplex algorithm for transportation polytopes Linear programming and the efficiency of the simplex algorithm for transportation polytopes Edward D. Kim University of Wisconsin-La Crosse February 20, 2015 Loras College Department of Mathematics Colloquium

More information

15-451/651: Design & Analysis of Algorithms October 11, 2018 Lecture #13: Linear Programming I last changed: October 9, 2018

15-451/651: Design & Analysis of Algorithms October 11, 2018 Lecture #13: Linear Programming I last changed: October 9, 2018 15-451/651: Design & Analysis of Algorithms October 11, 2018 Lecture #13: Linear Programming I last changed: October 9, 2018 In this lecture, we describe a very general problem called linear programming

More information

Linear and Integer Programming :Algorithms in the Real World. Related Optimization Problems. How important is optimization?

Linear and Integer Programming :Algorithms in the Real World. Related Optimization Problems. How important is optimization? Linear and Integer Programming 15-853:Algorithms in the Real World Linear and Integer Programming I Introduction Geometric Interpretation Simplex Method Linear or Integer programming maximize z = c T x

More information

Real life Problem. Review

Real life Problem. Review Linear Programming The Modelling Cycle in Decision Maths Accept solution Real life Problem Yes No Review Make simplifying assumptions Compare the solution with reality is it realistic? Interpret the solution

More information

Lecture 5: Duality Theory

Lecture 5: Duality Theory Lecture 5: Duality Theory Rajat Mittal IIT Kanpur The objective of this lecture note will be to learn duality theory of linear programming. We are planning to answer following questions. What are hyperplane

More information

1. CONVEX POLYGONS. Definition. A shape D in the plane is convex if every line drawn between two points in D is entirely inside D.

1. CONVEX POLYGONS. Definition. A shape D in the plane is convex if every line drawn between two points in D is entirely inside D. 1. CONVEX POLYGONS Definition. A shape D in the plane is convex if every line drawn between two points in D is entirely inside D. Convex 6 gon Another convex 6 gon Not convex Question. Why is the third

More information

Chapter 8. Voronoi Diagrams. 8.1 Post Oce Problem

Chapter 8. Voronoi Diagrams. 8.1 Post Oce Problem Chapter 8 Voronoi Diagrams 8.1 Post Oce Problem Suppose there are n post oces p 1,... p n in a city. Someone who is located at a position q within the city would like to know which post oce is closest

More information

Numerical Optimization

Numerical Optimization Convex Sets Computer Science and Automation Indian Institute of Science Bangalore 560 012, India. NPTEL Course on Let x 1, x 2 R n, x 1 x 2. Line and line segment Line passing through x 1 and x 2 : {y

More information

4 Linear Programming. Manufacturing with Molds

4 Linear Programming. Manufacturing with Molds 4 Linear Programming Manufacturing with Molds Most objects we see around us today from car bodies to plastic cups and cutlery are made using some form of automated manufacturing. Computers play an important

More information

Lecture Notes 2: The Simplex Algorithm

Lecture Notes 2: The Simplex Algorithm Algorithmic Methods 25/10/2010 Lecture Notes 2: The Simplex Algorithm Professor: Yossi Azar Scribe:Kiril Solovey 1 Introduction In this lecture we will present the Simplex algorithm, finish some unresolved

More information

Computational Geometry

Computational Geometry Lecture 1: Introduction and convex hulls Geometry: points, lines,... Geometric objects Geometric relations Combinatorial complexity Computational geometry Plane (two-dimensional), R 2 Space (three-dimensional),

More information

4 Linear Programming (LP) E. Amaldi -- Foundations of Operations Research -- Politecnico di Milano 1

4 Linear Programming (LP) E. Amaldi -- Foundations of Operations Research -- Politecnico di Milano 1 4 Linear Programming (LP) E. Amaldi -- Foundations of Operations Research -- Politecnico di Milano 1 Definition: A Linear Programming (LP) problem is an optimization problem: where min f () s.t. X n the

More information

Polyhedral Compilation Foundations

Polyhedral Compilation Foundations Polyhedral Compilation Foundations Louis-Noël Pouchet pouchet@cse.ohio-state.edu Dept. of Computer Science and Engineering, the Ohio State University Feb 15, 2010 888.11, Class #4 Introduction: Polyhedral

More information

Introduction to Mathematical Programming IE496. Final Review. Dr. Ted Ralphs

Introduction to Mathematical Programming IE496. Final Review. Dr. Ted Ralphs Introduction to Mathematical Programming IE496 Final Review Dr. Ted Ralphs IE496 Final Review 1 Course Wrap-up: Chapter 2 In the introduction, we discussed the general framework of mathematical modeling

More information

Discrete Optimization. Lecture Notes 2

Discrete Optimization. Lecture Notes 2 Discrete Optimization. Lecture Notes 2 Disjunctive Constraints Defining variables and formulating linear constraints can be straightforward or more sophisticated, depending on the problem structure. The

More information

Mathematics. Linear Programming

Mathematics. Linear Programming Mathematics Linear Programming Table of Content 1. Linear inequations. 2. Terms of Linear Programming. 3. Mathematical formulation of a linear programming problem. 4. Graphical solution of two variable

More information

Notes taken by Mea Wang. February 11, 2005

Notes taken by Mea Wang. February 11, 2005 CSC2411 - Linear Programming and Combinatorial Optimization Lecture 5: Smoothed Analysis, Randomized Combinatorial Algorithms, and Linear Programming Duality Notes taken by Mea Wang February 11, 2005 Summary:

More information

A Subexponential Randomized Simplex Algorithm

A Subexponential Randomized Simplex Algorithm s A Subexponential Randomized Gil Kalai (extended abstract) Shimrit Shtern Presentation for Polynomial time algorithms for linear programming 097328 Technion - Israel Institute of Technology May 14, 2012

More information

COMPUTATIONAL GEOMETRY

COMPUTATIONAL GEOMETRY Thursday, September 20, 2007 (Ming C. Lin) Review on Computational Geometry & Collision Detection for Convex Polytopes COMPUTATIONAL GEOMETRY (Refer to O'Rourke's and Dutch textbook ) 1. Extreme Points

More information

CHAPTER 3 LINEAR PROGRAMMING: SIMPLEX METHOD

CHAPTER 3 LINEAR PROGRAMMING: SIMPLEX METHOD CHAPTER 3 LINEAR PROGRAMMING: SIMPLEX METHOD Linear programming is optimization problem where the objective function is linear and all equality and inequality constraints are linear. This problem was first

More information

Design and Analysis of Algorithms (V)

Design and Analysis of Algorithms (V) Design and Analysis of Algorithms (V) An Introduction to Linear Programming Guoqiang Li School of Software, Shanghai Jiao Tong University Homework Assignment 2 is announced! (deadline Apr. 10) Linear Programming

More information

arxiv: v1 [cs.cc] 30 Jun 2017

arxiv: v1 [cs.cc] 30 Jun 2017 On the Complexity of Polytopes in LI( Komei Fuuda May Szedlá July, 018 arxiv:170610114v1 [cscc] 30 Jun 017 Abstract In this paper we consider polytopes given by systems of n inequalities in d variables,

More information

Lecture 3 Randomized Algorithms

Lecture 3 Randomized Algorithms Lecture 3 Randomized Algorithms Jean-Daniel Boissonnat Winter School on Computational Geometry and Topology University of Nice Sophia Antipolis January 23-27, 2017 Computational Geometry and Topology Randomized

More information

Submodularity Reading Group. Matroid Polytopes, Polymatroid. M. Pawan Kumar

Submodularity Reading Group. Matroid Polytopes, Polymatroid. M. Pawan Kumar Submodularity Reading Group Matroid Polytopes, Polymatroid M. Pawan Kumar http://www.robots.ox.ac.uk/~oval/ Outline Linear Programming Matroid Polytopes Polymatroid Polyhedron Ax b A : m x n matrix b:

More information

3. The Simplex algorithmn The Simplex algorithmn 3.1 Forms of linear programs

3. The Simplex algorithmn The Simplex algorithmn 3.1 Forms of linear programs 11 3.1 Forms of linear programs... 12 3.2 Basic feasible solutions... 13 3.3 The geometry of linear programs... 14 3.4 Local search among basic feasible solutions... 15 3.5 Organization in tableaus...

More information

9 Bounds for the Knapsack Problem (March 6)

9 Bounds for the Knapsack Problem (March 6) 9 Bounds for the Knapsack Problem (March 6) In this lecture, I ll develop both upper and lower bounds in the linear decision tree model for the following version of the (NP-complete) Knapsack 1 problem:

More information

Linear Optimization. Andongwisye John. November 17, Linkoping University. Andongwisye John (Linkoping University) November 17, / 25

Linear Optimization. Andongwisye John. November 17, Linkoping University. Andongwisye John (Linkoping University) November 17, / 25 Linear Optimization Andongwisye John Linkoping University November 17, 2016 Andongwisye John (Linkoping University) November 17, 2016 1 / 25 Overview 1 Egdes, One-Dimensional Faces, Adjacency of Extreme

More information

Figure 2.1: An example of a convex set and a nonconvex one.

Figure 2.1: An example of a convex set and a nonconvex one. Convex Hulls 2.1 Definitions 2 Convexity is the key to understanding and simplifying geometry, and the convex hull plays a role in geometry akin to the sorted order for a collection of numbers. So what

More information

be a polytope. has such a representation iff it contains the origin in its interior. For a generic, sort the inequalities so that

be a polytope. has such a representation iff it contains the origin in its interior. For a generic, sort the inequalities so that ( Shelling (Bruggesser-Mani 1971) and Ranking Let be a polytope. has such a representation iff it contains the origin in its interior. For a generic, sort the inequalities so that. a ranking of vertices

More information

Integer Programming Theory

Integer Programming Theory Integer Programming Theory Laura Galli October 24, 2016 In the following we assume all functions are linear, hence we often drop the term linear. In discrete optimization, we seek to find a solution x

More information

16.410/413 Principles of Autonomy and Decision Making

16.410/413 Principles of Autonomy and Decision Making 16.410/413 Principles of Autonomy and Decision Making Lecture 16: Mathematical Programming I Emilio Frazzoli Aeronautics and Astronautics Massachusetts Institute of Technology November 8, 2010 E. Frazzoli

More information

Mathematical Programming and Research Methods (Part II)

Mathematical Programming and Research Methods (Part II) Mathematical Programming and Research Methods (Part II) 4. Convexity and Optimization Massimiliano Pontil (based on previous lecture by Andreas Argyriou) 1 Today s Plan Convex sets and functions Types

More information

Applications of Linear Programming

Applications of Linear Programming Applications of Linear Programming lecturer: András London University of Szeged Institute of Informatics Department of Computational Optimization Lecture 1 Why LP? Linear programming (LP, also called linear

More information

High-Dimensional Computational Geometry. Jingbo Shang University of Illinois at Urbana-Champaign Mar 5, 2018

High-Dimensional Computational Geometry. Jingbo Shang University of Illinois at Urbana-Champaign Mar 5, 2018 High-Dimensional Computational Geometry Jingbo Shang University of Illinois at Urbana-Champaign Mar 5, 2018 Outline 3-D vector geometry High-D hyperplane intersections Convex hull & its extension to 3

More information

R n a T i x = b i} is a Hyperplane.

R n a T i x = b i} is a Hyperplane. Geometry of LPs Consider the following LP : min {c T x a T i x b i The feasible region is i =1,...,m}. X := {x R n a T i x b i i =1,...,m} = m i=1 {x Rn a T i x b i} }{{} X i The set X i is a Half-space.

More information

Solution for Homework set 3

Solution for Homework set 3 TTIC 300 and CMSC 37000 Algorithms Winter 07 Solution for Homework set 3 Question (0 points) We are given a directed graph G = (V, E), with two special vertices s and t, and non-negative integral capacities

More information

Introduction to Optimization Problems and Methods

Introduction to Optimization Problems and Methods Introduction to Optimization Problems and Methods wjch@umich.edu December 10, 2009 Outline 1 Linear Optimization Problem Simplex Method 2 3 Cutting Plane Method 4 Discrete Dynamic Programming Problem Simplex

More information

Introduction to Modern Control Systems

Introduction to Modern Control Systems Introduction to Modern Control Systems Convex Optimization, Duality and Linear Matrix Inequalities Kostas Margellos University of Oxford AIMS CDT 2016-17 Introduction to Modern Control Systems November

More information

11 Linear Programming

11 Linear Programming 11 Linear Programming 11.1 Definition and Importance The final topic in this course is Linear Programming. We say that a problem is an instance of linear programming when it can be effectively expressed

More information

CS599: Convex and Combinatorial Optimization Fall 2013 Lecture 1: Introduction to Optimization. Instructor: Shaddin Dughmi

CS599: Convex and Combinatorial Optimization Fall 2013 Lecture 1: Introduction to Optimization. Instructor: Shaddin Dughmi CS599: Convex and Combinatorial Optimization Fall 013 Lecture 1: Introduction to Optimization Instructor: Shaddin Dughmi Outline 1 Course Overview Administrivia 3 Linear Programming Outline 1 Course Overview

More information

Linear Programming. Readings: Read text section 11.6, and sections 1 and 2 of Tom Ferguson s notes (see course homepage).

Linear Programming. Readings: Read text section 11.6, and sections 1 and 2 of Tom Ferguson s notes (see course homepage). Linear Programming Learning Goals. Introduce Linear Programming Problems. Widget Example, Graphical Solution. Basic Theory: Feasible Set, Vertices, Existence of Solutions. Equivalent formulations. Outline

More information

Linear Programming. Widget Factory Example. Linear Programming: Standard Form. Widget Factory Example: Continued.

Linear Programming. Widget Factory Example. Linear Programming: Standard Form. Widget Factory Example: Continued. Linear Programming Widget Factory Example Learning Goals. Introduce Linear Programming Problems. Widget Example, Graphical Solution. Basic Theory:, Vertices, Existence of Solutions. Equivalent formulations.

More information

Artificial Intelligence

Artificial Intelligence Artificial Intelligence Combinatorial Optimization G. Guérard Department of Nouvelles Energies Ecole Supérieur d Ingénieurs Léonard de Vinci Lecture 1 GG A.I. 1/34 Outline 1 Motivation 2 Geometric resolution

More information

Section Notes 5. Review of Linear Programming. Applied Math / Engineering Sciences 121. Week of October 15, 2017

Section Notes 5. Review of Linear Programming. Applied Math / Engineering Sciences 121. Week of October 15, 2017 Section Notes 5 Review of Linear Programming Applied Math / Engineering Sciences 121 Week of October 15, 2017 The following list of topics is an overview of the material that was covered in the lectures

More information

LP Geometry: outline. A general LP. minimize x c T x s.t. a T i. x b i, i 2 M 1 a T i x = b i, i 2 M 3 x j 0, j 2 N 1. where

LP Geometry: outline. A general LP. minimize x c T x s.t. a T i. x b i, i 2 M 1 a T i x = b i, i 2 M 3 x j 0, j 2 N 1. where LP Geometry: outline I Polyhedra I Extreme points, vertices, basic feasible solutions I Degeneracy I Existence of extreme points I Optimality of extreme points IOE 610: LP II, Fall 2013 Geometry of Linear

More information

Linear Programming: Introduction

Linear Programming: Introduction CSC 373 - Algorithm Design, Analysis, and Complexity Summer 2016 Lalla Mouatadid Linear Programming: Introduction A bit of a historical background about linear programming, that I stole from Jeff Erickson

More information

ACTUALLY DOING IT : an Introduction to Polyhedral Computation

ACTUALLY DOING IT : an Introduction to Polyhedral Computation ACTUALLY DOING IT : an Introduction to Polyhedral Computation Jesús A. De Loera Department of Mathematics Univ. of California, Davis http://www.math.ucdavis.edu/ deloera/ 1 What is a Convex Polytope? 2

More information