chapter 2 introduction to linear programming n linear programming problem n problem formulation n a...

53
Chapter 2 Introduction to Linear Programming Linear Programming Problem Problem Formulation A Maximization Problem Graphical Solution Procedure Extreme Points and the Optimal Solution Computer Solutions A Minimization Problem Special Cases

Upload: chloe-stone

Post on 04-Jan-2016

255 views

Category:

Documents


1 download

TRANSCRIPT

Page 1: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

Chapter 2Introduction to Linear Programming

Linear Programming Problem Problem Formulation A Maximization Problem Graphical Solution Procedure Extreme Points and the Optimal Solution Computer Solutions A Minimization Problem Special Cases

Page 2: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

Linear Programming (LP) Problem

The maximization or minimization of some quantity is the objective in all linear programming problems.

All LP problems have constraints that limit the degree to which the objective can be pursued.

A feasible solution satisfies all the problem's constraints.

An optimal solution is a feasible solution that results in the largest possible objective function value when maximizing (or smallest when minimizing).

A graphical solution method can be used to solve a linear program with two variables.

Page 3: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

Linear Programming (LP) Problem

If both the objective function and the constraints are linear, the problem is referred to as a linear programming problem.

Linear functions are functions in which each variable appears in a separate term raised to the first power and is multiplied by a constant (which could be 0).

Linear constraints are linear functions that are restricted to be "less than or equal to", "equal to", or "greater than or equal to" a constant.

Page 4: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

Problem Formulation

Problem formulation or modeling is the process of translating a verbal statement of a problem into a mathematical statement.

Page 5: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

Guidelines for Model Formulation

Understand the problem thoroughly. Describe the objective. Describe each constraint. Define the decision variables. Write the objective in terms of the decision

variables. Write the constraints in terms of the decision

variables.

Page 6: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

Example 1: A Maximization Problem

LP Formulation

Max 5x1 + 7x2

s.t. x1 < 6

2x1 + 3x2 < 19

x1 + x2 < 8

x1, x2 > 0

Page 7: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

Example 1: Graphical Solution

Constraint #1 Graphed x2

x1

x1 < 6

(6, 0)

8

7

6

5

4

3

2

1

1 2 3 4 5 6 7 8 9 10

Page 8: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

Example 1: Graphical Solution

Constraint #2 Graphed

2x1 + 3x2 < 19

x2

x1

(0, 6 1/3)

(9 1/2, 0)

8

7

6

5

4

3

2

1

1 2 3 4 5 6 7 8 9 10

Page 9: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

Example 1: Graphical Solution

Constraint #3 Graphed x2

x1

x1 + x2 < 8

(0, 8)

(8, 0)

8

7

6

5

4

3

2

1

1 2 3 4 5 6 7 8 9 10

Page 10: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

Example 1: Graphical Solution

Combined-Constraint Graph

2x1 + 3x2 < 19

x2

x1

x1 + x2 < 8

x1 < 6

8

7

6

5

4

3

2

1

1 2 3 4 5 6 7 8 9 10

Page 11: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

8

7

6

5

4

3

2

1

1 2 3 4 5 6 7 8 9 10

Example 1: Graphical Solution

Feasible Solution Region

x1

FeasibleRegion

x2

Page 12: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

8

7

6

5

4

3

2

1

1 2 3 4 5 6 7 8 9 10

Example 1: Graphical Solution

Objective Function Line

x1

x2

(7, 0)

(0, 5)Objective Function5x1 + 7x2 = 35Objective Function5x1 + 7x2 = 35

Page 13: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

8

7

6

5

4

3

2

1

1 2 3 4 5 6 7 8 9 10

Example 1: Graphical Solution

Optimal Solution

x1

x2

Objective Function5x1 + 7x2 = 46Objective Function5x1 + 7x2 = 46

Optimal Solution(x1 = 5, x2 = 3)Optimal Solution(x1 = 5, x2 = 3)

Page 14: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

Summary of the Graphical Solution Procedure

for Maximization Problems Prepare a graph of the feasible solutions for

each of the constraints. Determine the feasible region that satisfies all

the constraints simultaneously.. Draw an objective function line. Move parallel objective function lines toward

larger objective function values without entirely leaving the feasible region.

Any feasible solution on the objective function line with the largest value is an optimal solution.

Page 15: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

Slack and Surplus Variables

