Karmarkar's algorithm
From Wikipedia, the free encyclopedia
Karmarkar's algorithm is an algorithm introduced by Narendra Karmarkar in 1984 for solving linear programming problems. It was the first reasonably efficient algorithm that solves these problems in polynomial time. The ellipsoid method is also polynomial time but proved to be inefficient in practice.
Where n is the number of variables and L is the number of bits of input to the algorithm, Karmarkar's algorithm requires O(n3.5L) operations on O(L) digit numbers, as compared to O(n6L) such operations for the ellipsoid algorithm. The runtime of Karmarkar's algorithm is O(n3.5L2lnLlnlnL). (see Big O notation)
Karmarkar's algorithm falls within the class of interior point methods: the current guess for the solution does not follow the boundary of the feasible set as in the simplex method, but it moves through the interior of the feasible region and reaches the optimal solution only asympotically.
[edit] The Algorithm
Consider a Linear Programming problem in matrix form:
maximize cTx | |
subject to | Ax ≤ b |
The algorithm determines the next feasible direction toward optimality and scales back by a factor 0 ≤ γ ≤ 1.
The basic algorithm is
Algorithm Karmarkar Input: A, b, c, x0, stopping criterion, γ. k ← 0 do while stopping criterion not satisfied vk ←b − Axk Dv ←diag hx ← hv ← − Ahx if then return unbounded end if α ← xk + 1 ←xk + αhx k ←k + 1 end do
- "←" is a loose shorthand for "changes to". For instance, "largest ← item" means that the value of largest changes to the value of item.
- "return" terminates the algorithm and outputs the value that follows.
[edit] Example
Consider the linear program
maximize | x1 | + | x2 | ||
subject to | 2px1 | + | x2 | p2 + 1, |
That is, there are 2 variables x1,x2 and 11 constraints associated with varying values of p. This figure shows each iteration of the algorithm as red circle points. The constraints are shown as blue lines.
[edit] References
- Ilan Adler, Mauricio G.C. and Geraldo Veiga (1989). "An Implementation of Karmarkar's Algorithm for Linear Programming". Mathematical Programming, Vol 44, p. 297–335.
- Narendra Karmarkar (1984). "A New Polynomial Time Algorithm for Linear Programming", Combinatorica, Vol 4, nr. 4, p. 373–395.