Let x be the number of cakes and y be the number of pies.
The time constraint for preparation is:
2x + 3y ≤ 108
The time constraint for decorating is:
x + 0.5y ≤ 20
The non-negativity constraint is:
x ≥ 0
y ≥ 0
The optimization equation is:
Profit = 25x + 12y
To find the feasible region, we need to plot the lines of the inequalities on a graph and shade the region that satisfies all the constraints.
For the first constraint, 2x + 3y ≤ 108, we can rewrite it as y ≤ (108 - 2x)/3.
Plotting this line, we get a straight line with a slope of -2/3 passing through (0, 36) and (54, 0).
For the second constraint, x + 0.5y ≤ 20, we can rewrite it as y ≤ 40 - 2x.
Plotting this line, we get a straight line with a slope of -2 passing through (0, 40) and (20, 0).
The non-negativity constraint x ≥ 0 means the feasible region is to the right of the y-axis.
The non-negativity constraint y ≥ 0 means the feasible region is above the x-axis.
Combining all the constraints, the feasible region is the shaded area that satisfies all the conditions:
```
|
|
40 +-----------------+
| +++ \
| +++ +
| +++ |
36 +-----+-----+-----+-
| / ++ |
| / + |
| + ++ |
24 +---+----+----+----+
| | |
| | |
| + +++ |
12 +---+----+----+----+
| \ ++ |
| \ ++ |
| +++ ++ |
0 +----+----+-------+
0 20 40 60 80
```
The maximum profit can be found at the corner point (0, 36) since this point is the highest in the feasible region.
Substituting x = 0 and y = 36 into the profit equation, we get:
Profit = 25(0) + 12(36) = 432
Therefore, the maximum profit the bakery can make is $432.
A local bakery sells cakes and pies. The cakes take 2 hours of preparation time and 1 hour to decorate. The pies take 3 hours of preparation time and 0.5 hours to decorate. The profit is $25 per cake and $12 per pie. The bakery can spend at most 108 hours on preparation and 20 hours on decorating their items per day.
Write the system of linear inequalities to represent this situation.
Sketch the feasible region.
Write the optimization equation.
Determine the maximum profit.
1 answer