Explanation
We have:
Product A: 1,200 units, can be sold at $10 per unit.
Product B: 1,800 units, can be sold at $15 per unit.
Bundle: Contains one unit of A and one unit of B, sold at $23 per bundle.
The goal is to sell all units (no leftovers) and maximize revenue.
Sell All Separately
Revenue from A: 1,200 units * $10 = $12,000
Revenue from B: 1,800 units * $15 = $27,000
Total Revenue: $12,000 + $27,000 = $39,000
First, determine how many bundles we can make. Each bundle uses 1 A and 1 B.
Maximum bundles possible = min(1,200 A, 1,800 B) = 1,200 bundles.
Revenue from bundles:
1,200 bundles * $23 = $27,600
After making 1,200 bundles:
A's left: 1,200 - 1,200 = 0
B's left: 1,800 - 1,200 = 600
Revenue from remaining B's:
600 B's * $15 = $9,000
Total Revenue: $27,600 (bundles) + $9,000 (remaining B's) = $36,600
Answer: C