SlideShare a Scribd company logo
1 of 5
Download to read offline
PROBLEMS IN LINEAR PROGRAMMING 1


                   SEBASTIAN VATTAMATTAM




Problem 0.1. 2.1, p.33 in [1]
A company produces 3 types of products, A, B, C. It pro-
duces each day 50 units of A, 25 units of B and 30 units of
C. Only 100 man-hours are available daily for assembling
the products. Also the following additional information is
available.

   Product Profit per unit Assembly Time
      A            12              0.8
      B            20              1.7
      C            45              2.5
  The company has a daily order commitment of 20 units
of A, and a total of 15 units of B and C. Formulate this as
an LP model so as to maximize the total profit.

  Solution
The given data can be tabulated as follows:
          Products               A         B           C Total
Production Capacity(Units) 50             25          30
    Man-hours per unit          0.8       1.7         2.5
 Order Commitments(Units) 20 15(for B & C)
     Profit per unit(Rs)         12        20          45
Decision variables: x1 , x2 , x3 - number of units of A, B, C
Objective Function(total profit)
                        
                     x1
       z : R3 → R,  x2  → 12x1 + 20x2 + 45x3
                     x3
                             1
2                      SEBASTIAN VATTAMATTAM


The problem is to maximize the objective function z(x1 , x2 , z3 )
subject to the constraints,
  (1) 0.8x1 + 1.7x2 + 2.5x3 ≤ 100
  (2) x1 ≤ 50
  (3) x2 ≤ 25
  (4) x3 ≤ 30
  (5) x1 ≥ 20
  (6) x2 + x3 ≥ 15
  (7) x1 ≥ 0
  (8) x2 ≥ 0
  (9) x3 ≥ 0

Problem 0.2. P rob : 1, p.60 in [1]
  A company sells 2 different products, A, B, making a
profit of Rs 40 and Rs 30 per unit respectively. The pro-
duction process has a total capacity of 30,000 man-hours.
It takes 3 hours to produce a unit of A and 1 hour for B.
The maximum number of A that can be sold is 8000 and
for B it is 12,000. Formulate this as an LP model so as to
maximize the total profit.
Solution
Table 1
 Product Profit per unit Production time
    A          40             3
    B          30             1
     Table 2
                             A      B    Total
    Production capacity 8,000 12,000
          Man-hours          3      1    30,000
      Profit per unit        40     30
     x1 , x2 - number of units produced.

                              x1
               z : R2 → R,          → 40x1 + 30x2
                              x2
LINEAR PROGRAMMING                     3


The problem is to maximize the objective function z(x1 , x2 )
subject to the constraints,
  (1) 3x1 + x2 ≤ 30, 000
  (2) x1 ≤ 8, 000
  (3) x2 ≤ 12, 000
  (4) x1 ≥ 0
  (5) x2 ≥ 0

Problem 0.3. Ex : 2.2, p.33 in [1] A company has two
plants, producing 2 products, A, B. Each plant can work
for 16 hours a day. In plant 1, it takes 3 hours to produce
1000 gallons of A and 1 hour to produce 1 quintal of B.
In plant 2, it takes 2 hours to produce 1000 gallons of A
and 1.5 hours to produce 1 quintal of B. In plant 1, it costs
Rs 15,000 to produce 1000 gallons of A and Rs 28,000 to
produce 1 quintal of B. In plant 2, it costs Rs 18,000 to pro-
duce 1000 gallons of A and Rs 26,000 to produce 1 quintal
of B. The company is obliged to to produce daily at least
10,000 gallons of A and 8 quintals of B. Formulate this as
an LP model so as to minimize the cost.
Solution
Let 1000 gallons be one unit of A, and 1 quintal be one unit
of B.
Table 1
 Time(hr/unit) A B
    Plant 1      3 1
    Plant 2      2 1.5
 Table 2
Cost(Rs)  A      B
Plant 1 15,000 20,000
Plant 2 18,000 28,000
  Table 3
                      A B
Least Number of units 10 8
4                   SEBASTIAN VATTAMATTAM


Maximum Time: 16 hours/day
x1 , x2 - units of A in Plant 1 & Plant 2
x3 , x4 - units of B in Plant 1 & Plant 2
                   
                 x1
              x 
z : R4 → R,  2  → 15, 000x1 +18, 000x2 +28, 000x3 +26, 000x4
               x3 
                 x4
The problem is to minimize the total cost z(x1 , x2 , x3 , x4 )
subject to the constraints,
  (1) 3x1 + x3 ≤ 16
  (2) 2x2 + 1.5x4 ≤ 16
  (3) x1 + x2 ≥ 10
  (4) x3 + x4 ≥ 8
  (5) x1 ≥ 0
  (6) x2 ≥ 0
  (7) x3 ≥ 0
  (8) x4 ≥ 0
