Quadratic programming


Quadratic programming is the process of solving certain mathematical optimization problems involving quadratic functions. Specifically, one seeks to optimize a multivariate quadratic function subject to linear constraints on the variables. Quadratic programming is a type of nonlinear programming.
"Programming" in this context refers to a formal procedure for solving mathematical problems. This usage dates to the 1940s and is not specifically tied to the more recent notion of "computer programming." To avoid confusion, some practitioners prefer the term "optimization" — e.g., "quadratic optimization."

Problem formulation

The quadratic programming problem with variables and constraints can be formulated as follows.
Given:
the objective of quadratic programming is to find an -dimensional vector, that will
where denotes the vector transpose of, and the notation means that every entry of the vector is less than or equal to the corresponding entry of the vector .

Constrained least squares

As a special case when is symmetric positive-definite, the cost function reduces to least squares:
where follows from the Cholesky decomposition of and. Conversely, any such constrained least squares program can be equivalently framed as a quadratic programming problem, even for a generic non-square matrix.

Generalizations

When minimizing a function in the neighborhood of some reference point, is set to its Hessian matrix and is set to its gradient. 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
In the case in which is positive definite, the problem is a special case of the more general field of convex optimization.

Equality constraints

Quadratic programming is particularly simple when is positive definite and there are only equality constraints; specifically, the solution process 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
is given by the linear system
where is a set of Lagrange multipliers which come out of the solution alongside.
The easiest means of approaching this system is direct solution, which for small problems is very practical. For large problems, the system poses some unusual difficulties, most notably that the problem is never positive definite, making it potentially very difficult to find a good numeric approach, and there are many approaches to choose from dependent on the problem.
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 . Looking at the constraint equations:
introduce a new variable defined by
where has dimension of minus the number of constraints. Then
and if is chosen so that the constraint equation will be always satisfied. Finding such entails finding the null space of, which is more or less simple depending on the structure of. Substituting into the quadratic form gives an unconstrained minimization problem:
the solution of which is given by:
Under certain conditions on, the reduced matrix will be positive definite. It is possible to write a variation on the conjugate gradient method which avoids the explicit calculation of.

Lagrangian duality

The Lagrangian dual of a quadratic programming problem is also a quadratic programming problem. To see this let us focus on the case where and is positive definite. We write the Lagrangian function as
Defining the dual function as, we find an infimum of, using and positive-definiteness of :
Hence the dual function is
and so the Lagrangian dual of the quadratic programming problem is
Besides the Lagrangian duality theory, there are other duality pairings.

Run-time complexity

Convex quadratic programming

For positive definite, when the problem is convex, the ellipsoid method solves the problem in polynomial time.
Ye and Tse present a polynomial-time algorithm, which extends Karmarkar's algorithm from linear programming to convex quadratic programming. On a system with n variables and L input bits, their algorithm requires O iterations, each of which can be done using O arithmetic operations, for a total runtime complexity of O.
Kapoor and Vaidya present another algorithm, which requires O arithmetic operations.

Non-convex quadratic programming

If is indefinite, then the problem is NP-hard. A simple way to see this is to consider the non-convex quadratic constraint xi2 = xi. This constraint is equivalent to requiring that xi is in, that is, xi is a binary integer variable. Therefore, such constraints can be used to model any integer program with binary variables, which is known to be NP-hard.
Moreover, these non-convex problems might have several stationary points and local minima. In fact, even if has only one negative eigenvalue, the problem is NP-hard.
Moreover, finding a KKT point of a non-convex quadratic program is CLS-hard.

Mixed-integer quadratic programming

There are some situations where one or more elements of the vector will need to take on integer values. This leads to the formulation of a mixed-integer quadratic programming problem. Applications of MIQP include water resources and the construction of index funds.

Solvers and scripting (programming) languages

NameBrief info
AIMMSA software system for modeling and solving optimization and scheduling-type problems
ALGLIBDual licensed numerical library.
AMPLA popular modeling language for large-scale mathematical optimization.
APMonitorModeling and optimization suite for LP, QP, NLP, MILP, MINLP, and DAE systems in MATLAB and Python.
Artelys KnitroAn Integrated Package for Nonlinear Optimization
CGALAn open source computational geometry package which includes a quadratic programming solver.
CPLEXPopular solver with an API. Free for academics.
Excel Solver FunctionA 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.
GAMSA high-level modeling system for mathematical optimization
GNU OctaveA free general-purpose and matrix-oriented programming-language for numerical computing, similar to MATLAB. Quadratic programming in GNU Octave is available via its command
HiGHSOpen-source software for solving linear programming, mixed-integer programming, and convex quadratic programming models
IMSLA set of mathematical and statistical functions that programmers can embed into their software applications.
IPOPTIPOPT is a software package for large-scale nonlinear optimization.
JuliaA high-level programming language with notable solving package being
MapleGeneral-purpose programming language for mathematics. Solving a quadratic problem in Maple is accomplished via its command.
MATLABA 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
MathematicaA general-purpose programming-language for mathematics, including symbolic and numerical capabilities.
MOSEKA solver for large scale optimization with API for several languages.
NAG Numerical LibraryA collection of mathematical and statistical routines developed by the Numerical Algorithms Group for multiple programming languages and packages. 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.
ojAlgooj! Algorithms - ojAlgo - is Open Source Java code that has to do with mathematics, linear algebra and optimisation.
PythonHigh-level programming language with bindings for most available solvers. Quadratic programming is available via the function or by calling a specific solver directly.
R GPL licensed universal cross-platform statistical computation framework.
SAS/ORA 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.
SuanShuan open-source suite of optimization algorithms to solve LP, QP, SOCP, SDP, SQP in Java
TK SolverMathematical modeling and problem solving software system based on a declarative, rule-based language, commercialized by Universal Technical Systems, Inc..
TOMLABSupports global optimization, integer programming, all types of least squares, linear, quadratic and unconstrained programming for MATLAB. TOMLAB supports solvers like CPLEX, SNOPT and KNITRO.
XPRESSSolver 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.

Extensions

Polynomial optimization is a more general framework, in which the constraints can be polynomial functions of any degree, not only 2.