.
A farm co-op has 6000 acres available to plant with corn and soybeans.
Each acre of corn requires 9 gallons of fertilizer/herbicide and 3/4 hour of labor to harvest.
Each acre of soybeans requires 3 gallons of fertilizer/herbicide and 1 hour of labor to harvest.
The co-op has available at most 40,500 gallons of fertilizer/herbicide and at most 5250 hours of labor for harvesting.
The number of acres of each crop is limited (constrained) by the available resources: land, fertilizer/herbicide,
and labor for harvesting. Let X represent the number of acres of corn and Y represent the number of acres of soybeans.
Write the system of inequalities that describes the farm's constraints.
What is the most number of acres of corn and soybeans that the farm could plant, treat with fertilizer/herbicide and harvest?
(TIP: solve the system of inequalities and identify the extreme point(s) of the region of solution).
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The system of inequalities:
x >= 0
Y >= 0
X + Y <= 6000 (the area constraint)
9X + 3Y <= 40500 (the fertilizer/herbicid constraint)
<= 5250 (labor hours constraint).
The next assignment was formulated INACCURATELY, so I will not move further.
Actually, after reaching this point, all you need to do is to find free of charge solver in the Internet for linear programming tasks,
then input these inequalities and press the "SOLVE" button.
Also, look into the lesson
- Solving minimax problems by the Linear Programming method
to see the examples of solved problems on the linear programming method and to learn the methodology.