In mathematical optimization theory, the linear complementarity problem (LCP) arises frequently in computational mechanics and encompasses the well-known quadratic programming as a special case.
Formulation
Given a real matrix M and vector q, the linear complementarity problem seeks vectors z and w which satisfy the following constraints:
- (that is, each component of these two vectors is non-negative)
- for all i. (The complementarity condition)
A sufficient condition for existence and uniqueness of a solution to this problem is that M be symmetric positive-definite.
The vector is a slack variable, and so is generally discarded after is found. As such, the problem can also be formulated as:
- (the complementarity condition)
Relation to quadratic programming
According to the Karush–Kuhn–Tucker conditions, finding a solution to the linear complementarity problem is equivalent to minimizing the quadratic function
subject to the constraints
Because these constraints ensure that f is always non-negative, it attains its minimum of 0 at z if and only if z solves the linear complementarity problem.
If M is positive definite, any algorithm for solving (convex) QPs can of course be used to solve the LCP. However, there also exist more efficient, specialized algorithms, such as Lemke's algorithm and Dantzig's algorithm.
Also, a quadratic programming problem stated as minimize subject to as well as
is the same as solving the LCP with
In that case,
...being the multipliers on the inequality constraints, the multipliers on the non-negativity constraints, and the slack variables for the inequality constraints.
In fact, most QP solvers work on the LCP formulation, including the interior point method, principal / complementarity pivoting and active set methods.
See also
- Complementarity theory
- Physics engine Impulse/constraint type physics engines for games use this approach.
References
- Murty, K. G. (1988). Linear complementarity, linear and nonlinear programming. Sigma Series in Applied Mathematics. Vol. 3. Berlin: Heldermann Verlag. pp. xlviii+629 pp. ISBN 3-88538-403-5. (Available for download at the website of Professor Katta G. Murty.) MR 0949214
Further reading
- Cottle, Richard W.; Pang, Jong-Shi; Stone, Richard E. (1992). The linear complementarity problem. Computer Science and Scientific Computing. Boston, MA: Academic Press, Inc. pp. xxiv+762 pp. ISBN 0-12-192350-9. MR 1150683
- R. W. Cottle and G. B. Dantzig. Complementary pivot theory of mathematical programming. Linear Algebra and its Applications, 1:103-125, 1968.
- Murty, K. G. (1988). Linear complementarity, linear and nonlinear programming. Sigma Series in Applied Mathematics. Vol. 3. Berlin: Heldermann Verlag. pp. xlviii+629 pp. ISBN 3-88538-403-5. (Available for download at the website of Professor Katta G. Murty.) MR 0949214
External links
- LCPSolve — A simple procedure in GAUSS to solve a linear complementarity problem
- LCPSolve.py — A Python/NumPy implementation of LCPSolve is part of OpenOpt since its release 0.32