Nonlinear programming: Difference between revisions

From Citizendium
Jump to navigation Jump to search
imported>Igor Grešovnik
(→‎Mathematical formulation: explanation to second formulation)
imported>Igor Grešovnik
(Added solution methods)
Line 20: Line 20:


In the above problem statement, the second line defines the inequality constraints, and the third line defines the equality constraints. Constraints define the feasible set ''X'', which is the set of points that satisfy all the constraints. ''I'' is the index set of inequality constraints and ''E'' is the index set of inequality constraints. Functions ''c''<sub>''i''</sub>('''x''') and ''c''<sub>''i''</sub>('''x''') are termed ''constraint functions''.
In the above problem statement, the second line defines the inequality constraints, and the third line defines the equality constraints. Constraints define the feasible set ''X'', which is the set of points that satisfy all the constraints. ''I'' is the index set of inequality constraints and ''E'' is the index set of inequality constraints. Functions ''c''<sub>''i''</sub>('''x''') and ''c''<sub>''i''</sub>('''x''') are termed ''constraint functions''.
== Methods for solving NLP problems ==
If the objective function ''f'' is linear and the constrained [[Euclidean space|space]] is a [[polytope]], the problem is a [[linear programming]] problem, which may be solved using well known linear programming solutions. Linear programming problems can be solved in a finite number of steps.
If the objective function is [[Convex function|convex]] (in a minimization problem) and the constraint set is a [[Convex set|convex]], then general methods from [[Convex optimization|convex optimization]] can be used.
Several methods are available for solving nonconvex problems. One of the most popular methods for problems with continuously differentiable functions is the [[Sequential quadratic programming]] method (SQP).


== See also ==
== See also ==

Revision as of 15:14, 13 November 2007

In mathematics, nonlinear programming (NLP) is the process of minimization or maximization of a function of a set of real variables (termed objective function), while simultaneously satisfying a set of equalities and inequalities ( collectively termed constraints), where some of the constraints or the objective function are nonlinear.

Mathematical formulation

A nonlinear programming problem can be stated as:

or

where

In the above equations, the set X is also called the feasible set or feasible region of the problem. The function to be minimized is often called the objective function or cost function.

The feasible region is often defined in terms of a set of equalities and inequalities termed constraints. In this case, the NLP problem can be stated as

subject to:

and

In the above problem statement, the second line defines the inequality constraints, and the third line defines the equality constraints. Constraints define the feasible set X, which is the set of points that satisfy all the constraints. I is the index set of inequality constraints and E is the index set of inequality constraints. Functions ci(x) and ci(x) are termed constraint functions.

Methods for solving NLP problems

If the objective function f is linear and the constrained space is a polytope, the problem is a linear programming problem, which may be solved using well known linear programming solutions. Linear programming problems can be solved in a finite number of steps.

If the objective function is convex (in a minimization problem) and the constraint set is a convex, then general methods from convex optimization can be used.

Several methods are available for solving nonconvex problems. One of the most popular methods for problems with continuously differentiable functions is the Sequential quadratic programming method (SQP).

See also

External links