Linear Programming Math Example 2

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

Example 2

hard
Minimize z=2x+5yz = 2x + 5y subject to x+2yโ‰ฅ6x + 2y \geq 6, x+yโ‰ฅ4x + y \geq 4, xโ‰ฅ0x \geq 0, yโ‰ฅ0y \geq 0.

Solution

  1. 1
    Step 1: Find corner points. Intersection of x+2y=6x + 2y = 6 and x+y=4x + y = 4: subtract to get y=2y = 2, x=2x = 2. Point: (2,2)(2, 2).
  2. 2
    Step 2: Other vertices: (6,0)(6, 0) from x+2y=6x + 2y = 6, y=0y = 0; (0,4)(0, 4) from x+y=4x + y = 4, x=0x = 0.
  3. 3
    Step 3: Evaluate: z(2,2)=14z(2,2) = 14, z(6,0)=12z(6,0) = 12, z(0,4)=20z(0,4) = 20.
  4. 4
    Step 4: Minimum is z=12z = 12 at (6,0)(6, 0).

Answer

z=12z = 12 at (6,0)(6, 0)
For minimization with โ‰ฅ\geq constraints, the feasible region is unbounded on one side. Still evaluate all corner points โ€” the minimum (if finite) occurs at a vertex.

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