SlideShare a Scribd company logo
1 of 27
Copyright 2006 John Wiley & Sons, Inc.
Beni Asllani
University of Tennessee at Chattanooga
Operations Management - 5th Edition
Chapter 13 Supplement
Roberta Russell & Bernard W. Taylor, III
Linear Programming
Copyright 2006 John Wiley & Sons, Inc. Supplement 13-2
Lecture Outline
 Model Formulation
 Graphical Solution Method
 Linear Programming Model
 Solution
 Solving Linear Programming Problems
with Excel
 Sensitivity Analysis
Copyright 2006 John Wiley & Sons, Inc. Supplement 13-3
A model consisting of linear relationships
representing a firm’s objective and resource
constraints
Linear Programming (LP)
LP is a mathematical modeling technique used to
determine a level of operational activity in order to
achieve an objective, subject to restrictions called
constraints
Copyright 2006 John Wiley & Sons, Inc. Supplement 13-4
Types of LP
Copyright 2006 John Wiley & Sons, Inc. Supplement 13-5
Types of LP (cont.)
Copyright 2006 John Wiley & Sons, Inc. Supplement 13-6
Types of LP (cont.)
Copyright 2006 John Wiley & Sons, Inc. Supplement 13-7
LP Model Formulation
 Decision variables
 mathematical symbols representing levels of activity of an
operation
 Objective function
 a linear relationship reflecting the objective of an operation
 most frequent objective of business firms is to maximize profit
 most frequent objective of individual operational units (such as
a production or packaging department) is to minimize cost
 Constraint
 a linear relationship representing a restriction on decision
making
Copyright 2006 John Wiley & Sons, Inc. Supplement 13-8
LP Model Formulation (cont.)
Max/min z = c1x1 + c2x2 + ... + cnxn
subject to:
a11x1 + a12x2 + ... + a1nxn (≤, =, ≥) b1
a21x1 + a22x2 + ... + a2nxn (≤, =, ≥) b2
:
am1x1 + am2x2 + ... + amnxn (≤, =, ≥) bm
xj = decision variables
bi = constraint levels
cj = objective function coefficients
aij = constraint coefficients
Copyright 2006 John Wiley & Sons, Inc. Supplement 13-9
LP Model: Example
Labor Clay Revenue
PRODUCT (hr/unit) (lb/unit) ($/unit)
Bowl 1 4 40
Mug 2 3 50
There are 40 hours of labor and 120 pounds of clay
available each day
Decision variables
x1 = number of bowls to produce
x2 = number of mugs to produce
RESOURCE REQUIREMENTS
Copyright 2006 John Wiley & Sons, Inc. Supplement 13-10
LP Formulation: Example
Maximize Z = $40 x1 + 50 x2
Subject to
x1 + 2x2 40 hr (labor constraint)
4x1 + 3x2 120 lb (clay constraint)
x1 , x2 0
Solution is x1 = 24 bowls x2 = 8 mugs
Revenue = $1,360
Copyright 2006 John Wiley & Sons, Inc. Supplement 13-11
Graphical Solution Method
1. Plot model constraint on a set of coordinates
in a plane
2. Identify the feasible solution space on the
graph where all constraints are satisfied
simultaneously
3. Plot objective function to find the point on
boundary of this space that maximizes (or
minimizes) value of objective function
Copyright 2006 John Wiley & Sons, Inc. Supplement 13-12
Graphical Solution: Example
4 x1 + 3 x2 120 lb
x1 + 2 x2 40 hr
Area common to
both constraints
50 –
40 –
30 –
20 –
10 –
0 – |
10
|
60
|
50
|
20
|
30
|
40 x1
x2
Copyright 2006 John Wiley & Sons, Inc. Supplement 13-13
Computing Optimal Values
x1 + 2x2 = 40
4x1 + 3x2 = 120
4x1 + 8x2 = 160
-4x1 - 3x2 = -120
5x2 = 40
x2 = 8
x1 + 2(8) = 40
x1 = 24
4 x1 + 3 x2 120 lb
x1 + 2 x2 40 hr
40 –
30 –
20 –
10 –
0 – |
10
|
20
|
30
|
40
x1
x2
Z = $50(24) + $50(8) = $1,360
24
8
Copyright 2006 John Wiley & Sons, Inc. Supplement 13-14
Extreme Corner Points
x1 = 224 bowls
x2 = 8 mugs
Z = $1,360 x1 = 30 bowls
x2 = 0 mugs
Z = $1,200
x1 = 0 bowls
x2 = 20 mugs
Z = $1,000
A
B
C
|
20
|
30
|
40
|
10 x1
x2
40 –
30 –
20 –
10 –
0 –
Copyright 2006 John Wiley & Sons, Inc. Supplement 13-15
4x1 + 3x2 120 lb
x1 + 2x2 40 hr
40 –
30 –
20 –
10 –
0 –
B
|
10
|
20
|
30
|
40 x1
x2
C
A
Z = 70x1 + 20x2
Optimal point:
x1 = 30 bowls
x2 = 0 mugs
Z = $2,100
Objective Function
Copyright 2006 John Wiley & Sons, Inc. Supplement 13-16
Minimization Problem
CHEMICAL CONTRIBUTION
Brand Nitrogen (lb/bag) Phosphate (lb/bag)
Gro-plus 2 4
Crop-fast 4 3
Minimize Z = $6x1 + $3x2
subject to
2x1 + 4x2  16 lb of nitrogen
4x1 + 3x2  24 lb of phosphate
x1, x2  0
Copyright 2006 John Wiley & Sons, Inc. Supplement 13-17
14 –
12 –
10 –
8 –
6 –
4 –
2 –
0 – |
2
|
4
|
6
|
8
|
10
|
12
|
14 x1
x2
A
B
C
Graphical Solution
x1 = 0 bags of Gro-plus
x2 = 8 bags of Crop-fast
Z = $24
Z = 6x1 + 3x2
Copyright 2006 John Wiley & Sons, Inc. Supplement 13-18
Simplex Method
 A mathematical procedure for solving linear programming
