A company makes square and triangular boxes. Square boxes take 2 minutes and yield a profit of K4 each. Triangular boxes take 3 minutes and yield a profit of K5 each. The client wants at least 25 boxes in total, with at least 5 of each type. The company has one hour (60 minutes) to make the boxes. The goal is to determine the number of each type of box to maximize profit.
2025/4/6
1. Problem Description
A company makes square and triangular boxes. Square boxes take 2 minutes and yield a profit of K4 each. Triangular boxes take 3 minutes and yield a profit of K5 each. The client wants at least 25 boxes in total, with at least 5 of each type. The company has one hour (60 minutes) to make the boxes. The goal is to determine the number of each type of box to maximize profit.
2. Solution Steps
Let be the number of square boxes and be the number of triangular boxes.
Objective function:
Maximize profit
Constraints:
Total boxes:
Minimum square boxes:
Minimum triangular boxes:
Time constraint:
are non-negative integers.
We need to find the integer values of and that satisfy all constraints and maximize .
First, analyze the feasible region. We consider integer values for and .
From , we have .
From and , we have those lower bounds.
From , we have .
We seek integer solutions.
Possible corner points of the feasible region occur where constraint lines intersect.
Intersection of and :
Multiply the first equation by 2 to get . Subtract this from to get . Then . So, is a possible solution.
Intersection of and :
Then . So, is a possible solution.
Intersection of and :
Then . So, is a possible solution.
Intersection of and :
, , , . Since must be an integer, we can consider or . Since and is false, so is not feasible.
so is not feasible.
Since we need to satisfy , try , then . which is also not feasible.
So we look for the smallest where
If , and . Then so . We also need . No integer solution.
Intersection of and :
, , , . Since must be an integer, we can consider or .
and , so (22,5) is feasible.
which is not feasible.
Try , .
Let's check the earlier intersection of the first two lines.
and . So, is a possible solution.
If , then and , so , so . There are no valid .
The other intersections yielded . Check constraint. . Not feasible. Try such that .
If , , . No integer solution.
If , , , . , ,
Let and . This satisfies all conditions:
Total boxes:
Minimum boxes: and
Time constraint:
The value of objective is
3. Final Answer
The best combination is 21 square boxes and 6 triangular boxes.