A linear program in which all the variables are non-negative and all the constraints are equalities is said to be in standard form.

Standard form is attained by adding slack variables to "less than or equal to" constraints, and by subtracting surplus variables from "greater than or equal to" constraints.

Slack and surplus variables represent the difference between the left and right sides of the constraints.

Slack and surplus variables have objective function coefficients equal to 0.

Page 16: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

Example 1: Standard Form

Max 5x1 + 7x2 + 0s1 + 0s2 + 0s3

s.t. x1 + s1 = 6

2x1 + 3x2 + s2 = 19

x1 + x2 + s3 = 8

x1, x2 , s1 , s2 , s3 > 0

Page 17: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

Extreme Points and the Optimal Solution

The corners or vertices of the feasible region are referred to as the extreme points.

An optimal solution to an LP problem can be found at an extreme point of the feasible region.

When looking for the optimal solution, you do not have to evaluate all feasible solution points.

You have to consider only the extreme points of the feasible region.

Page 18: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

8

7

6

5

4

3

2

1

1 2 3 4 5 6 7 8 9 10

Example 1: Extreme Points

x1

FeasibleRegion

11 22

33

44

55

x2

Page 19: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

Computer Solutions

Computer programs designed to solve LP problems are now widely available.

Most large LP problems can be solved with just a few minutes of computer time.

Small LP problems usually require only a few seconds.

Linear programming solvers are now part of many spreadsheet packages, such as Microsoft Excel.

Page 20: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

Interpretation of Computer Output

In this chapter we will discuss the following output:• objective function value• values of the decision variables• reduced costs• slack/surplus

In the next chapter we will discuss how an optimal solution is affected by a change in:• a coefficient of the objective function• the right-hand side value of a constraint

Page 21: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

Example 1: Spreadsheet Solution

Partial Spreadsheet Showing Problem Data

A B C D12 Constraints X1 X2 RHS Values3 #1 1 0 64 #2 2 3 195 #3 1 1 86 Obj.Func.Coeff. 5 7

LHS Coefficients

Page 22: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

Example 1: Spreadsheet Solution

Partial Spreadsheet Showing Solution

A B C D89 X1 X2

10 5.0 3.01112 46.01314 Constraints Amount Used RHS Limits15 #1 5 <= 616 #2 19 <= 1917 #3 8 <= 8

Optimal Decision Variable Values

Maximized Objective Function

Page 23: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

Example 1: Spreadsheet Solution

Interpretation of Computer Output

We see from the previous slide that:

Objective Function Value = 46 Decision Variable #1 (x1) = 5

Decision Variable #2 (x2) = 3

Slack in Constraint #1 = 1 (= 6 - 5)

Slack in Constraint #2 = 0 (= 19 - 19)

Slack in Constraint #3 = 0 (= 8 - 8)

Page 24: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

Reduced Cost

The reduced cost for a decision variable whose value is 0 in the optimal solution is the amount the variable's objective function coefficient would have to improve (increase for maximization problems, decrease for minimization problems) before this variable could assume a positive value.

The reduced cost for a decision variable with a positive value is 0.

Page 25: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

Example 1: Spreadsheet Solution

Reduced Costs

Adjustable CellsFinal Reduced Objective Allowable Allowable

Cell Name Value Cost Coefficient Increase Decrease$B$8 X1 5.0 0.0 5 2 0.333333333$C$8 X2 3.0 0.0 7 0.5 2

ConstraintsFinal Shadow Constraint Allowable Allowable

Cell Name Value Price R.H. Side Increase Decrease$B$13 #1 5 0 6 1E+30 1$B$14 #2 19 2 19 5 1$B$15 #3 8 1 8 0.333333333 1.666666667

Page 26: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

Example 2: A Minimization Problem

LP Formulation

Min 5x1 + 2x2

s.t. 2x1 + 5x2 > 10

4x1 - x2 > 12

x1 + x2 > 4

x1, x2 > 0

Page 27: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

Example 2: Graphical Solution

Graph the Constraints Constraint 1: When x1 = 0, then x2 = 2; when

x2 = 0, then x1 = 5. Connect (5,0) and (0,2). The ">" side is above this line.

Constraint 2: When x2 = 0, then x1 = 3. But setting x1 to 0 will yield x2 = -12, which is not on the graph. Thus, to get a second point on this line, set x1 to any number larger than 3 and solve for x2: when