problems according to a set of steps
 Slack variables added to ≤ constraints to represent unused
resources
 x1 + 2x2 + s1 = 40 hours of labor
 4x1 + 3x2 + s2 = 120 lb of clay
 Surplus variables subtracted from ≥ constraints to represent
excess above resource requirement. For example
 2x1 + 4x2 ≥ 16 is transformed into
 2x1 + 4x2 - s1 = 16
 Slack/surplus variables have a 0 coefficient in the objective
function
 Z = $40x1 + $50x2 + 0s1 + 0s2
Copyright 2006 John Wiley & Sons, Inc. Supplement 13-19
Solution
Points with
Slack
Variables
Copyright 2006 John Wiley & Sons, Inc. Supplement 13-20
Solution
Points with
Surplus
Variables
Copyright 2006 John Wiley & Sons, Inc. Supplement 13-21
Solving LP Problems with Excel
Click on “Tools”
to invoke “Solver.”
Objective function
Decision variables – bowls
(x1)=B10; mugs (x2)=B11
=C6*B10+D6*B11
=C7*B10+D7*B11
=E6-F6
=E7-F7
Copyright 2006 John Wiley & Sons, Inc. Supplement 13-22
Solving LP Problems with Excel
(cont.)
After all parameters and constraints
have been input, click on “Solve.”
Objective function
Decision variables
C6*B10+D6*B11≤40
C7*B10+D7*B11≤120
Click on “Add” to
insert constraints
Copyright 2006 John Wiley & Sons, Inc. Supplement 13-23
Solving LP Problems with Excel
(cont.)
Copyright 2006 John Wiley & Sons, Inc. Supplement 13-24
Sensitivity Analysis
Copyright 2006 John Wiley & Sons, Inc. Supplement 13-25
Sensitivity Range for Labor
Hours
Copyright 2006 John Wiley & Sons, Inc. Supplement 13-26
Sensitivity Range for Bowls
Copyright 2006 John Wiley & Sons, Inc. Supplement 13-27
Copyright 2006 John Wiley & Sons, Inc.
All rights reserved. Reproduction or translation of this
work beyond that permitted in section 117 of the 1976
United States Copyright Act without express permission
of the copyright owner is unlawful. Request for further
information should be addressed to the Permission
Department, John Wiley & Sons, Inc. The purchaser
may make back-up copies for his/her own use only and
not for distribution or resale. The Publisher assumes no
responsibility for errors, omissions, or damages caused
by the use of these programs or from the use of the
information herein.

