Type: LP (Linear Programming)
This handbook explains the Material Procurement sample problem in the LP Black Box platform.
A manufacturing company needs to purchase two materials: Steel and Aluminum.
| Material | Cost per Unit ($) | Weight per Unit (kg) |
|---|---|---|
| Steel | 25 | 1.0 |
| Aluminum | 40 | 0.5 |
Minimize total purchase cost while meeting operational requirements.
Budget: Cannot spend more than $2000
Formula: 25×steel + 40×aluminum ≤ 2000
Weight Limit: Total weight cannot exceed 80 kg
Formula: 1×steel + 0.5×aluminum ≤ 80
Select Material Procurement from the "Load Sample Problem" dropdown.
Variables:
| Name | Type | Lower Bound |
|---|---|---|
| steel | Continuous | 0 |
| aluminum | Continuous | 0 |
Objective: Minimize cost (steel=25, aluminum=40)
Constraints:
The solver finds the optimal mix that minimizes cost while staying within budget and weight limits.
This sample demonstrates cost minimization with resource constraints.