A farmer has 500acres of land kept for grazing by some animals.The estimate that one cow requires five acres and one goat requires 4 acres.The farmer has the facilities for 40 cows and 100 goats.if the farmer makes $300 per cow and $100 per goat.How many cow and goat should be varse for maximum profit.(linear programming)
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
@Steven Chase
will I be able to see your previous problems?
Why don't you reply ?
Log in to reply
I think you will be able to download your own problems, but not mine. They are putting together some sort of download feature
This can be modeled per the following linear program:
M A X $ 3 0 0 c + $ 1 0 0 g
Subject to:
5 c + 4 g ≤ 5 0 0 ;
0 ≤ c ≤ 4 0 ;
0 ≤ g ≤ 1 0 0 ;
which gives the feasible region:
and the critical vertices ( c , g ) = ( 0 , 0 ) ; ( 4 0 , 0 ) ; ( 4 0 , 7 5 ) ; ( 2 0 , 1 0 0 ) ; ( 0 , 1 0 0 ) . Of these point, the maximum profit objective occurs at ( c , g ) = ( 4 0 , 7 5 ) ⇒ $ 3 0 0 ( 4 0 ) + $ 1 0 0 ( 7 5 ) = $ 1 9 , 5 0 0
leaving us with Choice A as the answer.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
|
1 |
|
Problem Loading...
Note Loading...
Set Loading...
Since the number of each type of animal is an integer, and these integers must be within finite ranges, there are finitely many permutations. One can simply evaluate them all and see which one is best.