More Related Content

Similar to Linear Programming Free Power Point Slide Presentation.ppt

LinearProgramming-Graphicalnethod.ppt
LinearProgramming-Graphicalnethod.pptLinearProgramming-Graphicalnethod.ppt
LinearProgramming-Graphicalnethod.pptMayurkumarpatil1
 
Introduction to Operations Research/ Management Science
Introduction to Operations Research/ Management Science Introduction to Operations Research/ Management Science
Introduction to Operations Research/ Management Science um1222
 
Linear Programming.ppt
Linear Programming.pptLinear Programming.ppt
Linear Programming.pptAbdullah Amin
 
introduction to Operation Research
introduction to Operation Research introduction to Operation Research
introduction to Operation Research amanyosama12
 
Integer Programming, Goal Programming, and Nonlinear Programming
Integer Programming, Goal Programming, and Nonlinear ProgrammingInteger Programming, Goal Programming, and Nonlinear Programming
Integer Programming, Goal Programming, and Nonlinear ProgrammingSalah A. Skaik - MBA-PMP®
 
LPP, Duality and Game Theory
LPP, Duality and Game TheoryLPP, Duality and Game Theory
LPP, Duality and Game TheoryPurnima Pandit
 
LINEAR PROGRAMMING
LINEAR PROGRAMMINGLINEAR PROGRAMMING
LINEAR PROGRAMMINGrashi9
 
Bba 3274 qm week 10 integer programming
Bba 3274 qm week 10 integer programmingBba 3274 qm week 10 integer programming
Bba 3274 qm week 10 integer programmingStephen Ong
 
Formulation Lpp
Formulation  LppFormulation  Lpp
Formulation LppSachin MK
 
Taylor introms10 ppt_03
Taylor introms10 ppt_03Taylor introms10 ppt_03
Taylor introms10 ppt_03QA Cmu
 
240591lecture_5_graphical_solution-1688128227959.pptx
240591lecture_5_graphical_solution-1688128227959.pptx240591lecture_5_graphical_solution-1688128227959.pptx
240591lecture_5_graphical_solution-1688128227959.pptxKushaalvarma
 
Vcs slides on or 2014
Vcs slides on or 2014Vcs slides on or 2014
Vcs slides on or 2014Shakti Ranjan
 
Heizer om10 mod_b
Heizer om10 mod_bHeizer om10 mod_b
Heizer om10 mod_bryaekle
 
Duality in Linear Programming
Duality in Linear ProgrammingDuality in Linear Programming
Duality in Linear Programmingjyothimonc
 
Linear programming problems
Linear programming problemsLinear programming problems
Linear programming problemsHanna Elise
 
Mathematics For Management CHAPTER THREE PART I.PPT
Mathematics For Management  CHAPTER THREE PART I.PPTMathematics For Management  CHAPTER THREE PART I.PPT
Mathematics For Management CHAPTER THREE PART I.PPTAYNETUTEREFE1
 

Similar to Linear Programming Free Power Point Slide Presentation.ppt (20)

linearprogramming.pdf
linearprogramming.pdflinearprogramming.pdf
linearprogramming.pdf
 
LinearProgramming-Graphicalnethod.ppt
LinearProgramming-Graphicalnethod.pptLinearProgramming-Graphicalnethod.ppt
LinearProgramming-Graphicalnethod.ppt
 
