1, a farmer has 20 hectares for growing barley and wheat.the farmer has to decide how much of each to grow. The cost per hectare for barley is 30 and for wheat is 30. The farmer budgeted 480. Barley requires 1 man day per hectare and wheat requires 2 man days per hectare. there are 36 man-days available.the profit on barley is 100 per hectare and on wheat is 120 per hectare. Find the numbers of hectares of each the farmer should sow to maximize profits.

1 answer

Let x be the number of hectares of barley to grow and y be the number of hectares of wheat to grow.

The objective is to maximize profit, which can be represented as a function:
Profit = 100x + 120y

Subject to the following constraints:
1) The total area of barley and wheat should not exceed 20 hectares:
x + y ≤ 20
2) The total cost should not exceed the budget of 480:
30x + 30y ≤ 480
3) The total man-days used should not exceed the available 36 man-days:
x + 2y ≤ 36

To solve this linear programming problem, we need to graph the feasible region and find the coordinates that maximize the objective function within that region.

First, let's find the vertices of the feasible region by solving the system of equations formed by the constraints:

1) x + y = 20 (convert the inequality to an equation)
2) 30x + 30y = 480
3) x + 2y = 36

Solving these equations, we get:
x = 8, y = 12 (intersection of x + y = 20 and 30x + 30y = 480)
x = 0, y = 20 (intersection of x + y = 20 and x + 2y = 36)
x = 20, y = 0 (intersection of x + y = 20 and x + 2y = 36)

Now we can calculate the profit (objective function) at each vertex:
Profit at (8, 12) = 100(8) + 120(12) = 2000
Profit at (0, 20) = 100(0) + 120(20) = 2400
Profit at (20, 0) = 100(20) + 120(0) = 2000

The maximum profit is at (0, 20) with 2400 profit.

Therefore, the farmer should sow 0 hectares of barley and 20 hectares of wheat to maximize profits.