Suvarna Garge (Editor)

Quadratic programming

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

Quadratic programming (QP) is the process of solving a special type of mathematical optimization problem—specifically, a (linearly constrained) quadratic optimization problem, that is, the problem of optimizing (minimizing or maximizing) a quadratic function of several variables subject to linear constraints on these variables. Quadratic programming is a particular type of nonlinear programming.

Contents

Problem formulation

The quadratic programming problem with n variables and m constraints can be formulated as follows. 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 will

    where xT denotes the vector transpose of 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

  • interior point,
  • active set,
  • augmented Lagrangian,
  • conjugate gradient,
  • gradient projection,
  • extensions of the simplex algorithm.
  • In the case in which Q 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 Q 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

    Minimize 1 2 x T Q x + c T x subject to E x = d

    is given by the linear system

    [ Q E T E 0 ] [ x λ ] = [ c d ]

    where λ is a set of Lagrange multipliers which come out of the solution alongside 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.

    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 d = 0 (generalizing to nonzero is straightforward). Looking at the constraint equations:

    E x = 0

    introduce a new variable y defined by

    Z y = x

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

    E Z 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:

    1 2 x T Q x + c T x 1 2 y T Z T Q Z y + ( Z T c ) T y

    the solution of which is given by:

    Z T Q Z y = Z T c

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

    Lagrangian duality

    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 , λ ) = 1 2 x T Q x + λ T ( A x b ) .

    Defining the (Lagrangian) dual function g ( λ ) , defined as g ( λ ) = inf x L ( x , λ ) , we find an infimum of L , using x L ( x , λ ) = 0 and positive-definiteness of Q:

    x = Q 1 A T λ .

    Hence the dual function is

    g ( λ ) = 1 2 λ T A Q 1 A T λ λ T b ,

    and so the Lagrangian dual of the QP is

     maximize 1 2 λ T A Q 1 A T λ λ T b subject to λ 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. If, on the other hand, Q is indefinite, then the problem is NP-hard. In fact, even if Q has only one negative eigenvalue, the problem is NP-hard.

    References

    Quadratic programming Wikipedia