Introduction to Operations Research/ Management Science
Introduction to Operations Research/ Management Science Introduction to Operations Research/ Management Science
Introduction to Operations Research/ Management Science
 
LINEAR PROGRAMING
LINEAR PROGRAMINGLINEAR PROGRAMING
LINEAR PROGRAMING
 
Linear Programming.ppt
Linear Programming.pptLinear Programming.ppt
Linear Programming.ppt
 
introduction to Operation Research
introduction to Operation Research introduction to Operation Research
introduction to Operation Research
 
Integer Programming, Goal Programming, and Nonlinear Programming
Integer Programming, Goal Programming, and Nonlinear ProgrammingInteger Programming, Goal Programming, and Nonlinear Programming
Integer Programming, Goal Programming, and Nonlinear Programming
 
LPP, Duality and Game Theory
LPP, Duality and Game TheoryLPP, Duality and Game Theory
LPP, Duality and Game Theory
 
LINEAR PROGRAMMING
LINEAR PROGRAMMINGLINEAR PROGRAMMING
LINEAR PROGRAMMING
 
Bba 3274 qm week 10 integer programming
Bba 3274 qm week 10 integer programmingBba 3274 qm week 10 integer programming
Bba 3274 qm week 10 integer programming
 
Formulation Lpp
Formulation  LppFormulation  Lpp
Formulation Lpp
 
Taylor introms10 ppt_03
Taylor introms10 ppt_03Taylor introms10 ppt_03
Taylor introms10 ppt_03
 
Lenier Equation
Lenier EquationLenier Equation
Lenier Equation
 
240591lecture_5_graphical_solution-1688128227959.pptx
240591lecture_5_graphical_solution-1688128227959.pptx240591lecture_5_graphical_solution-1688128227959.pptx
240591lecture_5_graphical_solution-1688128227959.pptx
 
Vcs slides on or 2014
Vcs slides on or 2014Vcs slides on or 2014
Vcs slides on or 2014
 
Heizer om10 mod_b
Heizer om10 mod_bHeizer om10 mod_b
Heizer om10 mod_b
 
Optimization
OptimizationOptimization
Optimization
 
Duality in Linear Programming
Duality in Linear ProgrammingDuality in Linear Programming
Duality in Linear Programming
 
Linear programming problems
Linear programming problemsLinear programming problems
Linear programming problems
 
Mathematics For Management CHAPTER THREE PART I.PPT
Mathematics For Management  CHAPTER THREE PART I.PPTMathematics For Management  CHAPTER THREE PART I.PPT
Mathematics For Management CHAPTER THREE PART I.PPT
 

Recently uploaded

APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAssociation for Project Management
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentInMediaRes1
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon AUnboundStockton
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesFatimaKhan178732
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docxPoojaSen20
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionSafetyChain Software
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 
PSYCHIATRIC History collection FORMAT.pptx
PSYCHIATRIC   History collection FORMAT.pptxPSYCHIATRIC   History collection FORMAT.pptx
PSYCHIATRIC History collection FORMAT.pptxPoojaSen20
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsanshu789521
 

Recently uploaded (20)

APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media Component
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon A
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and Actinides
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docx
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory Inspection
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
PSYCHIATRIC History collection FORMAT.pptx
PSYCHIATRIC   History collection FORMAT.pptxPSYCHIATRIC   History collection FORMAT.pptx
PSYCHIATRIC History collection FORMAT.pptx
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha elections
 

