OPERATIONS RESEARCH >INTERNATIONAL EDITI
OPERATIONS RESEARCH >INTERNATIONAL EDITI
4th Edition
ISBN: 9780534423629
Author: WINSTON
Publisher: CENGAGE L
Expert Solution & Answer
Book Icon
Chapter 7, Problem 14RP

Explanation of Solution

Assumptions:

  • Let LAD and LAH represent the number of “100000” barrels of oil shipped from Los Angeles (L.A.) to Dallas and Houston, respectively.
  • Let SDD and SDH represent the number of “100000” barrels of oil shipped from San Diego to Dallas and Houston, respectively.
  • Let DNY and DC represent the number of “100000” barrels of oil shipped from Dallas to New York (N.Y.) and Chicago, respectively.
  • Let HNY and HC represent the number of “100000” barrels of oil shipped from Houston to N.Y. and Chicago, respectively.

Formulation:

  • It is given that in L.A., a maximum of “400000” barrels of oil are able to be produced per day. It is represented by,

    LAD+LAH<=4

  • It is given that in San Diego, a maximum of “500000” barrels of oil are able to be produced per day. It is represented by,

    SDD+SDH<=5

  • From the table, the cost of shipping “100000” barrels of oil between the cities L.A. and Dallas is “300”, and the cities San Diego and Dallas is “420”.
  • Hence, the total cost of shipping the barrels of oil from L.A. and San Diego to Dallas is as follows,

    CostD=300LAD+420SDD

  • From the table, the cost of shipping “100000” barrels of oil between the cities L.A. and Houston is “110”, and the cities San Diego and Houston is “100”.
  • Hence, the total cost of shipping the barrels of oil from L.A. and San Diego to Houston is as follows,

  CostH=110LAH+100SDH

  • It is given that in Dallas, the cost of refining oil per “100000” barrels, is “$700”. It is represented by,

    CostrefD=700LAD+SDD

  • It is given that, the cost of refining oil per “100000” barrels, is “$900” in Houston. It is represented by,

    CostrefH=900LAH+SDH

  • Given that Chicago customer needs refined oil of at least “400000” barrels of oil per day. It is represented by,

    DC+HC>=4

  • Given that N.Y. customer needs refined oil of at least “300000” barrels of oil per day. It is represented by,

    DNY+HNY>=3

  • From the table, the cost of shipping “100000” barrels of oil between the cities Dallas and N.Y.is “450”, and the cities Houston and N.Y. is “470”.
  • Hence, the total cost of shipping the barrels of oil from Dallas and Houston to N.Y. is as follows,

    CostNY=450DNY+470HNY

  • From the table, the cost of shipping “100000” barrels of oil between the cities Dallas and Chicago is “550”, and the cities Houston and Chicago is “530”

Blurred answer
Students have asked these similar questions
Exercise docID document text docID document text 1 hot chocolate cocoa beans 7 sweet sugar 2345 9 cocoa ghana africa 8 sugar cane brazil beans harvest ghana 9 sweet sugar beet cocoa butter butter truffles sweet chocolate 10 sweet cake icing 11 cake black forest Clustering by k-means, with preprocessing tokenization, term weighting TFIDF. Manhattan Distance. Number of cluster is 2. Centroid docID 2 and docID 9.
Change the following code so that there is always at least one way to get from the left corner to the top right, but the labyrinth is still randomized. The player starts at the bottom left corner of the labyrinth. He has to get to the top right corner of the labyrinth as fast he can, avoiding a meeting with the evil dragon. Take care that the player and the dragon cannot start off on walls. Also the dragon starts off from a randomly chosen position   public class Labyrinth {    private final int size;    private final Cell[][] grid;     public Labyrinth(int size) {        this.size = size;        this.grid = new Cell[size][size];        generateLabyrinth();    }     private void generateLabyrinth() {        Random rand = new Random();        for (int i = 0; i < size; i++) {            for (int j = 0; j < size; j++) {                // Randomly create walls and paths                grid[i][j] = new Cell(rand.nextBoolean());            }        }        // Ensure start and end are…
Change the following code so that it checks the following 3 conditions: 1. there is no space between each cells (imgs) 2. even if it is resized, the components wouldn't disappear 3. The GameGUI JPanel takes all the JFrame space, so that there shouldn't be extra space appearing in the frame other than the game.   Main():         Labyrinth labyrinth = new Labyrinth(10);         Player player = new Player(9, 0);        Dragon dragon = new Dragon(9, 9);         JFrame frame = new JFrame("Labyrinth Game");        GameGUI gui = new GameGUI(labyrinth, player, dragon);         frame.add(gui);        frame.setSize(600, 600);        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);        frame.setVisible(true);   public class GameGUI extends JPanel {    private final Labyrinth labyrinth;    private final Player player;    private final Dragon dragon; //labyrinth, player, dragon are just public classes     private final ImageIcon playerIcon = new ImageIcon("data/images/player.png");…
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