303. Transportation Problem

A classical LP: ship supply from sources to destinations at minimum cost.

303.1. Formulation

Decision variable = units shipped from source to destination .

subject to:

Balanced: . If unbalanced, add a dummy source / sink.

303.2. Structure

303.3. Solution algorithms

  1. Northwest-corner rule — initial BFS by greedy fill from upper-left
  2. Vogel’s approximation method (VAM) — better initial BFS using opportunity costs
  3. MODI / stepping stone — improvement iterations on a BFS to optimality
  4. Transportation simplex — specialized simplex exploiting structure; per pivot vs for general

For large instances: just use network simplex.

303.4. Special cases

303.5. See also