Operations Research: Applications and Algorithms
Operations Research: Applications and Algorithms
4th Edition
ISBN: 9780357907818
Author: WINSTON
Publisher: Cengage Learning US
Expert Solution & Answer
Book Icon
Chapter 4.16, Problem 11P

Explanation of Solution

Using preemptive goal programming to achieve the goal:

Consider the case of building recreational facilities at Gotham city. Goal course, Swimming pool, Gymnasiums and Tennis Courts are the recreational facilities under consideration. The facilities can be built at any of the 6 locations.

Lets,

xij={1  If facility, i is built in location j2  otherwise

Since, Golf course can only be built at site 1 or 6, so

x11+x16=1

Since each facility can be built at only one site, add the following constraints.

x22+x23+x24=1x32+x33+x34=1x42+x43+x44=1x52+x53+x54=1

The land available at site 2,3,4,5 is 70,80,95, and 120 respectively. Land required, building annual maintenance cost is tabulated below,

SiteConstruction costMaintenance costLand required
Golf34080Not relevant
Swimming3003629
Gymnasium8405038
Tennis curt851745
Site123456
Golf31NANANANA27
SwimmingNA25213232NA
GymnasiumNA37292838NA
Tennis courtNA20232220NA

a.

Priority set are given below,

Priority 1: Limit land use at each site to the land available. Thus the following constraints are added.

29x22+38x32+45x427029x23+38x33+45x438029x24+38x34+45x449529x25+38x35+45x45120

Priority 2: Construction costs should not exceed $1.2 million. Thus the following constraints are added.

340x11+340x16+300x22+300x23+300x24+300x25840x32+840x33+840x44+840x3585x42+85x43+85x44+85x451200

Priority 3: User days should exceed 200,000. Thus the following constraints are added.

31x11+27x16+25x22+21x23+32x24+32x2537x32+29x33+28x44+38x3520x42+23x43+22x44+20x45200

Priority 4: Annual maintenance cost should not exceed $200,000. Thus the following constraints are added.

80x11+80x16+36x22+36x23+36x24+36x2550x32+50x33+50x3517x42+17x43+17x44+17x45200

From the above equations it is found that these set of constraints there is no feasible region. That is all constraints cannot be met. So assign a cost value incurred if any of the priorities or goal is not met.

So, introduce the following deviational variables.

Si= Amount by which numerically under the ith goal

Si+= Amount by which numerically exceed the ith goal

Therefore, the constraints become,

29x22+38x32+45x42+S1+S1=7029x23+38x33+45x43+S2+S2=8029x24+38x34+45x44+S3+S3=9529x25+38x35+45x45+S4+S4=120

340x11+340x16+300x22+300x23+300x24+300x25840x32+840x33+840x44+840x3585x42+85x43+85x44+85x45+S5+S5=1200

31x11+27x16+25x22+21x23+32x24+32x2537x32+29x33+28x44+38x3520x42+23x43+22x44+20x45+S6+S6=200

80x11+80x16+36x22+36x23+36x24+36x2550x32+50x33+50x3517x42+17x43+17x44+17x45+S7+S7=200

Now, the goal is to minimize the deviation from each goal. Hence if the left side of constraint was less than right hand side than Si is included in minimization equation. If left hand side is more than right hand side, then Si+ is included in minimizations equation.

Hence the minimization equation is,

Minimize, z=P1S1+P1S2+P1S3+P1S4+P2S5+P3S6++P4S7

For each Priority assign a value of P1=4,P2=3,P3=2,P1=1 for priority 1,2,3,4 respectively

Blurred answer
Students have asked these similar questions
Methods (Ch6) - Review 1. (The MyRoot method) Below is a manual implementation of the Math.sqrt() method in Java. There are two methods, method #1 which calculates the square root for positive integers, and method #2, which calculates the square root of positive doubles (also works for integers). public class SquareRoot { public static void main(String[] args) { } // implement a loop of your choice here // Method that calculates the square root of integer variables public static double myRoot(int number) { double root; root=number/2; double root old; do { root old root; root (root_old+number/root_old)/2; } while (Math.abs(root_old-root)>1.8E-6); return root; } // Method that calculates the square root of double variables public static double myRoot(double number) { double root; root number/2; double root_old; do { root old root; root (root_old+number/root_old)/2; while (Math.abs (root_old-root)>1.0E-6); return root; } } Program-it-Yourself: In the main method, create a program that…
I would like to know the main features about the following 3 key concepts:1. Backup Domain Controller (BDC)2. Access Control List (ACL)3. Dynamic Memory
In cell C21, enter a formula to calculate the number of miles you expect to drive each month. Divide the value of number of miles (cell A5 from the Data sheet) by the average MPG for the vehicle multiplied by the price of a gallon of gas (cell A6 from the Data sheet).

Chapter 4 Solutions

Operations Research: Applications and Algorithms

Ch. 4.5 - Prob. 1PCh. 4.5 - Prob. 2PCh. 4.5 - Prob. 3PCh. 4.5 - Prob. 4PCh. 4.5 - Prob. 5PCh. 4.5 - Prob. 6PCh. 4.5 - Prob. 7PCh. 4.6 - Prob. 1PCh. 4.6 - Prob. 2PCh. 4.6 - Prob. 3PCh. 4.6 - Prob. 4PCh. 4.7 - Prob. 1PCh. 4.7 - Prob. 2PCh. 4.7 - Prob. 3PCh. 4.7 - Prob. 4PCh. 4.7 - Prob. 5PCh. 4.7 - Prob. 6PCh. 4.7 - Prob. 7PCh. 4.7 - Prob. 8PCh. 4.7 - Prob. 9PCh. 4.8 - Prob. 1PCh. 4.8 - Prob. 2PCh. 4.8 - Prob. 3PCh. 4.8 - Prob. 4PCh. 4.8 - Prob. 5PCh. 4.8 - Prob. 6PCh. 4.10 - Prob. 1PCh. 4.10 - Prob. 2PCh. 4.10 - Prob. 3PCh. 4.10 - Prob. 4PCh. 4.10 - Prob. 5PCh. 4.11 - Prob. 1PCh. 4.11 - Prob. 2PCh. 4.11 - Prob. 3PCh. 4.11 - Prob. 4PCh. 4.11 - Prob. 5PCh. 4.11 - Prob. 6PCh. 4.12 - Prob. 1PCh. 4.12 - Prob. 2PCh. 4.12 - Prob. 3PCh. 4.12 - Prob. 4PCh. 4.12 - Prob. 5PCh. 4.12 - Prob. 6PCh. 4.13 - Prob. 2PCh. 4.14 - Prob. 1PCh. 4.14 - Prob. 2PCh. 4.14 - Prob. 3PCh. 4.14 - Prob. 4PCh. 4.14 - Prob. 5PCh. 4.14 - Prob. 6PCh. 4.14 - Prob. 7PCh. 4.16 - Prob. 1PCh. 4.16 - Prob. 2PCh. 4.16 - Prob. 3PCh. 4.16 - Prob. 5PCh. 4.16 - Prob. 7PCh. 4.16 - Prob. 8PCh. 4.16 - Prob. 9PCh. 4.16 - Prob. 10PCh. 4.16 - Prob. 11PCh. 4.16 - Prob. 12PCh. 4.16 - Prob. 13PCh. 4.16 - Prob. 14PCh. 4.17 - Prob. 1PCh. 4.17 - Prob. 2PCh. 4.17 - Prob. 3PCh. 4.17 - Prob. 4PCh. 4.17 - Prob. 5PCh. 4.17 - Prob. 7PCh. 4.17 - Prob. 8PCh. 4 - Prob. 1RPCh. 4 - Prob. 2RPCh. 4 - Prob. 3RPCh. 4 - Prob. 4RPCh. 4 - Prob. 5RPCh. 4 - Prob. 6RPCh. 4 - Prob. 7RPCh. 4 - Prob. 8RPCh. 4 - Prob. 9RPCh. 4 - Prob. 10RPCh. 4 - Prob. 12RPCh. 4 - Prob. 13RPCh. 4 - Prob. 14RPCh. 4 - Prob. 16RPCh. 4 - Prob. 17RPCh. 4 - Prob. 18RPCh. 4 - Prob. 19RPCh. 4 - Prob. 20RPCh. 4 - Prob. 21RPCh. 4 - Prob. 22RPCh. 4 - Prob. 23RPCh. 4 - Prob. 24RPCh. 4 - Prob. 26RPCh. 4 - Prob. 27RPCh. 4 - Prob. 28RP
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
Text book image
A Guide to SQL
Computer Science
ISBN:9781111527273
Author:Philip J. Pratt
Publisher:Course Technology Ptr
Text book image
Np Ms Office 365/Excel 2016 I Ntermed
Computer Science
ISBN:9781337508841
Author:Carey
Publisher:Cengage
Text book image
C++ for Engineers and Scientists
Computer Science
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Course Technology Ptr