Problem 0.4. Omega leather goods company manufactures
two types of leather soccer balls X and Y. Each type of ball
requires work by both types of employees: semi skilled and
skilled. The semi skilled employees employ machines in the
manufacture of balls, while the skilled employees hand sew
the balls. The available time (per week) for each type of
employee and the time requirement for each type of ball are
given below:
 Type of Employee Ball X Ball Y Time Available
     Semiskilled        2        3           80
       Skilled          4        6          150
The cost of an hour of semi skilled labor is Rs.5.50 and for
skilled labor is Rs.8.50 per hour. To meet weekly require-
ment, at least 15 balls of type X and at least 10 balls of
type Y must be manufactured. Formulate and solve this LP
problem.
LINEAR PROGRAMMING                             5


Solution
x1 , x2 - number of units of X and Y produced per week
Production cost of one unit of X in a week
= 2 × 5.5 + 4 × 8.5 = 45.00
Production cost of one unit of Y in a week
= 3 × 5.5 + 6 × 8.5 = 67.50
                           x1
            z : R2 → R,         → 45x1 + 67.5x2
                           x2
The problem is to minimize z(x1 , x2 ) subject to the con-
straints,
  (1) 2x1 + 3x2 ≤ 80
  (2) 4x1 + 6x2 ≤ 150
  (3) x1 ≥ 0
  (4) x2 ≥ 0
   For online classes in Mathematics at any level, please
                           contact
                  vattamattam@gmail.com
                                  References
[1] J K Sharma,Operations Research Theory and Applications,4th Ed, Macmillan

More Related Content

What's hot

decision making criterion
decision making criteriondecision making criterion
decision making criterionGaurav Sonkar
 
Graphical Method
Graphical MethodGraphical Method
Graphical MethodSachin MK
 
Assignment oprations research luv
Assignment oprations research luvAssignment oprations research luv
Assignment oprations research luvAshok Sharma
 
Integer Programming, Gomory
Integer Programming, GomoryInteger Programming, Gomory
Integer Programming, GomoryAVINASH JURIANI
 
Simplex method concept,
Simplex method concept,Simplex method concept,
Simplex method concept,Dronak Sahu
 
LINEAR PROGRAMMING
LINEAR PROGRAMMINGLINEAR PROGRAMMING
LINEAR PROGRAMMINGrashi9
 
Chapter 3.Simplex Method hand out last.pdf
Chapter 3.Simplex Method hand out last.pdfChapter 3.Simplex Method hand out last.pdf
Chapter 3.Simplex Method hand out last.pdfTsegay Berhe
 
Linear programming
Linear programmingLinear programming
Linear programmingBiplob Deb
 
the two phase method - operations research
the two phase method - operations researchthe two phase method - operations research
the two phase method - operations research2013901097
 
Simplex method - Maximisation Case
Simplex method - Maximisation CaseSimplex method - Maximisation Case
Simplex method - Maximisation CaseJoseph Konnully
 
Mathematical formulation of lpp- properties and example
Mathematical formulation of lpp- properties and exampleMathematical formulation of lpp- properties and example
Mathematical formulation of lpp- properties and exampleSundar B N
 
Duality in Linear Programming Problem
Duality in Linear Programming ProblemDuality in Linear Programming Problem
Duality in Linear Programming ProblemRAVI PRASAD K.J.
 
Dynamic Programming
Dynamic ProgrammingDynamic Programming
Dynamic Programmingcontact2kazi
 
Lecture - Linear Programming.pdf
Lecture - Linear Programming.pdfLecture - Linear Programming.pdf
Lecture - Linear Programming.pdflucky141651
 
Mba i ot unit-1.1_linear programming
Mba i ot unit-1.1_linear programmingMba i ot unit-1.1_linear programming
Mba i ot unit-1.1_linear programmingRai University
 

What's hot (20)

simplex method
simplex methodsimplex method
simplex method
 
decision making criterion
decision making criteriondecision making criterion
decision making criterion
 
Operations Research - The Dual Simplex Method
Operations Research - The Dual Simplex MethodOperations Research - The Dual Simplex Method
Operations Research - The Dual Simplex Method
 
Graphical Method
Graphical MethodGraphical Method
Graphical Method
 
Assignment oprations research luv
Assignment oprations research luvAssignment oprations research luv
Assignment oprations research luv
 
Linear Programming
Linear  ProgrammingLinear  Programming
Linear Programming
 
