Quadratic programming

From Infogalactic: the planetary knowledge core
Jump to: navigation, search

Lua error in package.lua at line 80: module 'strict' not found. Quadratic programming (QP) is a special type of mathematical optimization problem. It is the problem of optimizing (minimizing or maximizing) a quadratic function of several variables subject to linear constraints on these variables.

Problem formulation

The quadratic programming problem with n variables and m constraints can be formulated as follows.[1] Given:

  • a real-valued, n-dimensional vector c,
  • an n × n-dimensional real symmetric matrix Q,
  • an m × n-dimensional real matrix A, and
  • an m-dimensional real vector b,

the objective of quadratic programming is to find an n-dimensional vector x, that

minimizes \tfrac{1}{2} \mathbf{x}^\mathrm{T} Q\mathbf{x} + \mathbf{c}^\mathrm{T} \mathbf{x}
subject to  A \mathbf{x} \leq \mathbf{b}.

where xT denotes the vector transpose of \mathbf{x}. The notation Axb means that every entry of the vector Ax is less than or equal to the corresponding entry of the vector b.

A related programming problem, quadratically constrained quadratic programming, can be posed by adding quadratic constraints on the variables.

Solution methods

For general problems a variety of methods are commonly used, including

Convex quadratic programming is a special case of the more general field of convex optimization.

Equality constraints

Quadratic programming is particularly simple when there are only equality constraints; specifically, the problem is linear. By using Lagrange multipliers and seeking the extremum of the Lagrangian, it may be readily shown that the solution to the equality constrained problem

\text{Minimize} \quad \tfrac{1}{2} \mathbf{x}^\mathrm{T} Q\mathbf{x} + \mathbf{c}^\mathrm{T} \mathbf{x}
\text{subject to} \quad E\mathbf{x} =\mathbf{d}

is given by the linear system


\begin{bmatrix}
   Q & E^T \\
   E & 0
\end{bmatrix} 
\begin{bmatrix}
   \mathbf x \\
   \lambda
\end{bmatrix}
= 
\begin{bmatrix}
   -\mathbf c \\
   \mathbf d
\end{bmatrix}

where \lambda is a set of Lagrange multipliers which come out of the solution alongside \mathbf x.

The easiest means of approaching this system is direct solution (for example, LU factorization), which for small problems is very practical. For large problems, the system poses some unusual difficulties, most notably that problem is never positive definite (even if Q is), making it potentially very difficult to find a good numeric approach, and there are many approaches to choose from dependent on the problem.[4]

If the constraints don't couple the variables too tightly, a relatively simple attack is to change the variables so that constraints are unconditionally satisfied. For example, suppose \mathbf d = 0 (generalizing to nonzero is straightforward). Looking at the constraint equations:

E\mathbf{x} = 0

introduce a new variable \mathbf y defined by

Z \mathbf{y} = \mathbf x

where \mathbf y has dimension of \mathbf x minus the number of constraints. Then

E Z \mathbf{y} = 0

and if Z is chosen so that E Z = 0 the constraint equation will be always satisfied. Finding such Z entails finding the null space of E, which is more or less simple depending on the structure of E. Substituting into the quadratic form gives an unconstrained minimization problem:


\tfrac{1}{2} \mathbf{x}^T Q\mathbf{x} + \mathbf{c}^T \mathbf{x} \quad \Rightarrow \quad
\tfrac{1}{2} \mathbf{y}^T Z^T Q Z \mathbf{y} + (Z^T \mathbf{c})^T \mathbf{y}

the solution of which is given by:


Z^T Q Z \mathbf{y} = -Z^T \mathbf{c}

Under certain conditions on Q, the reduced matrix Z^T Q Z will be positive definite. It's possible to write a variation on the conjugate gradient method which avoids the explicit calculation of Z.[5]

Lagrangian duality

<templatestyles src="Module:Hatnote/styles.css"></templatestyles>

The Lagrangian dual of a QP is also a QP. To see that let us focus on the case where c=0 and Q is positive definite. We write the Lagrangian function as

L(x,\lambda) = \tfrac{1}{2} x^{T}Qx + \lambda^{T}(Ax-b).

Defining the (Lagrangian) dual function g(\lambda), defined as g(\lambda) = \inf_{x} L(x,\lambda) , we find an infimum of L, using \nabla_{x} L(x,\lambda)=0

 x^* =  -Q^{-1}A^{T}\lambda.

hence the dual function is

g(\lambda) = -\tfrac{1}{2}\lambda^{T}AQ^{-1}A^{T}\lambda - \lambda^{T}b

hence the Lagrangian dual of the QP is

maximize:  -\tfrac{1}{2}\lambda^{T}AQ^{-1}A^{T}\lambda - \lambda^{T}b

subject to: \lambda \geqslant 0.

Besides the Lagrangian duality theory, there are other duality pairings (e.g. Wolfe, etc.).

Complexity