Linear Programming Free Power Point Slide Presentation.ppt

  • 1. Copyright 2006 John Wiley & Sons, Inc. Beni Asllani University of Tennessee at Chattanooga Operations Management - 5th Edition Chapter 13 Supplement Roberta Russell & Bernard W. Taylor, III Linear Programming
  • 2. Copyright 2006 John Wiley & Sons, Inc. Supplement 13-2 Lecture Outline  Model Formulation  Graphical Solution Method  Linear Programming Model  Solution  Solving Linear Programming Problems with Excel  Sensitivity Analysis
  • 3. Copyright 2006 John Wiley & Sons, Inc. Supplement 13-3 A model consisting of linear relationships representing a firm’s objective and resource constraints Linear Programming (LP) LP is a mathematical modeling technique used to determine a level of operational activity in order to achieve an objective, subject to restrictions called constraints
  • 4. Copyright 2006 John Wiley & Sons, Inc. Supplement 13-4 Types of LP
  • 5. Copyright 2006 John Wiley & Sons, Inc. Supplement 13-5 Types of LP (cont.)
  • 6. Copyright 2006 John Wiley & Sons, Inc. Supplement 13-6 Types of LP (cont.)
  • 7. Copyright 2006 John Wiley & Sons, Inc. Supplement 13-7 LP Model Formulation  Decision variables  mathematical symbols representing levels of activity of an operation  Objective function  a linear relationship reflecting the objective of an operation  most frequent objective of business firms is to maximize profit  most frequent objective of individual operational units (such as a production or packaging department) is to minimize cost  Constraint  a linear relationship representing a restriction on decision making
  • 8. Copyright 2006 John Wiley & Sons, Inc. Supplement 13-8 LP Model Formulation (cont.) Max/min z = c1x1 + c2x2 + ... + cnxn subject to: a11x1 + a12x2 + ... + a1nxn (≤, =, ≥) b1 a21x1 + a22x2 + ... + a2nxn (≤, =, ≥) b2 : am1x1 + am2x2 + ... + amnxn (≤, =, ≥) bm xj = decision variables bi = constraint levels cj = objective function coefficients aij = constraint coefficients
  • 9. Copyright 2006 John Wiley & Sons, Inc. Supplement 13-9 LP Model: Example Labor Clay Revenue PRODUCT (hr/unit) (lb/unit) ($/unit) Bowl 1 4 40 Mug 2 3 50 There are 40 hours of labor and 120 pounds of clay available each day Decision variables x1 = number of bowls to produce x2 = number of mugs to produce RESOURCE REQUIREMENTS
  • 10. Copyright 2006 John Wiley & Sons, Inc. Supplement 13-10 LP Formulation: Example Maximize Z = $40 x1 + 50 x2 Subject to x1 + 2x2 40 hr (labor constraint) 4x1 + 3x2 120 lb (clay constraint) x1 , x2 0 Solution is x1 = 24 bowls x2 = 8 mugs Revenue = $1,360
  • 11. Copyright 2006 John Wiley & Sons, Inc. Supplement 13-11 Graphical Solution Method 1. Plot model constraint on a set of coordinates in a plane 2. Identify the feasible solution space on the graph where all constraints are satisfied simultaneously 3. Plot objective function to find the point on boundary of this space that maximizes (or minimizes) value of objective function
  • 12. Copyright 2006 John Wiley & Sons, Inc. Supplement 13-12 Graphical Solution: Example 4 x1 + 3 x2 120 lb x1 + 2 x2 40 hr Area common to both constraints 50 – 40 – 30 – 20 – 10 – 0 – | 10 | 60 | 50 | 20 | 30 | 40 x1 x2
  • 13. Copyright 2006 John Wiley & Sons, Inc. Supplement 13-13 Computing Optimal Values x1 + 2x2 = 40 4x1 + 3x2 = 120 4x1 + 8x2 = 160 -4x1 - 3x2 = -120 5x2 = 40 x2 = 8 x1 + 2(8) = 40 x1 = 24 4 x1 + 3 x2 120 lb x1 + 2 x2 40 hr 40 – 30 – 20 – 10 – 0 – | 10 | 20 | 30 | 40 x1 x2 Z = $50(24) + $50(8) = $1,360 24 8
  • 14. Copyright 2006 John Wiley & Sons, Inc. Supplement 13-14 Extreme Corner Points x1 = 224 bowls x2 = 8 mugs Z = $1,360 x1 = 30 bowls x2 = 0 mugs Z = $1,200 x1 = 0 bowls x2 = 20 mugs Z = $1,000 A B C | 20 | 30 | 40 | 10 x1 x2 40 – 30 – 20 – 10 – 0 –
  • 15. Copyright 2006 John Wiley & Sons, Inc. Supplement 13-15 4x1 + 3x2 120 lb x1 + 2x2 40 hr 40 – 30 – 20 – 10 – 0 – B | 10 | 20 | 30 | 40 x1 x2 C A Z = 70x1 + 20x2 Optimal point: x1 = 30 bowls x2 = 0 mugs Z = $2,100 Objective Function
  • 16. Copyright 2006 John Wiley & Sons, Inc. Supplement 13-16 Minimization Problem CHEMICAL CONTRIBUTION Brand Nitrogen (lb/bag) Phosphate (lb/bag) Gro-plus 2 4 Crop-fast 4 3 Minimize Z = $6x1 + $3x2 subject to 2x1 + 4x2  16 lb of nitrogen 4x1 + 3x2  24 lb of phosphate x1, x2  0
  • 17. Copyright 2006 John Wiley & Sons, Inc. Supplement 13-17 14 – 12 – 10 – 8 – 6 – 4 – 2 – 0 – | 2 | 4 | 6 | 8 | 10 | 12 | 14 x1 x2 A B C Graphical Solution x1 = 0 bags of Gro-plus x2 = 8 bags of Crop-fast Z = $24 Z = 6x1 + 3x2
  • 18. Copyright 2006 John Wiley & Sons, Inc. Supplement 13-18 Simplex Method  A mathematical procedure for solving linear programming problems according to a set of steps  Slack variables added to ≤ constraints to represent unused resources  x1 + 2x2 + s1 = 40 hours of labor  4x1 + 3x2 + s2 = 120 lb of clay  Surplus variables subtracted from ≥ constraints to represent excess above resource requirement. For example  2x1 + 4x2 ≥ 16 is transformed into  2x1 + 4x2 - s1 = 16  Slack/surplus variables have a 0 coefficient in the objective function  Z = $40x1 + $50x2 + 0s1 + 0s2
  • 19. Copyright 2006 John Wiley & Sons, Inc. Supplement 13-19 Solution Points with Slack Variables
  • 20. Copyright 2006 John Wiley & Sons, Inc. Supplement 13-20 Solution Points with Surplus Variables
  • 21. Copyright 2006 John Wiley & Sons, Inc. Supplement 13-21 Solving LP Problems with Excel Click on “Tools” to invoke “Solver.” Objective function Decision variables – bowls (x1)=B10; mugs (x2)=B11 =C6*B10+D6*B11 =C7*B10+D7*B11 =E6-F6 =E7-F7
  • 22. Copyright 2006 John Wiley & Sons, Inc. Supplement 13-22 Solving LP Problems with Excel (cont.) After all parameters and constraints have been input, click on “Solve.” Objective function Decision variables C6*B10+D6*B11≤40 C7*B10+D7*B11≤120 Click on “Add” to insert constraints
  • 23. Copyright 2006 John Wiley & Sons, Inc. Supplement 13-23 Solving LP Problems with Excel (cont.)
  • 24. Copyright 2006 John Wiley & Sons, Inc. Supplement 13-24 Sensitivity Analysis
  • 25. Copyright 2006 John Wiley & Sons, Inc. Supplement 13-25 Sensitivity Range for Labor Hours
  • 26. Copyright 2006 John Wiley & Sons, Inc. Supplement 13-26 Sensitivity Range for Bowls
  • 27. Copyright 2006 John Wiley & Sons, Inc. Supplement 13-27 Copyright 2006 John Wiley & Sons, Inc. All rights reserved. Reproduction or translation of this work beyond that permitted in section 117 of the 1976 United States Copyright Act without express permission of the copyright owner is unlawful. Request for further information should be addressed to the Permission Department, John Wiley & Sons, Inc. The purchaser may make back-up copies for his/her own use only and not for distribution or resale. The Publisher assumes no responsibility for errors, omissions, or damages caused by the use of these programs or from the use of the information herein.