Graphical Method

Work in progress. This note is still being written and incomplete.

1 min read Last updated Tue Jul 14 2026 15:42:45 GMT+0000 (Coordinated Universal Time)

Suppose a linear program has nn decision variables. Then it can be solved graphically using a Rn\mathbb{R}^n space. Hence not suitable for n>2n > 2 (or n>3n > 3 with computer visualization).

All constraints are plotted on the same Rn\mathbb{R}^n space. Feasible region is the intersection of all constraint half-spaces. Optimal solution occurs at a vertex (and not the interior) of the feasible region.

The vertex is found by moving the objective hyperplane z=c1x1++cnxnz = c_1x_1 + \dots + c_nx_n across the feasible region. Increase zz for maximization, decrease it for minimization. The optimal vertex is the last one the hyperplane touches before leaving the region.

Vertex Property

The vertex property holds because the feasible region is a convex polygon. A linear function attains its extremum over a convex polygon at an extreme point.

Special Cases

  • Multiple optima
    The objective line is parallel to a binding constraint edge. Every point on that edge is optimal.
  • Unbounded problem
    The feasible region extends without limit in the improving direction. No finite optimum exists.
  • Infeasible problem
    The constraint half-planes have empty intersection. No solution exists.
Was this helpful?