Main Content

Optimization Theory Overview

Optimization techniques are used to find a set of design parameters,x= {x1,x2,...,xn}, that can in some way be defined as optimal. In a simple case, this process might be the minimization or maximization of some system characteristic that is dependent onx. In a more advanced formulation, the objective functionf(x), to be minimized or maximized, might be subject to constraints in one or more of these forms:

  • Equality constraints,Gi(x) = 0 (i= 1,...,me)

  • Inequality constraints,Gi(x) ≤ 0 (i=me+ 1,...,m)

  • Parameter bounds,xl,xu, wherexlxxu, somexlcan be –∞, and somexucan be ∞

A General Problem (GP) description is stated as

min x f ( x ) , (1)

subject to

G i ( x ) = 0 i = 1 , ... , m e G i ( x ) 0 i = m e + 1 , ... , m x l x x u ,

wherexis the vector of lengthndesign parameters,f(x) is the objective function (which returns a scalar value), and the vector functionG(x) returns a vector of lengthmcontaining the values of the equality and inequality constraints evaluated atx.

An efficient and accurate solution to this problem depends not only on the size of the problem in terms of the number of constraints and design variables, but also on characteristics of the objective function and constraints. When both the objective function and the constraints are linear functions of the design variable, the problem is known as aLinear Programming (LP) problem.Quadratic Programming (QP) concerns the minimization or maximization of a quadratic objective function that is linearly constrained. For both the LP and QP problems, reliable solution procedures are readily available. More difficult to solve is theNonlinear Programming (NP) problem in which the objective function and constraints can be nonlinear functions of the design variables. A solution of the NP problem generally requires an iterative procedure to establish a direction of search at each major iteration. This solution is usually achieved by the solution of an LP, QP, or unconstrained subproblem.

All optimization takes place in real numbers. However, unconstrained least-squares problems and equation solving can be formulated and solved using complex analytic functions. SeeComplex Numbers in Optimization Toolbox Solvers.