Integer Programming, Gomory
Integer Programming, GomoryInteger Programming, Gomory
Integer Programming, Gomory
 
Simplex method concept,
Simplex method concept,Simplex method concept,
Simplex method concept,
 
LINEAR PROGRAMMING
LINEAR PROGRAMMINGLINEAR PROGRAMMING
LINEAR PROGRAMMING
 
Chapter 3.Simplex Method hand out last.pdf
Chapter 3.Simplex Method hand out last.pdfChapter 3.Simplex Method hand out last.pdf
Chapter 3.Simplex Method hand out last.pdf
 
Linear programming
Linear programmingLinear programming
Linear programming
 
the two phase method - operations research
the two phase method - operations researchthe two phase method - operations research
the two phase method - operations research
 
Simplex method - Maximisation Case
Simplex method - Maximisation CaseSimplex method - Maximisation Case
Simplex method - Maximisation Case
 
Mathematical formulation of lpp- properties and example
Mathematical formulation of lpp- properties and exampleMathematical formulation of lpp- properties and example
Mathematical formulation of lpp- properties and example
 
Duality in Linear Programming Problem
Duality in Linear Programming ProblemDuality in Linear Programming Problem
Duality in Linear Programming Problem
 
Modi method
Modi methodModi method
Modi method
 
Dynamic Programming
Dynamic ProgrammingDynamic Programming
Dynamic Programming
 
Lecture - Linear Programming.pdf
Lecture - Linear Programming.pdfLecture - Linear Programming.pdf
Lecture - Linear Programming.pdf
 
Lecture27 linear programming
Lecture27 linear programmingLecture27 linear programming
Lecture27 linear programming
 
Mba i ot unit-1.1_linear programming
Mba i ot unit-1.1_linear programmingMba i ot unit-1.1_linear programming
Mba i ot unit-1.1_linear programming
 

Similar to P

181_Sample-Chapter.pdf
181_Sample-Chapter.pdf181_Sample-Chapter.pdf
181_Sample-Chapter.pdfThanoonQasem
 
LPP Graphical.ppt
LPP Graphical.pptLPP Graphical.ppt
LPP Graphical.pptcutmolp
 
Formulation Lpp
Formulation  LppFormulation  Lpp
Formulation LppSachin MK
 
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
 
Linear Programming Feasible Region
Linear Programming Feasible RegionLinear Programming Feasible Region
Linear Programming Feasible RegionVARUN MODI
 
Optimización de recursos en la confección de overoles
Optimización de recursos en la confección de overolesOptimización de recursos en la confección de overoles
Optimización de recursos en la confección de overolesantonio alejo
 
Logistics. Example
Logistics. ExampleLogistics. Example
Logistics. ExampleSSA KPI
 
4. linear programming using excel solver
4. linear programming using excel solver4. linear programming using excel solver
4. linear programming using excel solverHakeem-Ur- Rehman
 
1.Operations Research.ppt
1.Operations Research.ppt1.Operations Research.ppt
1.Operations Research.pptGeethPerera6
 
Linear programming
Linear programmingLinear programming
Linear programmingTarun Gehlot
 
07 a70107 waterresourcessystemplanningandmanagement
07 a70107 waterresourcessystemplanningandmanagement07 a70107 waterresourcessystemplanningandmanagement
07 a70107 waterresourcessystemplanningandmanagementimaduddin91
 
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
 
7b3ba module ii lpp_part i- formulation (a)
7b3ba module ii lpp_part i- formulation (a)7b3ba module ii lpp_part i- formulation (a)
7b3ba module ii lpp_part i- formulation (a)Abhishek Agrahari
 
7b3ba module ii lpp_part i- formulation (a)
7b3ba module ii lpp_part i- formulation (a)7b3ba module ii lpp_part i- formulation (a)
7b3ba module ii lpp_part i- formulation (a)Abhishek Agrahari
 

Similar to P (20)

181_Sample-Chapter.pdf
181_Sample-Chapter.pdf181_Sample-Chapter.pdf
181_Sample-Chapter.pdf
 
LPP Graphical.ppt
LPP Graphical.pptLPP Graphical.ppt
LPP Graphical.ppt
 
Formulation Lpp
Formulation  LppFormulation  Lpp
Formulation Lpp
 
Linear Programming
Linear ProgrammingLinear Programming
Linear Programming
 
Linear Programming
Linear ProgrammingLinear Programming
Linear Programming
 
Linear Programming
Linear ProgrammingLinear Programming
Linear Programming
 
Lenier Equation
Lenier EquationLenier Equation
Lenier Equation
 
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
 