x1 = 5, then x2 = 8. Connect (3,0) and (5,8). The ">" side is to the right.

Constraint 3: When x1 = 0, then x2 = 4; when x2 = 0, then x1 = 4. Connect (4,0) and (0,4). The ">" side is above this line.

Page 28: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

Example 2: Graphical Solution

Constraints Graphed

5

4

3

2

1

5

4

3

2

1

1 2 3 4 5 6 1 2 3 4 5 6

x2x2

4x1 - x2 > 12

x1 + x2 > 4

4x1 - x2 > 12

x1 + x2 > 4

2x1 + 5x2 > 102x1 + 5x2 > 10

x1x1

Feasible Region

Page 29: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

Example 2: Graphical Solution

Graph the Objective FunctionSet the objective function equal to an

arbitrary constant (say 20) and graph it. For 5x1 + 2x2 = 20, when x1 = 0, then x2 = 10; when x2= 0, then x1 = 4. Connect (4,0) and (0,10).

Move the Objective Function Line Toward Optimality

Move it in the direction which lowers its value (down), since we are minimizing, until it touches the last point of the feasible region, determined by the last two constraints.

Page 30: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

Example 2: Graphical Solution

Objective Function Graphed

5

4

3

2

1

5

4

3

2

1

1 2 3 4 5 6 1 2 3 4 5 6

x2x2Min z = 5x1 + 2x2

4x1 - x2 > 12

x1 + x2 > 4

Min z = 5x1 + 2x2

4x1 - x2 > 12

x1 + x2 > 4

2x1 + 5x2 > 102x1 + 5x2 > 10

x1x1

Page 31: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

Solve for the Extreme Point at the Intersection of the Two Binding Constraints

4x1 - x2 = 12

x1+ x2 = 4

Adding these two equations gives: 5x1 = 16 or x1 = 16/5.

Substituting this into x1 + x2 = 4 gives: x2 = 4/5

Example 2: Graphical Solution

Page 32: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

Example 2: Graphical Solution

Solve for the Optimal Value of the Objective FunctionSolve for z = 5x1 + 2x2 = 5(16/5) + 2(4/5) = 88/5.

Thus the optimal solution is

x1 = 16/5; x2 = 4/5; z = 88/5

Page 33: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

Example 2: Graphical Solution

Optimal Solution

5

4

3

2

1

5

4

3

2

1

1 2 3 4 5 6 1 2 3 4 5 6

x2x2Min z = 5x1 + 2x2

4x1 - x2 > 12

x1 + x2 > 4

Min z = 5x1 + 2x2

4x1 - x2 > 12

x1 + x2 > 4

2x1 + 5x2 > 10

Optimal: x1 = 16/5 x2 = 4/5

2x1 + 5x2 > 10

Optimal: x1 = 16/5 x2 = 4/5x1x1

Page 34: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

Example 2: Spreadsheet Solution

Partial Spreadsheet Showing Problem Data

A B C D12 Constraints X1 X2 RHS3 #1 2 5 104 #2 4 -1 125 #3 1 1 46 Obj.Func.Coeff. 5 2

LHS Coefficients

Page 35: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

Example 2: Spreadsheet Solution

Partial Spreadsheet Showing Formulas

A B C D9

10 X1 X211 Dec.Var.Values1213 =B6*B11+C6*C111415 Constraints Amount Used Amount Avail.16 #1 =B3*$B$11+C3*$C$11 >= =D317 #2 =B4*$B$11+C4*$C$11 >= =D418 #3 =B5*$B$11+C5*$C$11 >= =D5

Decision Variables

Minimized Objective Function

Page 36: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

Example 2: Spreadsheet Solution

Partial Spreadsheet Showing Solution

A B C D9

10 X1 X211 Dec.Var.Values 3.20 0.8001213 17.6001415 Constraints Amount Used Amount Avail.16 #1 10.4 >= 1017 #2 12 >= 1218 #3 4 >= 4

Decision Variables

Minimized Objective Function

Page 37: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

Feasible Region

The feasible region for a two-variable LP problem can be nonexistent, a single point, a line, a polygon, or an unbounded area.

Any linear program falls in one of three categories:• is infeasible • has a unique optimal solution or alternate

optimal solutions• has an objective function that can be

increased without bound A feasible region may be unbounded and yet

there may be optimal solutions. This is common in minimization problems and is possible in maximization problems.

