Skip to content
Opt Dir

Glossary ยท approach

Linear Programming (LP)

The mathematical-programming discipline that optimizes a linear objective function subject to linear equality and inequality constraints, foundational to operations research.

Linear ProgrammingLPLinear OptimizationLinear Program
Linear programming is the problem class max c^T x s.t. Ax โ‰ค b, x โ‰ฅ 0 in canonical form, where c โˆˆ R^n is the cost vector, A โˆˆ R^(mร—n) the constraint matrix, b โˆˆ R^m the right-hand side, and x โˆˆ R^n the continuous real decision variables. The feasible region X = {x : Ax โ‰ค b, x โ‰ฅ 0} is a convex polytope, and a linear objective attains its optimum at a vertex (basic feasible solution). The discipline was founded by George B. Dantzig's simplex algorithm in 1947, motivated by US Air Force planning problems (whence the term 'programming', predating its computer-science usage). Duality theory (von Neumann 1947) associates a dual LP to every primal LP, and the strong duality theorem states that if either is feasible and bounded their optimal objective values coincide; shadow prices are read from the dual variables. Complexity: Klee and Minty (1972) showed the simplex method is exponential in the worst case; Khachiyan (1979) gave the first polynomial-time LP algorithm via the ellipsoid method (theoretical); Karmarkar (1984) introduced an interior-point method that is polynomial and practical. Modern solvers combine revised simplex and interior-point algorithms, with presolve, sparse LU factorization, and crash starts, solving million-variable problems in seconds. Practical application domains include production planning, blending, transportation, cash-flow management, and the diet problem.
ร–rnek

A 28-employee food processor in Manisa solves a monthly production plan over 3 products as an LP: max 12x_1 + 18x_2 + 9x_3 (profit TRY/unit), 4 machine-hour constraints, 2 raw-material constraints, 1 demand upper bound; the 6-constraint ร— 3-variable problem solves via simplex in 0.04 seconds, and shadow prices reveal the tightest constraint โ€” the filling line โ€” has a marginal value of 47 TRY per hour.

Where this term appears

Esc Close