OPERATIONS RESEARCH >INTERNATIONAL EDITI
OPERATIONS RESEARCH >INTERNATIONAL EDITI
4th Edition
ISBN: 9780534423629
Author: WINSTON
Publisher: CENGAGE L
Question
Book Icon
Chapter 6, Problem 22RP
Program Plan Intro

Optimal solution:

  • Consider the linear programming problem given below:
  • max z= 4x1+x2
  • Subject to constraints:
    • 3x1+x26
    • 5x1+3x215
    • x1,x20
  • The graph of the LP is given below:

Explanation of Solution

b.

  • In order to find the range of values of c1 for which the current basis remains optimal follow the steps stated below:
  • Step 1:
    • Using the optimal table mentioned in the question, find the basic variables.
    • It is clear from the table that here {x1,x2} are the basic variables.
  • Step 2:
    • Find the matrix B1 from the optimal table.
    • These are the columns for the slack variables in the constraints of the optimal table. Thus,
    • B1=[13232313]
  • Step 3:
    • Compute cBVB1, where ci, the coefficients are in the objective function,
    • Thus c1=3+Δ;c2=2
    • cBVB1=[3+Δ2][13232313]
    • cBVB1=[Δ3+1343+2Δ3]
  • Step 4:
    • Now compute the new row 0 that corresponds to c1=3+Δ

Explanation of Solution

c.

  • To find the range of values c2 for which the current basis remains optimal follow the steps stated below:
  • Step 1:
    • Using the optimal table given in the question, find the basic variables. It is clear from the table that here {x1,x2} are the basic variables.
  • Step 2:
    • Find the matrix B1 from the optimal table. It is simply the columns for the slack variables in the constraints of the optimal table. Thus,
    • B1=[13232313]
  • Step 3:
    • Compute cBVB1 where, ci are the coefficients in the objective function, thus c1=3;c2=2+Δ
    • cBVB1=[32+Δ][13232313]
    • cBVB1=[2Δ3+1343Δ3]
    • Step 4: Now compute the new row 0 corresponding to c2=2+Δ

Explanation of Solution

d.

  • A change in the right hand side of a constraint will affect the right hand side of the constraints in the optimal table.
  • As long as the right-hand side of each constraint in the optimal table remains non-negative, the current basis remains feasible and optimal.
  • Hence, to find the range of b1 for which the current basis remains optimal, first calculate the change in the right-hand side of the optimal table by computing B1b. Matrix B1 contains the columns for the slack variables in the constraints of optimal table.
    • B1=[13232313]b=[40+Δ50]
    • B1b=[13232313]

Explanation of Solution

e.

  • A change in the right-hand side of a constraint will affect the right-hand side of the constraints in the optimal table.
  • And as long as the right-hand side of each constraint I the optimal table remains non-negative, the current basis remains feasible and optimal.
  • Thus, to find the range of b2 for which the current basis remains optimal, first calculate the change in the right-hand side of the optimal table by computing B1b. Matrix B1 contains the columns for the slack variables in the constraints of the optimal table.
    • B1=[13232313]b=[4050+Δ]
    • B1b=[13232313]

Explanation of Solution

f.

  • Assume that the labor 1 is willing  to work 40+Δ hours then the LP’s optimal solution changes to x1=20Δ3 and x1=20Δ3, as calculated in part (d)

Explanation of Solution

g.

  • If labor 2 is ready to work for 48 hours, this implies Δ=2. Using part (e), LP’s optimal solution can be calculated as follows:
  • If x1=20+2Δ3 and x2=10Δ3
  • Put Δ=2
  • x1=20+2(2)3 and x2=10(2)3
  • x1= 563 and

Explanation of Solution

h.

  • Define x3 to be the number of type 3 radio produced in a week. New linear program is
    • max z= 3x1+2x2+5x3
    • Subject to constraint
    • x1+2x2+2x340
    • 2x1+x2+2x350
    • x1,x2,x30
  • In order to determine whether a new activity causes the current basis to be optimal or not, price out the new activity. That is calculate c¯j by applying the following formula,
  • c¯j=cBVB1ajcj
  • The new column is,
  • The new column for x3 is
  • a3=[22] B1=[13232313] cB

