Linear Programming Math Example 4

Follow the full solution, then compare it with the other examples linked below.

Example 4

medium
A company makes chairs (\40profit)andtables( profit) and tables (\7070 profit). Each chair takes 2 hours, each table takes 5 hours. With 40 hours available, maximize profit.

Solution

  1. 1
    Let cc = chairs, tt = tables. Maximize P=40c+70tP = 40c + 70t subject to 2c+5tโ‰ค402c + 5t \leq 40, c,tโ‰ฅ0c, t \geq 0.
  2. 2
    Vertices: (0,0)(0,0), (20,0)(20,0), (0,8)(0,8). Profits: 00, 800800, 560560. Maximum: P=800P = 800 at 20 chairs.

Answer

\800$ with 20 chairs and 0 tables
Real-world linear programming models resources as constraints and profit as the objective. Here the chair has better profit-per-hour (\20/hrvs/hr vs \1414/hr), so producing only chairs is optimal.

About Linear Programming

Linear programming optimizes a linear objective subject to linear inequality or equality constraints.

Learn more about Linear Programming โ†’

More Linear Programming Examples