The NLPC Nonlinear Optimization Solver

Conditions of Optimality

To facilitate discussion of the optimality conditions, we rewrite the general form of nonlinear optimization problems from the section "Overview" by grouping the equality constraints and inequality constraints. We also rewrite all the general nonlinear inequality constraints and bound constraints in one form as ``\ge'' inequality constraints. Thus we have the following formulation:

\displaystyle\mathop{\rm minimize}_{x\in{\mathbb r}^n} & f(x) \    \textrm{subject to}& c_i(x) = 0, & i \in {\cal e} \    & c_i(x) \ge 0, & i \in {\cal i}
where \cal e is the set of indices of the equality constraints, \cal i is the set of indices of the inequality constraints, and m=|{\cal e}|+|{\cal i}|.

A point x is feasible if it satisfies all the constraints c_i(x) = 0, i\in{\cal   e} and c_i(x) \ge 0, i\in{\cal i}. The feasible region {\cal f} consists of all the feasible points. In unconstrained cases, the feasible region {\cal f} is the entire {\mathbb r}^n space.

A feasible point x^* is a local solution of the problem if there exists a neighborhood {\cal n} of x^* such that

f(x)\ge f(x^*)\;\;{\rm forall} x\in{\cal n}\cap{\cal f}
Further, a feasible point x^* is a strict local solution if strict inequality holds in the preceding case; i.e.,
f(x) \gt f(x^*)\;\;{\rm forall} x\in{\cal n}\cap{\cal f}
A feasible point x^* is a global solution of the problem if no point in {\cal f} has a smaller function value than f(x^*); i.e.,
f(x)\ge f(x^*)\;\; {\rm for all } x\in{\cal f}

All the algorithms in the NLPC solver find a local solution of an optimization problem.

Unconstrained Optimization

The following conditions hold true for unconstrained optimization problems:

Constrained Optimization

For constrained optimization problems, the Lagrangian function is defined as follows:
l(x,\lambda) = f(x) - \sum_{i\in{\cal e}\cup{\cal i}} \lambda_i c_i(x)
where \lambda_i,i\in{\cal e}\cup{\cal i}, are called Lagrange multipliers. \nabla\!_x l(x,\lambda) is used to denote the gradient of the Lagrangian function with respect to x, and \nabla_{\!x}^2 l(x,\lambda) is used to denote the Hessian of the Lagrangian function with respect to x. The active set at a feasible point x is defined as
{\cal a}(x)={\cal e}\cup\{i\in{\cal i}: c_i(x)=0\}

We also need the following definition before we can state the first-order and second-order necessary conditions:

We now state the theorems that are essential in the analysis and design of algorithms for constrained optimization:

Note that the set of all such z's forms the null space of the matrix [\nabla\!c_i(x^*)^{\rm t} ]_{i\in{\cal a}(x*)}. Hence we can search for strict local solutions by numerically checking the Hessian of the Lagrangian function projected onto the null space. For a rigorous treatment of the optimality conditions, see Fletcher (1987) and Nocedal and Wright (1999).

The optimization algorithms in the NLPC solver apply an iterative process that results in a sequence of points, x^0,...,x^k,..., that converge to a local solution x^* satisfying the first-order conditions. At the solution the NLPC solver performs tests to confirm that the second-order conditions are also satisfied.

Previous Page | Next Page | Top of Page