Numerical Optimization
8. Numerical Optimization#
A mathematical optimization problem consists of maximizing
or minimizing a real valued function under a set of constraints.
We shall assume
Formally, we express a mathematical optimization problem as:
is the optimization variable of the problem. is the objective function.The functions
are the (inequality) constraint functions.The (real scalar) constants
are the limits for the inequality constraints.A vector
is called feasible if it belongs to the domains of and satisfies all the constraints.A vector
is called optimal if is feasible and has the smallest objective value; i.e. for any feasible , we have .An optimal vector is also called a solution to the optimization problem.
An optimization problem is called infeasible if there is no feasible vector. i.e. there is no vector
which satisfies the inequality constraints.An infeasible problem doesn’t have a solution.
A feasible problem may not have a solution if the objective function is unbounded below. i.e. for every feasible
, there exists another feasible such that .If a feasible problem is not unbounded below, then it may have one or more solutions.