Linear Programming Feasible Region
Linear Programming Feasible RegionLinear Programming Feasible Region
Linear Programming Feasible Region
 
Optimización de recursos en la confección de overoles
Optimización de recursos en la confección de overolesOptimización de recursos en la confección de overoles
Optimización de recursos en la confección de overoles
 
Decision making
Decision makingDecision making
Decision making
 
Logistics. Example
Logistics. ExampleLogistics. Example
Logistics. Example
 
Intro week3 excel vba_114e
Intro week3 excel vba_114eIntro week3 excel vba_114e
Intro week3 excel vba_114e
 
4. linear programming using excel solver
4. linear programming using excel solver4. linear programming using excel solver
4. linear programming using excel solver
 
1.Operations Research.ppt
1.Operations Research.ppt1.Operations Research.ppt
1.Operations Research.ppt
 
Linear programming
Linear programmingLinear programming
Linear programming
 
07 a70107 waterresourcessystemplanningandmanagement
07 a70107 waterresourcessystemplanningandmanagement07 a70107 waterresourcessystemplanningandmanagement
07 a70107 waterresourcessystemplanningandmanagement
 
Introduction to Operations Research/ Management Science
Introduction to Operations Research/ Management Science Introduction to Operations Research/ Management Science
Introduction to Operations Research/ Management Science
 
7b3ba module ii lpp_part i- formulation (a)
7b3ba module ii lpp_part i- formulation (a)7b3ba module ii lpp_part i- formulation (a)
7b3ba module ii lpp_part i- formulation (a)
 
7b3ba module ii lpp_part i- formulation (a)
7b3ba module ii lpp_part i- formulation (a)7b3ba module ii lpp_part i- formulation (a)
7b3ba module ii lpp_part i- formulation (a)
 

More from Sebastian Vattamattam (11)

Sebastian Kappen, Ecology and Culture (Malayalam)
Sebastian Kappen, Ecology and Culture (Malayalam)Sebastian Kappen, Ecology and Culture (Malayalam)
Sebastian Kappen, Ecology and Culture (Malayalam)
 
BOOK OF BEAUTIFUL CURVES
BOOK OF BEAUTIFUL CURVESBOOK OF BEAUTIFUL CURVES
BOOK OF BEAUTIFUL CURVES
 
Topo15slide
Topo15slideTopo15slide
Topo15slide
 
Problems in Linear Programming 2
Problems in Linear Programming 2Problems in Linear Programming 2
Problems in Linear Programming 2
 
Linear Differential Equations1
Linear Differential Equations1Linear Differential Equations1
Linear Differential Equations1
 
Linear eqn
Linear eqnLinear eqn
Linear eqn
 
Graph T
Graph TGraph T
Graph T
 
Transformation of Curves
Transformation of CurvesTransformation of Curves
Transformation of Curves
 
Functions, Graphs, & Curves
Functions, Graphs, & CurvesFunctions, Graphs, & Curves
Functions, Graphs, & Curves
 
Beautiful Mathematical Curves: 11 - 20
Beautiful Mathematical Curves: 11 - 20Beautiful Mathematical Curves: 11 - 20
Beautiful Mathematical Curves: 11 - 20
 
Slide Show 1
Slide Show 1Slide Show 1
Slide Show 1
 

