Quadratic programming

This is an old revision of this page, as edited by Marekpetrik (talk | contribs) at 17:01, 6 February 2006 (Complexity). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Quadratic programming (QP) is a special type of mathematical optimization problem.

The quadratic programming problem can be formulated like this:

Assume x belongs to space. The n×n matrix E is symmetric, and h is any n×1 vector.

Minimize (with respect to x)

(Here indicates the matrix transpose of v.)

A quadratic programming problem has at least one of the following kinds of constraints:

  1. Axb (inequality constraint)
  2. Cx = d (equality constraint)

If E is positive definite, then f(x) is a convex function and constraints are linear functions. We have from optimization theory that for point x to be an optimum point it is necessary and sufficient that x is a Karush-Kuhn-Tucker (KKT) point.

If there are only equality constraints, then the QP can be solved by a linear system. Otherwise, the most common method of solving a QP is an interior point method, such as LOQO. Active set methods are also commonly used.

Complexity

For positive-definite E, the ellipsoid algorithm solves the problem in polynomial time. If E has at least one negative eigenvalue, the problem is NP-hard.

References

  • . ISBN 0716710455. {{cite book}}: Missing or empty |title= (help); Unknown parameter |Author= ignored (|author= suggested) (help); Unknown parameter |Publisher= ignored (|publisher= suggested) (help); Unknown parameter |Title= ignored (|title= suggested) (help); Unknown parameter |Year= ignored (|year= suggested) (help) A6: MP2, pg.245.
  • . ISBN 0387987932. {{cite book}}: Missing or empty |title= (help); Unknown parameter |Author= ignored (|author= suggested) (help); Unknown parameter |Publisher= ignored (|publisher= suggested) (help); Unknown parameter |Title= ignored (|title= suggested) (help); Unknown parameter |Year= ignored (|year= suggested) (help) , pg.441.
  • Quadratic programming with one negative eigenvalue is NP-hard, Panos M. Pardalos and Stephen A. Vavasis in Journal of Global Optimization, Volume 1, Number 1, 1991, pg.15-22.
Software