Blurred answer
Students have asked these similar questions
The images I have uploaded are the part 1 to 4 and questions below are continue on the questions uploaded 5. C++ Class Template with Method Stubs #pragma once #include <iostream> #include <string> #include <stdexcept> #include <vector>   template <typename T> class HashTable { private:     struct Entry {         std::string key;         T value;         bool isOccupied;         bool isDeleted;         Entry() : key(""), value(), isOccupied(false), isDeleted(false) {}     };       Entry* table;     size_t capacity;     size_t size;     double loadFactorThreshold;           size_t customHash(const std::string& key) const {         size_t hash = 5381;         for (char c : key) {             hash = ((hash  <<  5) + hash)  +  c;         }         return hash;     }       size_t probe(const std::string& key, bool forInsert = false) const;     void resize();   public:     // Constructor     HashTable(size_t initialCapacity = 101);         // Big…
this project is NOT for graded(marks) purposes, please help me with the introduction. give me answers for the project. i will include an image explaining everything about the project.
Java Graphics (Bonus In this lab, we'll be practicing what we learned about GUIs, and Mouse events. You will need to implement the following: A GUI with a drawing panel. We can click in this panel, and you will capture those clicks as a Point (see java.awt.Point) in a PointCollection class (you need to build this). The points need to be represented by circles. Below the drawing panel, you will need 5 buttons: O о о ○ An input button to register your mouse to the drawing panel. A show button to paint the points in your collection on the drawing panel. A button to shift all the points to the left by 50 pixels. The x position of the points is not allowed to go below zero. Another button to shift all the points to the right 50 pixels. " The x position of the points cannot go further than the You can implement this GUI in any way you choose. I suggest using the BorderLayout for a panel containing the buttons, and a GridLayout to hold the drawing panel and button panels. Regardless of how…

Chapter 6 Solutions

OPERATIONS RESEARCH >INTERNATIONAL EDITI

Ch. 6.3 - Prob. 4PCh. 6.3 - Prob. 5PCh. 6.3 - Prob. 6PCh. 6.3 - Prob. 7PCh. 6.3 - Prob. 8PCh. 6.3 - Prob. 9PCh. 6.4 - Prob. 1PCh. 6.4 - Prob. 2PCh. 6.4 - Prob. 3PCh. 6.4 - Prob. 4PCh. 6.4 - Prob. 5PCh. 6.4 - Prob. 6PCh. 6.4 - Prob. 7PCh. 6.4 - Prob. 8PCh. 6.4 - Prob. 9PCh. 6.4 - Prob. 10PCh. 6.4 - Prob. 11PCh. 6.4 - Prob. 12PCh. 6.4 - Prob. 13PCh. 6.5 - Prob. 1PCh. 6.5 - Find the duals of the following LPs: Ch. 6.5 - Prob. 3PCh. 6.5 - Prob. 4PCh. 6.5 - Prob. 5PCh. 6.5 - Prob. 6PCh. 6.6 - Prob. 1PCh. 6.6 - Prob. 2PCh. 6.7 - Prob. 1PCh. 6.7 - Prob. 2PCh. 6.7 - Prob. 3PCh. 6.7 - Prob. 4PCh. 6.7 - Prob. 5PCh. 6.7 - Prob. 6PCh. 6.7 - Prob. 7PCh. 6.7 - Prob. 8PCh. 6.7 - Prob. 9PCh. 6.8 - Prob. 1PCh. 6.8 - Prob. 2PCh. 6.8 - Prob. 3PCh. 6.8 - Prob. 4PCh. 6.8 - Prob. 5PCh. 6.8 - Prob. 6PCh. 6.8 - Prob. 8PCh. 6.8 - Prob. 9PCh. 6.8 - Prob. 10PCh. 6.8 - Prob. 11PCh. 6.9 - Prob. 1PCh. 6.9 - Prob. 2PCh. 6.9 - Prob. 3PCh. 6.10 - Prob. 1PCh. 6.10 - Prob. 2PCh. 6.10 - Prob. 3PCh. 6.11 - Prob. 1PCh. 6.11 - Prob. 3PCh. 6.11 - Prob. 4PCh. 6.12 - Prob. 5PCh. 6.12 - Prob. 6PCh. 6.12 - Prob. 7PCh. 6 - Prob. 1RPCh. 6 - Prob. 2RPCh. 6 - Prob. 3RPCh. 6 - Prob. 4RPCh. 6 - Prob. 5RPCh. 6 - Prob. 6RPCh. 6 - Prob. 7RPCh. 6 - Prob. 8RPCh. 6 - Prob. 9RPCh. 6 - Prob. 10RPCh. 6 - Prob. 11RPCh. 6 - Prob. 13RPCh. 6 - Prob. 14RPCh. 6 - Prob. 15RPCh. 6 - Prob. 17RPCh. 6 - Prob. 18RPCh. 6 - Prob. 19RPCh. 6 - Prob. 20RPCh. 6 - Prob. 21RPCh. 6 - Prob. 22RPCh. 6 - Prob. 25RPCh. 6 - Prob. 29RPCh. 6 - Prob. 33RPCh. 6 - Prob. 34RPCh. 6 - Prob. 35RPCh. 6 - Prob. 36RPCh. 6 - Prob. 37RP
Knowledge Booster
Background pattern image
Similar questions
SEE MORE QUESTIONS
Recommended textbooks for you
Text book image
Operations Research : Applications and Algorithms
Computer Science
ISBN:9780534380588
Author:Wayne L. Winston
Publisher:Brooks Cole