Authors: Kayleigh Calder (kjc263), Colton Jacobucci (cdj59), Carolyn Johnson (cj456), Caleb McKinney (cdm235), Olivia Thomas (oat9) (5800 Fall 2024)<br />
This web page is a duplicate of https://optimization.mccormick.northwestern.edu/index.php/Quadratic_programming
Stewards: Nathan Preuss, Wei-Han Chen, Tianqi Xiao, Guoqing Hu
Author: Jack Heider (ChE 345 Spring 2015) <br/>
Steward: Dajun Yue, Fengqi You
=Introduction=
=Introduction=
A quadratic program is an optimization problem that comprises a quadratic objective function bound to linear constraints.<sup>1</sup> Quadratic Programming (QP) is a common type of non-linear programming (NLP) used to optimize such problems.
[[File:QPPic.jpg|frame|Optimizating of a quadratic function.<span style="font-size: 8pt; position:relative; bottom: 0.3em;">12</span>]]
One of the earliest known theories for QP was documented in 1943 by Columbia University’s H.B. Mann<sup>2,3</sup>, but many are given credit for their early contributions to the field such as E. W. Barankin and R. Dorfman in their naval research throughout the 1950s<sup>4</sup> and Princeton University’s Wolfe and Frank for their research in 1956.<sup>5</sup> The field has since made other prominent strides, such as when Harry Markowitz famously received the Nobel Prize in Economics in 1990 for his application of QP in optimizing his portfolio’s financial risk and reward.<sup>6</sup>
QP is essential to the field of optimization for multiple reasons. Firstly, quadratic problems can often be applied to real world applications due to the quadratic nature of variance, the sum of squares deviation used to represent uncertainty.<sup>6</sup> QP can also be applied to a wide variety of real-world problems such as scheduling, planning, flow computations, engineering modeling, design and control, game theory, and economics.<sup>7</sup> Secondly, QP is commonly used as a steppingstone for more general optimization problems such as sequential quadratic programming and augmented Lagrangian methods.<sup>1</sup>
=Algorithm Discussion=
=== General Problem Fomulation ===
Quadratic programming problems are typically formatted as minimization problems, and the general mathematical formulation is:
* <math>y\in R^m</math> is an m-dimensional vector dual variable.
* <math>x\in R^n</math> is the prime decision variable.
* <math>s\in R^n</math> is the slack variable.
* <math>Q\in R^{n\times n}</math> is a symmetric, positive semi-definite <math>n \times n</math> matrix representing the quadratic coefficients.
* <math>A\in R^{m\times n}</math> is the inequality constraint matrix.
* <math>b \in R^m</math> is an <math>m</math> dimensional vector representing a constraint boundary.
* <math>c \in R^n</math> is a linear coefficient for the dual target.
The general conditions for using QP for an optimization problem begin with having a quadratic objective function accompanied by linear constraints. For convex problems, Q defined in the equation above must be positive semi-definite; if not, there may be multiple local solutions meeting minimization criteria and deemed non-convex. As later sections in this paper will discuss, problem dimensions may vary in size, but it is not an issue as certain quadratic algorithms are tailored to meet computational demand. Finally, the feasibility region must be non-empty- otherwise there will be no solution.
==Active Set Methods==
The active set algorithm is a method used to solve quadratic programming problems by iteratively identifying and working with the set of constraints that are most likely to influence the solution, called the active set. More specifically, the algorithm maintains a subset of constraints that are treated as equalities at each step, solving a simplified quadratic programming problem for this subset. Constraints can be added or removed from the active set as the solution progresses until optimality conditions are satisfied.
=== When to Use ===
Active set methods are best suited for most linear programming problems, particularly those with manageable dimensions, as they exploit the problem's structure and update estimates of active constraints iteratively. However, for problems where nonlinearity or degeneracy complicates the constraint structure, active set methods, as a broader class, are useful since they generalize the simplex approach to handle quadratic or nonlinear constraints. In cases with large-scale problems or poor simplex performance due to its exponential worst-case complexity, alternative methods like interior-point techniques may be more appropriate.
=== Implementation Steps ===
# Start with an Initial Solution and Active Set
#* Begin with a feasible point that satisfies all constraints.
#* Identify which constraints are active (equality constraints or inequality constraints that are tight).
# Iterative Process:
#* Solve a Reduced Problem: Fix the active constraints as equalities and solve the resulting smaller QP problem.
#* Check Optimality: Verify if the current solution satisfies the Karush-Kuhn-Tucker conditions.
#* Update the Active Set:
#** Add violated constraints to the active set if they are not satisfied.
#** Remove constraints from the active set if they are no longer binding.
# Repeat Until Convergence:
#* Iterate through the process until the optimal solution is found, ensuring all constraints are satisfied.
=== Pseudocode ===
This is the algorithm for Active-Set Method for Convex QP where:
* <math>x\in R^n</math> is the '''decision variable''' vector.
* <math>G\in R^{n\times n}</math> is a symmetric, positive semi-definite <math>n \times n</math> matrix representing the quadratic coefficients.
* <math>c\in R^n</math> is a linear coefficient vector.
* <math>W</math> represents the active constraints.
Compute a feasible starting point <math>x_0</math>;
Set <math>W_0</math> to be a subset of the active constraints at <math>x_0</math>;
for <math>k=0,1,2...</math>
: Solve for <math>p_k=\frac{1}{2}x_k^TGx_k+c^Tx_k</math>
: '''if''' <math>p_k=0</math>
:: Compute Lagrange multipliers <math>\hat{\lambda}_i</math> that satisfy <math>\Sigma_{i\epsilon\hat{W}}a_i\hat{\lambda}_i=g=G\hat{x}+c,</math> with <math>\hat{W}=W_k</math>
:: '''if''' <math>\hat{\lambda}_i\geq0</math> for all <math>i \in W_k \cap \jmath </math>
::: '''stop''' with solution <math>x^*=x_k; </math>
::: obtain <math>W_{k+1} </math> by adding one of the blocking constraints to <math>W_k; </math>
:: '''else'''
::: <math>W_{k+1}\longleftarrow W_k; </math>
'''end (for)'''
==Interior Point Methods==
Interior-point methods, developed in the 1980s, are a class of algorithms for solving large-scale linear programs using concepts from nonlinear programming. Unlike the active set methods, which navigate along the boundaries of the feasible region by testing vertices, interior-point methods approach the solution from within or near the interior, avoiding boundary constraints. These methods were inspired by the simplex method's poor worst-case complexity and the desire for algorithms with stronger theoretical guarantees, such as the ellipsoid method and Karmarkar's algorithm.
=== When to Use ===
Interior-point methods are particularly effective for large-scale optimization problems where the simplex method's boundary-focused approach may struggle. They require fewer iterations than simplex, although each iteration is computationally more intensive. Modern primal-dual interior-point methods are efficient, robust, and form the foundation of many current optimization software tools, making them the preferred choice for solving large or complex linear programs.
=== Implementation Steps (Convex Quadratic Program with a Positive Semi-Definite Matrix) ===
# Initial
#* Analyze the optimization problem and constraints
#* Add slack variables to problem to account for inequalities (if applicable) and write problem in general form and take barrier approach by adding in logarithmic component
# Iterative Process
#* Define the KKT conditions
#* Define a complementary measure
#* Define the perturbed KKT condition
#* Apply Newton’s method to formulate a system of linear equations
# Solve
#* Solve and iterate until convergence.
=== Pseudocode ===
This is the psuedocode for the Basic Interior-Point Algorithm where:
* <math>A</math> is a matrix of constraint coefficients.
* <math>b</math> is a vector of constraints.
* <math>l</math> represents the lower bounds on the decision variables.
* <math>u</math> represents the upper bounds on the decision variables.
* <math>\mu</math> is the barrier parameter; a small positive scalar controlling the size of the barrier term added to enforce inequality constraints.
* <math>\in</math> is the convergance tolerance for stopping criteria.
* <math>\alpha</math> is the step size for the line search during iterations.
* <math>k</math> is the iteration number.
* <math>Q</math> is the quadratic term coefficient.
* <math>c</math> is the linear term coefficient.
Choose <math>x_0</math> and <math>s_0\geq 0 </math>, and compute initial values for the multipliers <math>y_0</math> and <math>z_0 \geq 0 </math>.
Select an initial barrier parameter <math>\mu_0>0</math> and parameters <math>\sigma, \tau \in (0,1)</math>. Set <math>k\leftarrow 0</math>.
'''repeat''' until a stopping test for the nonlinear program is satisfied.
::: <math>x^+ = x + a_s^{max} p_x, s^+ = s + a_s^{max} p_s , </math>
::: <math>y^+ = x + a_z^{max} p_y, z^+ = z + a_z^{max} p_z , </math>
:: Set <math>\mu_{k+1} \leftarrow \mu_k </math> and <math>k\leftarrow k + 1; </math>
: '''end'''
: Choose <math>\mu_k \in (0, \mu_k); </math>
'''end'''
==Gradient Projection Methods==
The gradient projection method is an optimization technique used to solve constrained problems, particularly those with simple bound or inequality constraints. It combines gradient descent with a projection step that ensures iterates remain within the feasible region by projecting them back onto the constraint set. The method is iterative and adjusts the search direction based on the negative gradient of the objective function, while ensuring feasibility at each step. This approach is widely used for convex problems and has extensions for handling more complex constraint sets.
=== When to Use ===
The gradient projection method is best suited for problems with simple constraints, such as box constraints or convex inequality constraints, where projection onto the feasible region can be performed efficiently. It is effective for convex optimization problems where gradient-based methods converge to global optima. This method is often employed in large-scale optimization, machine learning, and signal processing applications due to its simplicity and ease of implementation. However, it may be less efficient for problems with complex or nonconvex constraints. Instead, other methods, such as active-set or interior-point methods, may be more appropriate.
=== Implementation Steps ===
# Initial
## Start by analyzing and visualizing the constraints. Pay special attention to constraints that are box-defined (e.g., variable bounds) or convex inequalities, as these are essential for the efficient execution of the gradient projection method and establish the feasibility region.
## Choose an initial feasible point that is within the constraints of the problem, this will be the starting point of the soon to be developed piecewise-linear path
## Find the gradient of the objective function
# Develop Piecewise linear path
## Insert the initial feasible point into the gradient of the objective function.
## Define the descent direction and project onto the feasible region with initial feasible point. This line will define the piecewise-linear path.
# Find the Cauchy point
## Analyze the path where the line segment breaks or changes its projected path on the feasibility region
## Compute the value of each breakpoint point set by substituting them into the piecewise-linear path equation
## Write the quadratic of this line segment with respect to these breakpoints
## Differentiate the quadratic with respect to the new breakpoint
## Identify if minimizer was found, if not, analyze the next breakpoint set
# Refine and execute
## Update the piecewise-linear path decision variable to include the minimizer
## Update the active set based on the new solution found with the minimizer
## Find the new gradient value with this point, if converged then the minimum has been found. If not, iterate and repeat steps 1.2-4.3.
=== Pseudocode ===
This is the pseudocode for the gradient projection method algorithm where:
* <math>A </math> is a matrix of constraint coefficients.
* <math>x \in R^n </math> is the '''decision variable''' vector.
* <math>G \in R^{n \times n} </math> is a symmetric, positive semi-definite ''n'' x ''n'' matrix representing the quadratic coefficients.
* <math>c \in R^n </math> is a linear coefficient vector.
* <math>l </math> represents the lower bounds on the decision variables.
* <math>u </math> represents the upper bounds on the decision variables.
Compute a feasible starting point <math>x_0; </math>
'''for''' <math>k = 0, 1, 2,... </math>
: '''if''' <math>x^k </math> satisfies the KKT conditions for the quadratic programming problem:
:: subject to <math>x_i = x_i^c, i \in A(x^c), </math> <math>l_i \leq x_i \leq \mu_i, i \not\in A(x^c) </math>
:: such that <math>q(x^+) \leq q(x^+) \leq q(x^c) </math> and <math>x^+ </math> is feasible;
: <math>x^{k+1} \leftarrow x^+; </math>
'''end(for)'''
==Convexity in Quadratic Programming==
Convex quadratic programming problems occur when Q is positive semi-definite guarantee that the problem has a global minimum. Convex quadratic programming problems occur when Q is not positive semi-definite and the solutions may involve local minima, requiring more advanced techniques for global optimization (e.g., branch-and-bound, global optimization methods).
=Numerical Examples=
Examples are provided for solving convex and non-convex quadratic program optimizations using Active Set, Simplex-Like, and Branch and Bound methods.
==Active Set Method Example==
Step-by-step instructions for determining the optimal solution of the following quadratic programming problem are provided:
=== Step 3: Determine if There is a Feasible Solution with All Constraints Set to Active ===
The system of equations can be solved to determine if there is a feasible solution with all 3 constraints set to active. First, solve for using constraint (1) and substitute it into constraint (2).
Solving the system with all constraints active is infeasible. This is because the rows of the coefficient matrix are linearly dependent. The system does not have a unique solution. Thus, the next steps will be to reduce the number of active constraints to determine a feasible solution.
=== Step 4: Determine Solution with Constraints (1) and (2) Set to Active ===
As determined in Step 3, solving with constraints (1) and (2) result in a contradiction. Thus, this solution is infeasible.
=== Step 5: Determine Solution with Constraints (1) and (3) Set to Active ===
Substitute <math>x_1</math> using constraint (1) into constraint (3).
Equation constraints should be reformatted to be <math>\leq0</math> to solve for standard form. All constraints are currently in this format; therefore, no changes are needed. Non-negativity constraints should remain <math>\geq0</math>.
=== Step 2: Determine if the Objective Function and Constraints are Convex ===
To use the Simplex-like Method, both the objective function and constraints must be convex. For the objective function, convexity is proven by identifying if the eigenvalues of the Hessian matrix are <math>\geq0</math>. For the constraints, convexity is proven by identifying if the constraints are linear.
==== Step 2.1 Find the Eigenvalues of the Hessian Matrix for the Objective Function ====
The objective function is negative semi-definite since both eigenvalues are negative. This makes the objective function non-convex.
==== Step 1.2 Determine if the Constraints are Convex ====
The non-binary integer constraint for this given quadratic programming problem makes this example non-convex.
=== Step 2: Determine the Relaxed Solution ===
To help determine whether to prune future branches, the optimization will be solved by relaxing the integer constraint from <math>x_1\in\{0,1,2\}</math> to <math>0\leq x_1 \leq2</math>. Thus, the relaxed problem formulation is as follows:
The relaxed solution results in an optimal value of 10.25. However, <math>x_1</math> was a non-integer value. Therefore, the branch and bound method will be applied to find a solution that satisfies all constraints. The optimal value must be no greater than 10.25 since this was the solution found by relaxing constraints.
=== Step 3: Apply Branch and Bound ===
Since <math>x_1</math> is an integer, the selected branches are <math>x_1=0, x_1=1,</math> and <math>x_1=2</math>.
==== Step 3.1: Branch at <math>x_1 = 0</math> ====
Substitute <math>x_1 = 0</math> into the objective function.
Quadratic programming (QP) is the problem of optimizing a quadratic objective function and is one of the simplests form of non-linear programming.<span style="font-size: 8pt; position:relative; bottom: 0.3em;">1</span> The objective function can contain bilinear or up to second order polynomial terms,<span style="font-size: 8pt; position:relative; bottom: 0.3em;">2</span> and the constraints are linear and can be both equalities and inequalities. QP is widely used in image and signal processing, to optimize financial portfolios, to perform the least-squares method of regression, to control scheduling in chemical plants, and in [https://optimization.mccormick.northwestern.edu/index.php?title=Sequential_quadratic_programming&action=edit&redlink=1 sequential quadratic programming], a technique for solving more complex non-linear programming problems.<span style="font-size: 8pt; position:relative; bottom: 0.3em;">3,4</span> The problem was first explored in the early 1950s, most notably by Princeton University's [http://en.wikipedia.org/wiki/Philip_Wolfe_(mathematician) Wolfe] and [http://en.wikipedia.org/wiki/Marguerite_Frank Frank], who developed its theoretical background,<span style="font-size: 8pt; position:relative; bottom: 0.3em;">1</span> and by [http://en.wikipedia.org/wiki/Harry_Markowitz Harry Markowitz], who applied it to portfolio optimization, a subfield of finance.
<math>-2x_2 = -4</math>
=Problem formulation=
A general quadratic programming formulation contains a quadratic objective function and linear equality and inequality constraints:<span style="font-size: 8pt; position:relative; bottom: 0.3em;">2,5,6</span>
The objective function is arranged such that the vector <math>q</math> contains all of the (singly-differentiated) linear terms and <math>Q</math> contains all of the (twice-differentiated) quadratic terms. Put more simply, <math>Q</math> is the Hessian matrix of the objective function and <math>q</math> is its gradient. By convention, any constants contained in the objective function are left out of the general formulation.<span style="font-size: 8pt; position:relative; bottom: 0.3em;">6</span> The one-half in front of the quadratic term is included to remove the coefficient (2) that results from taking the derivative of a second-order polynomial.
Evaluate the objective function at the critical point <math>(x_2 = 2)</math> and boundary points <math>(x_2 = 0, x_2 = 3)</math>.
As for the constraints, the matrix equation <math>Ax=a</math> contains all of the linear equality constraints, and <math>Bx \le b</math> are the linear inequality constraints.
When there are only inequality constraints (<math>Bx\le b</math>), the Lagrangean is:<span style="font-size: 8pt; position:relative; bottom: 0.3em;">6</span> <br/>
If the objective function is convex, then any local minimum found is also the sole global minimum. To analyze the function’s convexity, one can compute its Hessian matrix and verify that all eigenvalues are positive, or, equivalently, one can verify that the matrix Q is positive definite.<span style="font-size: 8pt; position:relative; bottom: 0.3em;">6</span> This is a sufficient condition, meaning that it is not required to be true in order for a local minimum to be the unique global minimum, but will guarantee this property holds if true.
<math>f(1,3) = -(1)^2-(3)^2+5(1)+4(3)=7</math>
==KKT conditions==
Solutions can be tested for optimality using Karush-Kuhn-Tucker conditions just as is done for other nonlinear problems:<span style="font-size: 8pt; position:relative; bottom: 0.3em;">5</span> <br/>
The maximum value of these solutions is 8, which happens when <math>x_1 = 1</math> and <math>x_2 = 2</math>.
Substitute <math>x_1 = 2</math> into the objective function.
==Solution strategies==
Because quadratic programming problems are a simple form of nonlinear problem, they can be solved in the same manner as other non-linear programming problems.
An unconstrained quadratic programming problem is most straightforward to solve: simply set the derivative (gradient) of the objective function equal to zero and solve.<span style="font-size: 8pt; position:relative; bottom: 0.3em;">7</span> More practical (constrained) formulations are more difficult to solve. The typical solution technique when the objective function is strictly convex and there are only equality constraints is the [https://optimization.mccormick.northwestern.edu/index.php?title=Conjugate_gradient_methods&action=edit&redlink=1 conjugate gradient method]. If there are inequality constraints (<math>Bx\le b</math>), then the [https://optimization.mccormick.northwestern.edu/index.php/Interior-point_method_for_NLP interior point] and active set methods are the preferred solution methods. When there is a range on the allowable values of <math>x</math> (in the form <math>x^L\le x\le x^U</math>, which is the case for image and signal processing applications, [https://optimization.mccormick.northwestern.edu/index.php/Trust-region_methods trust-region methods] are most frequently used.<span style="font-size: 8pt; position:relative; bottom: 0.3em;">4</span> For all convex cases, an NLP solver in the optimization utility GAMS, such as KNITRO, MINOS, or CONOPT, can find solutions for quadratic programming problems.
Because both eigenvalues are positive, the Hessian matrix is positive determinant, and this local minimum is the global minimum of the objective function given these constraints. <br/>
'''Step 3.4: Compare Branches'''
=Applications=
The best solution across all branches was <math>x_1 = 2</math> and <math>x_2 = 2</math>, resulting in an optimal value of 10.
A few of the many quadratic programming applications are discussed in more detail and accompanied with general models below, and a list of other areas in which QP is important is presented as well.
=Application=
*<b>Quadratic knapsack problem (QKP)</b>
In this section, we will explore the wide applications of quadratic programming in fields ranging from finance, logistics management, data science, and various engineering fields.
In the standard knapsack problem, there are a number of items with different weights and values, and the items are selected based on which combination yields the highest overall value without exceeding the overall weight limit of the knapsack.
== Finance-Portfolio Optimization ==
In the quadratic knapsack problem, the objective function is quadratic or, more specifically, bilinear, and the constraints are the same as in the typical knapsack problem.<span style="font-size: 8pt; position:relative; bottom: 0.3em;">8</span> QKP's are used in designing email servers and to optimize the locations of "nodes" in applications such as positioning transportation hubs like airports and train stations.<span style="font-size: 8pt; position:relative; bottom: 0.3em;">8</span> Additionally, the problem can model situations in which a limited number of people are assigned to complete specific objectives that require them to interact.<span style="font-size: 8pt; position:relative; bottom: 0.3em;">9</span> One formulation is presented below:<span style="font-size: 8pt; position:relative; bottom: 0.3em;">8</span> <br/>
In finance, quadratic programming is commonly used when formulating an investment portfolio that balances returns and risk to meet the investor's goal. Nobel Prize recipient Harry Markowitz developed a portfolio model using quadratic programming to maximize returns while minimizing risks, a model that would later become a cornerstone in Modern Portfolio Theory.<sup>10</sup> Markowitz defined risk as a variance of the portfolio’s return, which captures an essence of a portfolio’s symmetric return volatility. Markowitz's method involved estimating stock returns based on historical data, analyzing variances from historical projections and its realized returns to formulate risk. When provided a budget and risk tolerance, the model would now be able to select a combination of stocks that would maximize returns within the defined constraints. Markowitz further constrained the portfolio model to not include short selling of stock, making this a convex quadratic programming problem. Complications to Markowitz's model arise when short selling stocks are considered. When a portfolio short sells a stock, the portfolio essentially takes a negative position on the asset, altering the objective function to include negative returns. A short selling stock portfolio would be an example of a non-convex quadratic programming problem. <sup>10,11</sup>
<math>\text{max or min}</math>
<math>x^{T}Qx</math> <br/>
<math>Ax \le a</math> <br/>
<math>x \in {B}^{n} </math> <br/>
==Quadratic Knapsack Problem (QKP)==
The quadratic knapsack problem, although it looks very simple, is NP-hard and is thus difficult to solve. To make obtaining solutions easier, these problems are often linearized.<span style="font-size: 8pt; position:relative; bottom: 0.3em;">8</span>
The traditional knapsack optimization problem considers items (i) with associated values (v) and weights (w) and has the objective function to maximize the value of the items held in the knapsack while not exceeding its weight constraint. The decision variables in this scenario define items to include and not to include in the knapsack. This problem has proven to be beneficial when optimizing cargo loads and establishing transportation routes.
The QKP is an augmentation of the classic knapsack problem, where the objective function is quadratic and contains pairwise variables but still contains the same objective of maximizing value of items contained in the knapsack. The extension of this knapsack, initially proposed by Gallo in 1977, introduces the ability to optimize values with items that may have a unique relationship affecting their values.<sup>12</sup> QKP has applications in solving more complicated cargo load problems, telecommunications, and electrical engineering.
*<b>Model predictive control</b>
Quadratic programming also has important applications in chemical engineering. Model predictive control (MPC) is a group of algorithms that help manage production in chemical plants by dictating production in each batch. While often formulated as linear programs because the resulting models are more stable, robust and easier to solve, MPC models are sometimes made with quadratic programming.<span style="font-size: 8pt; position:relative; bottom: 0.3em;">11</span> As an example of its utility, quadratic programming was used by Di Ruscio in an MPC algorithm for a thermomechanical pulping process, which a method for making paper.<span style="font-size: 8pt; position:relative; bottom: 0.3em;">11</span>
To expand on an electrical engineering application, in microchip design, quadratic programming has been used to optimize chip component placement to minimize costs and component connections. This is similar in nature to the QKP.<sup>13</sup>
*<b>Least squares</b>
Least squares regression is one of the most common types of regression, and works by minimizing the sum of the squares of the difference between data points and a proposed fit. Quadratic optimization is one method that can be used to perform a least squares regression and is more flexible than most linear methods. One formulation for a quadratic programming regression model is as follows:<span style="font-size: 8pt; position:relative; bottom: 0.3em;">3</span>
==Support Vector Machines (SVMs)==
<math>\text{min}</math>
In machine learning, SVMs are learning models tasked with classification and regression demands. Use case examples of SVMs would include facial and text recognition. SVMs utilize quadratic programing to optimize a hyperplane used in a recognition task where the objective is to maximize a margin between classes and minimize classification errors and are commonly subject to linear constraints. Algorithms like sequential minimal optimization (SMO) have emerged to help solution growing data sets used in SVMs to make the computation more achievable by breaking the problem into sub quadratic programming problems.<sup>14</sup>
<math>e'Ie</math> <br/>
<math>e = Y-X \beta</math>
==Plug in Hybrid Electric Vehicle Power Management==
In this model, <math>\beta</math> and <math>e</math> are the unknown regression parameters, <math>I</math> is an identity matrix, and <math>X</math> and <math>Y</math> contain data about the independent and dependent variables respectively.<span style="font-size: 8pt; position:relative; bottom: 0.3em;">3</span>
Plug-in hybrid electric vehicles (PHEVs) rely on having an optimized power management program to operate efficiently. PHEVs will draw power from batteries until they are depleted before switching to its hybrid combustion-ev power cycle. The goal for PHEVs becomes a quadratic programming problem where the objective is to minimize a quadratic function associated with costs for fuel which will optimize the power cycles and meet performance demands.<sup>15</sup>
*<b>Other applications</b>
Quadratic programming is used in a wide range of applications not touched upon in the sample presented above. Other major areas in which QP's are relied upon include signal and image processing<span style="font-size: 8pt; position:relative; bottom: 0.3em;">12</span> and a subfield of optimization called partial differential constrained optimization.<span style="font-size: 8pt; position:relative; bottom: 0.3em;">3</span> QP's are also extensively used in finance, as variance, which is used to measure risk, is a function containing squares.<span style="font-size: 8pt; position:relative; bottom: 0.3em;">13,14,15</span> More specifically, Markowitz won the 1990 Nobel Prize in Economics for his widely-used model that employs quadratic programming to optimizes the amount of risk taken on based on variances.<span style="font-size: 8pt; position:relative; bottom: 0.3em;">14</span>
{| class = "wikitable" style="margin:auto"
Additionally, [https://optimization.mccormick.northwestern.edu/index.php?title=Sequential_quadratic_programming&action=edit&redlink=1 Sequential quadratic programming], an algorithm for solving more complicated NLP's that uses QP subproblems, is one of the most important applications.
|+ Software tools that can be used in Quadratic Programming
|-
! Tool !! Description
|-
| Python || Python has multiple packages available to handle quadratic programming such as Pyomo, SciPY, Quadprong, and CVXPY with each library bringing its own strengths to a problem.
|-
| MATLAB || MathWorks MATLAB Optimization Toolbox is an add on package suitable to solve problems requiring quadratic programming with a either a problem based or solver based approach. If solver based, there are three algorithms available with quadprong: Interior-point-convex, trust-region-reflective, and active set.
|-
| GAMS || GAMS Gurobi suite contains several algorithms that are suitable for quadratic programming. For example, to solve a convex QCP, the algorithm used is the parallel barrier algorithm.
|-
| Excel Solver || The data package is suitable for solving linear and nonlinear problems which can include quadratic programming problems.
|-
| WOLFRAM || Wolfram Language & System solver is a versatile tool and can solve non linear quadratic problems.
|-
| SNOPT || Uses sequential quadratic programing which solves multiple smaller quadratic sub problems.
|-
|Julia || Julia offer's JuMP and Convex.jl packages that leverage solvers like Gurobi and MOSEK to support quadratic programming problems.
|}
=Conclusion=
=Conclusion=
Quadratic programming is vastly useful as a method for solving real-world problems which are often depicted as quadratic functions. For this reason, to this day QP is used in many fields from signal processing to game theory to economics. As one of the simplest non-linear programming types, QP is versatile in its use and application. QP can be used to solve quadratic functions with linear bounds, made especially straightforward with a convex objective function. QP can also be used as a stepping stone to simplify more complicated optimization problems such as in the case of sequential quadratic programming. Having first been theorized in the 1950s, QP has a deep history and its study and application has broadened over the years to reach a myriad of fields including finance, scheduling, planning, flow computations, and engineering modeling.
Quadratic programming, the problem of optimizing a quadratic function, have been widely used since its development in the 1950s because it is a simple type of non-linear programming that can accurately model many real world systems, notably ones dependent on two variables. Problems formulated this way are straightforward to optimize when the objective function is convex. QP has applications in finance, various types of computer systems, statistics, chemical production, and in algorithms to solve more complex NLP's.
=References=
=References=
1. J. Nocedal and S. J. Wright. Numerical Optimization. ''Springer'' (1999): Web. 2 December 2024.<br/>
1. Frank, Marguerite, and Philip Wolfe. "An Algorithm for Quadratic Programming." Naval Research Logistics Quarterly 3 (1956): 95-110. Web. 4 June 2015. <br/>
2. H. B. Mann. Quadratic forms with linear constraints. ''The American Mathematical Monthly'' (1943): Web. 2 December 2024.<br/>
2. Floudas, Christodoulos A., and V. Visweswaran. "Quadratic Optimization." Nonconvex Optimization and Its Applications, 2 (1995): 217-69. Web. 23 May 2015. <br/>
3. N. I. M. Gould and P. L. Toint. A Quadratic Programming Bibliography. ''RAL Numerical Analysis Group Internal Report'' (2012): Web. 2 December 2024.<br/>
3. McCarl, Bruce A., Moskowitz, Herbert, and Harley Furtan. "Quadratic Programming Applications." The International Journal of Management Science, 5 (1977): 43-55. <br/>
4. E. W. Barankin and R. Dorfman. Toward quadratic programming. Report to the logistics branch, Office of Naval Research (1955): Web. 2 December 2024.<br/>
4. Geletu, Abele. "Quadratic programming problems." Ilmenau University of Technology. Web. 23 May 2015. <br/>
5. M. Frank and P. Wolfe. An Algorithm for Quadratic Programming. ''Naval Research Logistics Quarterly 3'' (1956): Web. 2 December 2024.<br/>
5. Bradley, Hax, and Magnanti. Applied Mathematical Programming. Boston: Addison-Wesley, 1997. 421-40. Web. 23 May 2015. <br/>
6. R. J. Vanderbei. Linear Programming: Foundations and Extensions. ''Springer International Publishing (''2008): Web. 2 December 2024.<br/>
6. Jensen, Paul A., and Jonathan F. Bard. "Quadratic Programming." Operations Research Models and Methods. The University of Texas at Austin. Web. 23 May 2015. <br/>
7. C. Floudas and V. Visweswaran. Quadratic Optimization. ''Nonconvex Optimization and Its Applications, 2'' (1995): Web. 2 December 2024.<br/>
7. Binner, David. "Quadratic programming example - no constraints." Miscellaneous mathematical utilities. AKiTi. Web. 23 May 2015. <br/>
8. R. J. Vanderbei. Linear Programming: International Series in Operations Research & Management Sceince. ''Springer International Publishing (''2008): Web. 2 December 2024.<br/>
8. Pisinger, David. "The Quadratic Knapsack Problem – A Survey." Discrete Applied Mathematics, 155 (2007): 623 – 648. Web. 23 May 2015. <br/>
9. T. V.Mikosch, S. Resnick, B. Zwart and T. Dieker. Numerical Optimization: Springer Series in Operations Research and Financial Engineering. ''Springer International Publishing'' (2006): Web. 2 December 2024.<br/>
9. "Quadratic Multiple Knapsack Problem." Optimization of Complex System. Optiscom Project. 2012. Web. 6 June 2015. <br/>
10. B. McCarl, et al. Quadratic Programming Applications. ''Omega'', vol. 5, no. 1 (1977): Web. 2 December 2024<br/>
10. Gallo, G., P. L. Hammer, and B. Simeone. "Quadratic Knapsack Problems." Mathematical Programming 12 (1980): 132-149. Web. 24 May 2015. <br/>
11. S. Boyd and L. Vandenberghe. Convex Optimization. ''Cambridge University Press (''2004): Web. 24 November 2024.<br/>
11. Di Ruscio, David. "Model Predictive Control and Optimization." Telemark University College. Mar. 2001. Web. 24 May 2015. <br/>
12. G. Gallo, P. L. Hammer and B. Simeone. Quadratic knapsack problems. In: Padberg, M.W. (eds) Combinatorial Optimization. Mathematical Programming Studies, vol 12. ''Springer, Berlin, Heidelberg'' (1980): Web. 24 November 2024.<br/>
12. Ma, W. K. "Signal Processing Optimization Techniques." The Chinese University of Hong Kong. Web. 24 May 2015. <br/>
13. N.A. Sherwani. ''Algorithms for VLSI Physical Design Automation'' (1993): Web. 24 November 2024.<br/>
13. Tütüncü, Reha H. "Optimization in Finance." Tokyo Institute of Technology. Spring 2003. Web. 23 May 2015. <br/>
14. J. Platt. Fast Training of Support Vector Machines Using Sequential Minimal Optimization. ''Microsoft Research'', 17 Oct. 2018, www.microsoft.com/en-us/research/publication/fast-training-of-support-vector-machines-using-sequential-minimal-optimization/.<br/>
14. Van Slyke, R. "Portfolio Optimization." NYU Polytechnic School of Engineering. 16 Nov. 2007. Web. 24 May 2015. <br/>
15. Z. Zhou and C. Mi. ‘Power management of PHEV using quadratic programming’, Int. J. Electric and Hybrid Vehicles, Vol. 3, No. 3, (2011): Web. 24 November 2024.
15. "Portfolio Optimization." SAS/OR(R) 9.2 User's Guide: Mathematical Programming. SAS Institute. Web. 23 May 2015. <br/>
Quadratic programming (QP) is the problem of optimizing a quadratic objective function and is one of the simplests form of non-linear programming.1 The objective function can contain bilinear or up to second order polynomial terms,2 and the constraints are linear and can be both equalities and inequalities. QP is widely used in image and signal processing, to optimize financial portfolios, to perform the least-squares method of regression, to control scheduling in chemical plants, and in sequential quadratic programming, a technique for solving more complex non-linear programming problems.3,4 The problem was first explored in the early 1950s, most notably by Princeton University's Wolfe and Frank, who developed its theoretical background,1 and by Harry Markowitz, who applied it to portfolio optimization, a subfield of finance.
Problem formulation
A general quadratic programming formulation contains a quadratic objective function and linear equality and inequality constraints:2,5,6
The objective function is arranged such that the vector contains all of the (singly-differentiated) linear terms and contains all of the (twice-differentiated) quadratic terms. Put more simply, is the Hessian matrix of the objective function and is its gradient. By convention, any constants contained in the objective function are left out of the general formulation.6 The one-half in front of the quadratic term is included to remove the coefficient (2) that results from taking the derivative of a second-order polynomial.
As for the constraints, the matrix equation contains all of the linear equality constraints, and are the linear inequality constraints.
When there are only inequality constraints (), the Lagrangean is:6
Global solutions
If the objective function is convex, then any local minimum found is also the sole global minimum. To analyze the function’s convexity, one can compute its Hessian matrix and verify that all eigenvalues are positive, or, equivalently, one can verify that the matrix Q is positive definite.6 This is a sufficient condition, meaning that it is not required to be true in order for a local minimum to be the unique global minimum, but will guarantee this property holds if true.
KKT conditions
Solutions can be tested for optimality using Karush-Kuhn-Tucker conditions just as is done for other nonlinear problems:5
Condition 1: sum of gradients is zero:
Condition 2: all constraints satisfied:
Condition 3: complementary conditions:
Solution strategies
Because quadratic programming problems are a simple form of nonlinear problem, they can be solved in the same manner as other non-linear programming problems.
An unconstrained quadratic programming problem is most straightforward to solve: simply set the derivative (gradient) of the objective function equal to zero and solve.7 More practical (constrained) formulations are more difficult to solve. The typical solution technique when the objective function is strictly convex and there are only equality constraints is the conjugate gradient method. If there are inequality constraints (), then the interior point and active set methods are the preferred solution methods. When there is a range on the allowable values of (in the form , which is the case for image and signal processing applications, trust-region methods are most frequently used.4 For all convex cases, an NLP solver in the optimization utility GAMS, such as KNITRO, MINOS, or CONOPT, can find solutions for quadratic programming problems.
Numerical example
Plot of the unconstrained objective function. Figure generated using Wolfram Mathematica.
This example demonstrates how to determine the KKT point of a specific QP problem:
Rewrite the constraints.
Construct the gradients.
Assuming all constraints are satisfied, set the gradient equal to zero to attempt to find an optima.
,
Make constraints and , which are violated, active. Set both equal to zero.
Solve the resulting system of equations.
Formulating the system as one matrix and row reducing is one of the simplest ways to solve. Doing so yields:
Drop constraint because is negative and resolve the system. Doing so yields:
Which yields an objective function value of
Verify linear dependence of the gradient:
Verify the uniqueness of the solution:
Because both eigenvalues are positive, the Hessian matrix is positive determinant, and this local minimum is the global minimum of the objective function given these constraints.
Applications
A few of the many quadratic programming applications are discussed in more detail and accompanied with general models below, and a list of other areas in which QP is important is presented as well.
Quadratic knapsack problem (QKP)
In the standard knapsack problem, there are a number of items with different weights and values, and the items are selected based on which combination yields the highest overall value without exceeding the overall weight limit of the knapsack.
In the quadratic knapsack problem, the objective function is quadratic or, more specifically, bilinear, and the constraints are the same as in the typical knapsack problem.8 QKP's are used in designing email servers and to optimize the locations of "nodes" in applications such as positioning transportation hubs like airports and train stations.8 Additionally, the problem can model situations in which a limited number of people are assigned to complete specific objectives that require them to interact.9 One formulation is presented below:8
The quadratic knapsack problem, although it looks very simple, is NP-hard and is thus difficult to solve. To make obtaining solutions easier, these problems are often linearized.8
Model predictive control
Quadratic programming also has important applications in chemical engineering. Model predictive control (MPC) is a group of algorithms that help manage production in chemical plants by dictating production in each batch. While often formulated as linear programs because the resulting models are more stable, robust and easier to solve, MPC models are sometimes made with quadratic programming.11 As an example of its utility, quadratic programming was used by Di Ruscio in an MPC algorithm for a thermomechanical pulping process, which a method for making paper.11
Least squares
Least squares regression is one of the most common types of regression, and works by minimizing the sum of the squares of the difference between data points and a proposed fit. Quadratic optimization is one method that can be used to perform a least squares regression and is more flexible than most linear methods. One formulation for a quadratic programming regression model is as follows:3
In this model, and are the unknown regression parameters, is an identity matrix, and and contain data about the independent and dependent variables respectively.3
Other applications
Quadratic programming is used in a wide range of applications not touched upon in the sample presented above. Other major areas in which QP's are relied upon include signal and image processing12 and a subfield of optimization called partial differential constrained optimization.3 QP's are also extensively used in finance, as variance, which is used to measure risk, is a function containing squares.13,14,15 More specifically, Markowitz won the 1990 Nobel Prize in Economics for his widely-used model that employs quadratic programming to optimizes the amount of risk taken on based on variances.14
Additionally, Sequential quadratic programming, an algorithm for solving more complicated NLP's that uses QP subproblems, is one of the most important applications.
Conclusion
Quadratic programming, the problem of optimizing a quadratic function, have been widely used since its development in the 1950s because it is a simple type of non-linear programming that can accurately model many real world systems, notably ones dependent on two variables. Problems formulated this way are straightforward to optimize when the objective function is convex. QP has applications in finance, various types of computer systems, statistics, chemical production, and in algorithms to solve more complex NLP's.
References
1. Frank, Marguerite, and Philip Wolfe. "An Algorithm for Quadratic Programming." Naval Research Logistics Quarterly 3 (1956): 95-110. Web. 4 June 2015.
2. Floudas, Christodoulos A., and V. Visweswaran. "Quadratic Optimization." Nonconvex Optimization and Its Applications, 2 (1995): 217-69. Web. 23 May 2015.
3. McCarl, Bruce A., Moskowitz, Herbert, and Harley Furtan. "Quadratic Programming Applications." The International Journal of Management Science, 5 (1977): 43-55.
4. Geletu, Abele. "Quadratic programming problems." Ilmenau University of Technology. Web. 23 May 2015.
5. Bradley, Hax, and Magnanti. Applied Mathematical Programming. Boston: Addison-Wesley, 1997. 421-40. Web. 23 May 2015.
6. Jensen, Paul A., and Jonathan F. Bard. "Quadratic Programming." Operations Research Models and Methods. The University of Texas at Austin. Web. 23 May 2015.
7. Binner, David. "Quadratic programming example - no constraints." Miscellaneous mathematical utilities. AKiTi. Web. 23 May 2015.
8. Pisinger, David. "The Quadratic Knapsack Problem – A Survey." Discrete Applied Mathematics, 155 (2007): 623 – 648. Web. 23 May 2015.
9. "Quadratic Multiple Knapsack Problem." Optimization of Complex System. Optiscom Project. 2012. Web. 6 June 2015.
10. Gallo, G., P. L. Hammer, and B. Simeone. "Quadratic Knapsack Problems." Mathematical Programming 12 (1980): 132-149. Web. 24 May 2015.
11. Di Ruscio, David. "Model Predictive Control and Optimization." Telemark University College. Mar. 2001. Web. 24 May 2015.
12. Ma, W. K. "Signal Processing Optimization Techniques." The Chinese University of Hong Kong. Web. 24 May 2015.
13. Tütüncü, Reha H. "Optimization in Finance." Tokyo Institute of Technology. Spring 2003. Web. 23 May 2015.
14. Van Slyke, R. "Portfolio Optimization." NYU Polytechnic School of Engineering. 16 Nov. 2007. Web. 24 May 2015.
15. "Portfolio Optimization." SAS/OR(R) 9.2 User's Guide: Mathematical Programming. SAS Institute. Web. 23 May 2015.