P

  • 1. PROBLEMS IN LINEAR PROGRAMMING 1 SEBASTIAN VATTAMATTAM Problem 0.1. 2.1, p.33 in [1] A company produces 3 types of products, A, B, C. It pro- duces each day 50 units of A, 25 units of B and 30 units of C. Only 100 man-hours are available daily for assembling the products. Also the following additional information is available. Product Profit per unit Assembly Time A 12 0.8 B 20 1.7 C 45 2.5 The company has a daily order commitment of 20 units of A, and a total of 15 units of B and C. Formulate this as an LP model so as to maximize the total profit. Solution The given data can be tabulated as follows: Products A B C Total Production Capacity(Units) 50 25 30 Man-hours per unit 0.8 1.7 2.5 Order Commitments(Units) 20 15(for B & C) Profit per unit(Rs) 12 20 45 Decision variables: x1 , x2 , x3 - number of units of A, B, C Objective Function(total profit)   x1 z : R3 → R,  x2  → 12x1 + 20x2 + 45x3 x3 1
  • 2. 2 SEBASTIAN VATTAMATTAM The problem is to maximize the objective function z(x1 , x2 , z3 ) subject to the constraints, (1) 0.8x1 + 1.7x2 + 2.5x3 ≤ 100 (2) x1 ≤ 50 (3) x2 ≤ 25 (4) x3 ≤ 30 (5) x1 ≥ 20 (6) x2 + x3 ≥ 15 (7) x1 ≥ 0 (8) x2 ≥ 0 (9) x3 ≥ 0 Problem 0.2. P rob : 1, p.60 in [1] A company sells 2 different products, A, B, making a profit of Rs 40 and Rs 30 per unit respectively. The pro- duction process has a total capacity of 30,000 man-hours. It takes 3 hours to produce a unit of A and 1 hour for B. The maximum number of A that can be sold is 8000 and for B it is 12,000. Formulate this as an LP model so as to maximize the total profit. Solution Table 1 Product Profit per unit Production time A 40 3 B 30 1 Table 2 A B Total Production capacity 8,000 12,000 Man-hours 3 1 30,000 Profit per unit 40 30 x1 , x2 - number of units produced. x1 z : R2 → R, → 40x1 + 30x2 x2
  • 3. LINEAR PROGRAMMING 3 The problem is to maximize the objective function z(x1 , x2 ) subject to the constraints, (1) 3x1 + x2 ≤ 30, 000 (2) x1 ≤ 8, 000 (3) x2 ≤ 12, 000 (4) x1 ≥ 0 (5) x2 ≥ 0 Problem 0.3. Ex : 2.2, p.33 in [1] A company has two plants, producing 2 products, A, B. Each plant can work for 16 hours a day. In plant 1, it takes 3 hours to produce 1000 gallons of A and 1 hour to produce 1 quintal of B. In plant 2, it takes 2 hours to produce 1000 gallons of A and 1.5 hours to produce 1 quintal of B. In plant 1, it costs Rs 15,000 to produce 1000 gallons of A and Rs 28,000 to produce 1 quintal of B. In plant 2, it costs Rs 18,000 to pro- duce 1000 gallons of A and Rs 26,000 to produce 1 quintal of B. The company is obliged to to produce daily at least 10,000 gallons of A and 8 quintals of B. Formulate this as an LP model so as to minimize the cost. Solution Let 1000 gallons be one unit of A, and 1 quintal be one unit of B. Table 1 Time(hr/unit) A B Plant 1 3 1 Plant 2 2 1.5 Table 2 Cost(Rs) A B Plant 1 15,000 20,000 Plant 2 18,000 28,000 Table 3 A B Least Number of units 10 8
  • 4. 4 SEBASTIAN VATTAMATTAM Maximum Time: 16 hours/day x1 , x2 - units of A in Plant 1 & Plant 2 x3 , x4 - units of B in Plant 1 & Plant 2   x1 x  z : R4 → R,  2  → 15, 000x1 +18, 000x2 +28, 000x3 +26, 000x4  x3  x4 The problem is to minimize the total cost z(x1 , x2 , x3 , x4 ) subject to the constraints, (1) 3x1 + x3 ≤ 16 (2) 2x2 + 1.5x4 ≤ 16 (3) x1 + x2 ≥ 10 (4) x3 + x4 ≥ 8 (5) x1 ≥ 0 (6) x2 ≥ 0 (7) x3 ≥ 0 (8) x4 ≥ 0 Problem 0.4. Omega leather goods company manufactures two types of leather soccer balls X and Y. Each type of ball requires work by both types of employees: semi skilled and skilled. The semi skilled employees employ machines in the manufacture of balls, while the skilled employees hand sew the balls. The available time (per week) for each type of employee and the time requirement for each type of ball are given below: Type of Employee Ball X Ball Y Time Available Semiskilled 2 3 80 Skilled 4 6 150 The cost of an hour of semi skilled labor is Rs.5.50 and for skilled labor is Rs.8.50 per hour. To meet weekly require- ment, at least 15 balls of type X and at least 10 balls of type Y must be manufactured. Formulate and solve this LP problem.
  • 5. LINEAR PROGRAMMING 5 Solution x1 , x2 - number of units of X and Y produced per week Production cost of one unit of X in a week = 2 × 5.5 + 4 × 8.5 = 45.00 Production cost of one unit of Y in a week = 3 × 5.5 + 6 × 8.5 = 67.50 x1 z : R2 → R, → 45x1 + 67.5x2 x2 The problem is to minimize z(x1 , x2 ) subject to the con- straints, (1) 2x1 + 3x2 ≤ 80 (2) 4x1 + 6x2 ≤ 150 (3) x1 ≥ 0 (4) x2 ≥ 0 For online classes in Mathematics at any level, please contact vattamattam@gmail.com References [1] J K Sharma,Operations Research Theory and Applications,4th Ed, Macmillan