Alexandra,
To avoid confusion you have to be methodical in converting each clause in the word problem into a mathematical relation, and place those in a structure (a table here) that will clarify what needs to be done to obtain the answer. So let's begin by defining a few variables:
Let x = the number of convention-style hotels with 400 rooms to be built at $75M each.
Let y = the number of vacation-style hotels with 200 rooms to be built at $40M each.
Let C(x,y) = the total cost of building all the hotels given x & y.
Then C(c,y) = 75x + 40y million dollars for any pair x,y.
We'll now number the constraints to refer to them in our table as follows:
Constraint 1: x>=0 and y>=0 since you can't build a negative number of hotels.
Constraint 2: x <= 8 since they don't want more than 8 convention-style hotels built.
Constraint 3: x + y <= 15 since the total number of hotels can't exceed 15.
Constraint 4: x <= 2y since you want no more than twice as many convention-style than vacation-style hotels.
Constraint 5: 400x + 200y >=3000 or simplified 2x + y >= 15 since they want at least 3000 total rooms.
Those are all the constraints. Now set up a two-dimensional table to help clarify and figure out the admissible values of x & y pairings that satisfy all those constraints and then can be used to compute corresponding C(x,y)s. Let's make the x-values the rows and possible y-values the columns in this table. Then Constraints 1 & 2 say that x can only take on the values 0, 1, ... 8. So that's all the rows we need. An the y's satisfy noted & preceding constraints.
x y-values that y-values that y-values that y-values that Corresponding C(x,y) Build Costs
satisfy #3 satisfy #4 satisfy #5 satisfy ALL
_ __________ __________ __________ ___________ _______________________________
0 0, 1 ... 15 0, 1 ... 15 15 15 C(0,15) = $600M
1 0, 1 ... 14 1, 2 ... 14 13 & 14 13 & 14 C(1,13) = $595M; C(1,14)=$635M
2 0, 1 ... 13 1, 2 ... 13 11, 12 & 13 11, 12 & 13
3
4
5
6
7
8
You fill out the rest of this table and then look down the Cost column for the lowest build cost. The corresponding x, y pair then tells you how many hotels of each kind to build.
BTW, I didn't say the solution would be quick or not require a lot of manual computation. That's why linear programming is usually done by computer software, not by hand. But the software basically mimics an approach like this. Good luck
Alexandra W.
10/06/14