Linear Programming - PowerPoint PPT Presentation

About This Presentation
Title:

Linear Programming

Description:

... an LP give rise to a geometrical shape - we call it a polyhedron. ... the corner points of the polyhedron, then we can calculate the ... polyhedron ... – PowerPoint PPT presentation

Number of Views:19
Avg rating:3.0/5.0
Slides: 46
Provided by: sony65
Learn more at: http://www.cs.fsu.edu
Category:

less

Transcript and Presenter's Notes

Title: Linear Programming


1
Linear Programming
  • Piyush Kumar

Welcome to COT 5405
2
Optimization
3
For example
This is what is known as a standard linear
program.
4
Linear Programming
  • Significance
  • A lot of problems can be converted to LP
    formulation
  • Perceptrons (learning), Shortest path, max flow,
    MST, matching,
  • Accounts for major proportion of all scientific
    computations
  • Helps in finding quick and dirty solutions to
    NP-hard optimization problems
  • Both optimal (BB) and approximate (rounding)

5
Graphing 2-Dimensional LPs
Optimal Solution
y
Example 1
4
Maximize x y
3
x 2 y ³ 2
Subject to
Feasible Region
x 3
2
y 4
1
x ³ 0 y ³ 0
0
x
3
0
1
2
These LP animations were created by Keely
Crowston.
6
Graphing 2-Dimensional LPs
Multiple Optimal Solutions!
y
Example 2
4
Minimize x - y
3
1/3 x y 4
Subject to
-2 x 2 y 4
2
Feasible Region
x 3
1
x ³ 0 y ³ 0
0
x
3
1
2
0
7
Graphing 2-Dimensional LPs
y
Example 3
40
Minimize x 1/3 y
30
x y ³ 20
Subject to
Feasible Region
-2 x 5 y 150
20
x ³ 5
10
x ³ 0 y ³ 0
x
0
Optimal Solution
30
10
20
0
40
8
Do We Notice Anything From These 3 Examples?
Extreme point
y
y
y
4
40
4
3
3
30
2
2
20
1
1
10
0
0
0
x
x
x
3
0
1
2
30
10
20
0
40
3
0
1
2
9
A Fundamental Point
y
y
y
4
40
4
3
3
30
2
2
20
1
1
10
0
0
0
x
x
x
0
1
10
20
0
0
1
2
3
2
30
40
3
If an optimal solution exists, there is always a
corner point optimal solution!
10
Graphing 2-Dimensional LPs
Optimal Solution
Second Corner pt.
y
Example 1
4
Maximize x y
3
x 2 y ³ 2
Subject to
Feasible Region
x 3
2
y 4
1
x ³ 0 y ³ 0
Initial Corner pt.
0
x
3
0
1
2
11
And We Can Extend this to Higher Dimensions
12
Then How Might We Solve an LP?
  • The constraints of an LP give rise to a
    geometrical shape - we call it a polyhedron.
  • If we can determine all the corner points of the
    polyhedron, then we can calculate the objective
    value at these points and take the best one as
    our optimal solution.
  • The Simplex Method intelligently moves from
    corner to corner until it can prove that it has
    found the optimal solution.

13
But an Integer Program is Different
y
  • Feasible region is a set of discrete points.
  • Cant be assured a corner point solution.
  • There are no efficient ways to solve an IP.
  • Solving it as an LP provides a relaxation and a
    bound on the solution.

4
3
2
1
0
x
3
0
1
2
14
Linear Programs in higher dimensions
minimize z 7x1 x2
5x3 subject to x1 -
x2 3x3 gt 10
5x1 2x2 - x3 gt 6
x1, x2, x3
? 0
What happens at (2,1,3)? What does it tell us
about z optimal value of z?
15
LP Upper bounds
  • Any feasible solution to LP gives an upper bound
    on z
  • So now we know z lt 30.
  • How do we construct a lower bound?
  • z gt 16? Y/N?

16
Lower bounding an LP
  • 7x1x25x3
  • gt (x1-x23x3) (5x12x2-x3)
  • gt 16
  • Find suitable multipliers ( gt0 ?) to construct
    lower bounds.
  • How do we choose the multipliers?

17
The Dual
maximize z 10y1 6y2
subject to y1 5y2
lt 7 -y1
2y2 lt 1
3y1 y2 lt 5
y1, y2 ? 0
What is the dual of a dual? Every feasible
solution of the dual gives a lower bound on z
18
The Primal
minimize z 7x1 x2
5x3 subject to x1 -
x2 3x3 gt 10
5x1 2x2 - x3 gt 6
x1, x2, x3
? 0
Every feasible solution of the primal is an upper
bound on the solution to the dual.
19
Primal Dual picture
Strong Optimality Primal Dual at opt
Z
0
Primal Solutions
Dual Solutions
20
Duality
  • A variable in the dual is paired with a
    constraint in the primal
  • Objective function of the dual is determined by
    the right hand side of the primal constraints
  • The constraint matrix of the dual is the
    transpose of the constraint matrix in the primal.