Page 38: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

Special Cases

Alternative Optimal SolutionsIn the graphical method, if the objective function line is parallel to a boundary constraint in the direction of optimization, there are alternate optimal solutions, with all points on this line segment being optimal.

Infeasibility A linear program which is overconstrained so that no point satisfies all the constraints is said to be infeasible.

Unboundedness(See example on upcoming slide.)

Page 39: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

Example: Infeasible Problem

Solve graphically for the optimal solution:

Max 2x1 + 6x2

s.t. 4x1 + 3x2 < 12

2x1 + x2 > 8

x1, x2 > 0

Page 40: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

Example: Infeasible Problem

There are no points that satisfy both constraints, hence this problem has no feasible region, and no optimal solution.

x2

x1

4x1 + 3x2 < 12

2x1 + x2 > 8

3 4

4

8

Page 41: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

Example: Unbounded Problem

Solve graphically for the optimal solution:

Max 3x1 + 4x2

s.t. x1 + x2 > 5

3x1 + x2 > 8

x1, x2 > 0

Page 42: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

Example: Unbounded Problem

The feasible region is unbounded and the objective function line can be moved parallel to itself without bound so that z can be increased infinitely. x2

x1

3x1 + x2 > 8

x1 + x2 > 5

Max 3x1 + 4x2

5

5

8

2.67

Page 43: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

Solving LP Problem: Blue Ridge Hot Tubs

A Graphical Approach

MAX: 350X1 + 300X2

S.T.: 1X1 + 1X2 <= 200

9X1 + 6X2 <= 1566

12X1 + 16X2 <= 2880

X1 >= 0

X2 >= 0

Page 44: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

X2

X1

250200150100 50 0

0 50

100

150

200

250

(0, 200)

(200, 0)

boundary line of pump constraint

X1 + X2 = 200

Plotting the First Constraint

Page 45: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

X2

X1

250200150100 50 0

0 50

100

150

200

250

(0, 261)

(174, 0)

boundary line of labor constraint

9X1 + 6X2 = 1566

Plotting the Second Constraint

Page 46: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

X2

X1

250200150100 50 0

0 50

100

150

200

250

(0, 180)

(240, 0)

boundary line of tubing constraint

12X1 + 16X2 = 2880Feasible Region

Plotting the Third Constraint

Page 47: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

X2Plotting A Level Curve of the

Objective Function

X1

250200150100 50 0

0 50

100

150

200

250

(0, 116.67)

(100, 0)

objective function 350X1 + 300X2 =

35000

Page 48: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

A Second Level Curve of the Objective FunctionX2

X1

250200150100 50 0

0 50

100

150

200

250

(0, 175)

(150, 0)

objective function 350X1 + 300X2 =

35000 objective function 350X1 + 300X2 =

52500

Page 49: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

Using A Level Curve to Locate the Optimal SolutionX2

X1

250200150100 50 0

0 50

100

150

200

250

objective function 350X1 + 300X2 =

35000

objective function 350X1 + 300X2 =

52500

optimal solution

Page 50: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

Calculating the Optimal Solution The optimal solution occurs where the

“pumps” and “labor” constraints intersect. This occurs where:

X1 + X2 = 200 (1)

and 9X1 + 6X2 = 1566 (2) From (1) we have, X2 = 200 -X1 (3) Substituting (3) for X2 in (2) we have,

9X1 + 6 (200 -X1) = 1566

which reduces to X1 = 122 So the optimal solution is,

X1=122, X2=200-X1=78

Total Profit = $350*122 + $300*78 = $66,100

Page 51: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

Example of a Redundant ConstraintX2

X1

250200150100 50 0

0 50

100

150

200

250

boundary line of tubing constraint

Feasible Region

boundary line of pump constraint

boundary line of labor constraint

Page 52: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

Enumerating The Corner PointsX2

X1

250200150100 50 0

0 50

100

150

200

250

(0, 180)

(174, 0)

(122, 78)

(80, 120)

(0, 0)

obj. value = $54,000

obj. value = $64,000

obj. value = $66,100

obj. value = $60,900

obj. value = $0

Note: This technique will not work if the solution is

unbounded.

Page 53: Chapter 2 Introduction to Linear Programming n Linear Programming Problem n Problem Formulation n A Maximization Problem n Graphical Solution Procedure

Understanding How Things ChangeSee file Example.xls