For positive definite Q, the ellipsoid method solves the problem in polynomial time.[6] If, on the other hand, Q is indefinite, then the problem is NP-hard.[7] In fact, even if Q has only one negative eigenvalue, the problem is NP-hard.[8]

Solvers and scripting (programming) languages

Name Brief info
AIMMS A software system for modeling and solving optimization and scheduling-type problems
ALGLIB Dual licensed (GPL/proprietary) numerical library (C++, .NET).
AMPL A popular modeling language for large-scale mathematical optimization.
APMonitor Modeling and optimization suite for LP, QP, NLP, MILP, MINLP, and DAE systems in MATLAB and Python.
CGAL An open source computational geometry package which includes a quadratic programming solver.
CPLEX Popular solver with an API (C,C++,Java,.Net, Python, Matlab and R). Free for academics.
CVXOPT Free software package for convex optimization, based on the Python programming language
Excel Solver Function A nonlinear solver adjusted to spreadsheets in which function evaluations are based on the recalculating cells. Basic version available as a standard add-on for Excel.
GAMS A high-level modeling system for mathematical optimization
Gurobi Solver with parallel algorithms for large-scale linear programs, quadratic programs and mixed-integer programs. Free for academic use.
IMSL A set of mathematical and statistical functions that programmers can embed into their software applications.
IPOPT Ipopt (Interior Point OPTimizer) is a software package for large-scale nonlinear optimization
JOptimizer open source library for solving minimization problem with linear equality and convex inequality constraints (is implemented in Java)
Artelys Knitro An Integrated Package for Nonlinear Optimization
Maple General-purpose programming language for mathematics. Solving a quadratic problem in Maple is accomplished via its QPSolve command.
MATLAB A general-purpose and matrix-oriented programming-language for numerical computing. Quadratic programming in MATLAB requires the Optimization Toolbox in addition to the base MATLAB product
Mathematica A general-purpose programming-language for mathematics, including symbolic and numerical capabilities.
MOSEK A solver for large scale optimization with API for several languages (C++,java,.net, Matlab and python)
NAG Numerical Library A collection of mathematical and statistical routines developed by the Numerical Algorithms Group for multiple programming languages (C, C++, Fortran, Visual Basic, Java and C#) and packages (MATLAB, Excel, R, LabVIEW). The Optimization chapter of the NAG Library includes routines for quadratic programming problems with both sparse and non-sparse linear constraint matrices, together with routines for the optimization of linear, nonlinear, sums of squares of linear or nonlinear functions with nonlinear, bounded or no constraints. The NAG Library has routines for both local and global optimization, and for continuous or integer problems.
OOQP OOQP is an object-oriented interior-point solver for convex QPs.[9][10]
OpenOpt BSD-licensed numerical optimization library for Python; see its QP page.
OptimJ Free Java-based Modeling Language for Optimization supporting multiple target solvers and available as an Eclipse plugin.[11][12]
qpOASES Open-source C++ implementation of an online active set strategy
R (Fortran) GPL licensed universal cross-platform statistical computation framework, see its quadprog page. Ported to javascript under MIT License. Ported to C# under LGPL.
SAS/OR A suite of solvers for Linear, Integer, Nonlinear, Derivative-Free, Network, Combinatorial and Constraint Optimization; the Algebraic modeling language OPTMODEL; and a variety of vertical solutions aimed at specific problems/markets, all of which are fully integrated with the SAS System.
TK Solver Mathematical modeling and problem solving software system based on a declarative, rule-based language, commercialized by Universal Technical Systems, Inc..
TOMLAB Supports global optimization, integer programming, all types of least squares, linear, quadratic and unconstrained programming for MATLAB. TOMLAB supports solvers like Gurobi, CPLEX, SNOPT and KNITRO.
XPRESS Solver for large-scale linear programs, quadratic programs, general nonlinear and mixed-integer programs. Has API for several programming languages, also has a modelling language Mosel and works with AMPL, GAMS. Free for academic use.

See also

References

Notes

  1. Lua error in package.lua at line 80: module 'strict' not found..
  2. 2.0 2.1 Lua error in package.lua at line 80: module 'strict' not found.
  3. Lua error in package.lua at line 80: module 'strict' not found.
  4. Google search.
  5. Lua error in package.lua at line 80: module 'strict' not found.
  6. Lua error in package.lua at line 80: module 'strict' not found. Translated in: Lua error in package.lua at line 80: module 'strict' not found.
  7. Lua error in package.lua at line 80: module 'strict' not found.
  8. Lua error in package.lua at line 80: module 'strict' not found.
  9. Lua error in package.lua at line 80: module 'strict' not found.
  10. Lua error in package.lua at line 80: module 'strict' not found.
  11. Lua error in package.lua at line 80: module 'strict' not found.
  12. Lua error in package.lua at line 80: module 'strict' not found.

Bibliography

  • Lua error in package.lua at line 80: module 'strict' not found.
  • Lua error in package.lua at line 80: module 'strict' not found. A6: MP2, pg.245.

External links

Template:Mathematical programming