21
Duality Properties
  • Some relationships between the primal and dual
    problems
  • If one problem has feasible solutions and a
    bounded objective function (and so has an optimal
    solution), then so does the other problem, so
    both the weak and the strong duality properties
    are applicable
  • If the optimal value of the primal is unbounded
    then the dual is infeasible.
  • If the optimal value of the dual is unbounded
    then the primal is infeasible.

22
In Matrix terms
23
LP Geometry
  • Forms a n dimensional polyhedron
  • Is convex If z1 and z2 are two feasible
    solutions then ?z1 (1- ?)z2 is also feasible.
  • Extreme points can not be written as a convex
    combination of two feasible points.

24
LP Geometry
  • The normals to the halfspaces defining the
    polyhedron are formed by the coefficents of the
    constraints.
  • Rows of A form the normals to the hyperplanes
    defining the primal LP pointing inside the
    polyhedron.

25
LP Geometry
  • Extreme point theorem If there exists an
    optimal solution to an LP Problem, then there
    exists one extreme point where the optimum is
    achieved.
  • Local optimum Global Optimum

26
LP Algorithms
  • Simplex. (Dantzig 1947)
  • Developed shortly after WWII in response to
    logistical problemsused for 1948 Berlin
    airlift.
  • Practical solution method that moves from one
    extreme point to a neighboring extreme point.
  • Finite (exponential) complexity, but no
    polynomial implementation known.

Courtesy Kevin Wayne
27
LP Polynomial Algorithms
  • Ellipsoid. (Khachian 1979, 1980)
  • Solvable in polynomial time O(n4 L) bit
    operations.
  • n variables
  • L bits in input
  • Theoretical tour de force.
  • Not remotely practical.
  • Karmarkar's algorithm. (Karmarkar 1984)
  • O(n3.5 L).
  • Polynomial and reasonably efficientimplementation
    s possible.
  • Interior point algorithms.
  • O(n3 L).
  • Competitive with simplex!
  • Dominates on simplex for large problems.
  • Extends to even more general problems.

28
Ellipsoid Method
Courtesy S. Boyd
29
Barrier Algorithms
Simplex solution path
Optimum
Interior Point Methods
30
Back to LP Basics
31
Standard form of LP
32
Standard form of the Dual
33
Weak Duality
We will not prove strong duality in this
class but assume it.
34
Complementary solutions
  • For any primal feasible (but suboptimal) x, its
    complementary solution y is dual infeasible, with
    cxyb
  • For any primal optimal x, its complementary
    solution y is dual optimal, with cxybz
  • Duality Gap cx-yb

35
Complementary slackness
  • x, y are feasible, then they are optimal for
    (P) and (D) iff
  • For I 1..m if yi gt 0
  • Then aix bi
  • For J 1..n if xj gt 0
  • Then yAj ci

ai are rows of A and Aj are the columns of A
36
Complementary slackness
  • x, y are simultaneously optimal for (P) and (D)
    iff
  • y(Ax - b) 0
  • (yA c)x 0

Summary If a variable is positive, its dual
constraint is tight Or if a constraint is loose
its dual variable is zero.
37
Complementary Slackness
  • Proof?
  • y(Ax - b) - (yA c)x
  • yAx - yb - yAx cx
  • cx - yb
  • 0
  • ( But all terms are non-negative )
  • Hence all must be zero!

38
Primal-Dual Algorithms
  • Find a feasible solution for both P and D.
  • Try to satisfy the complementary slackness
    conditions.

39
Algorithm Design Techniques
  • LP Relaxation
  • Rounding
  • Round the fractional solution obtained by solving
    LP-relaxation.
  • Runs fast ?
  • Primal Dual Schema
  • (iteratively constructs primal n dual solutions)

40
y
objective
feasible solutions
x
Linear Program
41
y
objective
feasible solutions
x
Integer Program
42
Linear Relaxations
  • What happens if the optimal of a LP-Relaxation
    is Integral?
  • There are a class of IPs for which this is
    guaranteed to happen
  • Transportation problems
  • MaxFlow problems
  • In general (Unimodularity) Exact Relaxation

43
Lower Bounds
  • Assume minimization problem
  • Any relaxation of the original IP has a
    _____________ optimal objective function value
    than the optimal objective function value of the
    original IP
  • zrelaxation z
  • zrelaxation is called a __________________ on z
  • Difference between these two values is called the
    relaxation gap

44
Upper Bounds
  • Any feasible solution to the original IP has a
    _____________ objective function value than the
    optimal objective function value of the original
    IP
  • zfeasible z
  • zfeasible is called an __________________ on z
  • Heuristic techniques can be used to find good
    feasible solutions
  • Efficient, may be beneficial if optimality can be
    sacrificed
  • Usually application- or problem-specific

45
Vertex Cover
  • Introduction to LP Rounding
  • A simple 2-approximation using LP
  • Better than 2-factor approx?
Write a Comment
User Comments (0)
About PowerShow.com