Optimization (mathematics)

Optimization (mathematics)

In mathematics, the term optimization, or mathematical programming, refers to the study of problems in which one seeks to minimize or maximize a real function by systematically choosing the values of real or integer variables from within an allowed set.

Overview

An optimization problem can be represented in the following way:"Given:" a function "f" : "A" o R from some set "A" to the real numbers :"Sought:" an element "x"0 in "A" such that "f"("x"0) ≤ "f"("x") for all "x" in "A" ("minimization") or such that "f"("x"0) ≥ "f"("x") for all "x" in "A" ("maximization").

Such a formulation is called an optimization problem or a mathematical programming problem (a term not directly related to computer programming, but still in use for example in linear programming - see History below). Many real-world and theoretical problems may be modeled in this general framework. Problems formulated using this technique in the fields of physics and computer vision may refer to the technique as energy minimization, speaking of the value of the function "f" as representing the energy of the system being modeled.

Typically, "A" is some subset of the Euclidean space R"n", often specified by a set of "constraints", equalities or inequalities that the members of "A" have to satisfy. The domain "A" of "f" is called the "search space",while the elements of "A" are called "candidate solutions" or "feasible solutions".

The function "f" is called an "objective function", "energy function", or "cost function" [ [http://ic.arc.nasa.gov/people/dhw/papers/78.pdf No Free Lunch Theorems for Optimization] ] . A feasible solution that minimizes (or maximizes, if that is the goal) the objective function is called an "optimal solution".

Generally, when the feasible region or the objective function of the problem does not present convexity, there may be several local minima and maxima, where a "local minimum" x* is defined as a point for which there exists some δ > 0 so that for all x such that

:|mathbf{x}-mathbf{x}^*|leqdelta;,

the expression

:f(mathbf{x}^*)leq f(mathbf{x}) holds; that is to say, on some region around x* all of the function values are greater than or equal to the value at that point. Local maxima are defined similarly.

A large number of algorithms proposed for solving non-convex problems – including the majority of commercially available solvers – are not capable of making a distinction between local optimal solutions and rigorous optimal solutions, and will treat the former as actual solutions to the original problem. The branch of applied mathematics and numerical analysis that is concerned with the development of deterministic algorithms that are capable of guaranteeing convergence in finite time to the actual optimal solution of a non-convex problem is called global optimization.

History

The first optimization technique, which is known as steepest descent, goes back to Gauss. Historically, the first term to be introduced was linear programming, which was invented by George Dantzig in the 1940s. The term "programming" in this context does not refer to computer programming (although computers are nowadays used extensively to solve mathematical problems). Instead, the term comes from the use of "program" by the United States military to refer to proposed training and logistics schedules, which were the problems that Dantzig was studying at the time. (Additionally, later on, the use of the term "programming" was apparently important for receiving government funding, as it was associated with high-technology research areas that were considered important.)

Other important mathematicians in the optimization field include:
* John von Neumann
* Leonid Vitalyevich Kantorovich
* Naum Z. Shor
* Leonid Khachian
* Boris Polyak
* Yurii Nesterov
* Arkadii Nemirovskii
* Michael J. Todd
* Richard Bellman
* Hoang Tuy

Notation

Optimization problems are often expressed with special notation. Here are some examples:

:min_{xinmathbb R}; (x^2 + 1).,

This asks for the minimum value for the objective function "x2" + 1, where "x" ranges over the real numbers R. The minimum value in this case is 1, occurring at "x" = 0.

:max_{xinmathbb R}; 2x.

This asks for the maximum value for the objective function 2"x", where "x" ranges over the reals. In this case, there is no such maximum as the objective function is unbounded, so the answer is "infinity" or "undefined".

:operatorname{argmin}_{xin(-infty,-1] }; x^2 + 1.,

This asks for the value (or values) of "x" in the interval (−∞, −1] that minimizes (or minimize) the objective function "x"2 + 1 (the actual minimum value of that function does not matter). In this case, the answer is "x" = −1.

:operatorname{argmax}_{xin [-5,5] ,;yinmathbb R}; xcdotcos(y).,

This asks for the ("x", "y") pair (or pairs) that maximizes (or maximize) the value of the objective function "x"·cos("y"), with the added constraint that "x" lies in the interval [−5, 5] (again, the actual maximum value of the expression does not matter). In this case, the solutions are the pairs of the form (5, 2π"k") and (−5, (2"k" + 1)π), where "k" ranges over all integers.

Major subfields

* Linear programming studies the case in which the objective function "f" is linear and the set A is specified using only linear equalities and inequalities. Such a set is called a polyhedron or a polytope if it is bounded.
* Integer programming studies linear programs in which some or all variables are constrained to take on integer values.
* Quadratic programming allows the objective function to have quadratic terms, while the set A must be specified with linear equalities and inequalities.
* Nonlinear programming studies the general case in which the objective function or the constraints or both contain nonlinear parts.
* Convex programming studies the case when the objective function is convex and the constraints, if any, form a convex set. This can be viewed as a particular case of nonlinear programming or as generalization of linear or convex quadratic programming.
** Second order cone programming (SOCP).
* Semidefinite programming (SDP) is a subfield of convex optimization where the underlying variables are semidefinite matrices. It is generalization of linear and convex quadratic programming.

* Stochastic programming studies the case in which some of the constraints or parameters depend on random variables.
* Robust programming is, as stochastic programming, an attempt to capture uncertainty in the data underlying the optimization problem. This is not done through the use of random variables, but instead, the problem is solved taking into account inaccuracies in the input data.
* Combinatorial optimization is concerned with problems where the set of feasible solutions is discrete or can be reduced to a discrete one.
* Infinite-dimensional optimization studies the case when the set of feasible solutions is a subset of an infinite-dimensional space, such as a space of functions.
* Heuristic algorithms
** Metaheuristics
* Constraint satisfaction studies the case in which the objective function "f" is constant (this is used in artificial intelligence, particularly in automated reasoning).
** Constraint programming.
* Disjunctive programming used where at least one constraint must be satisfied but not all. Of particular use in scheduling.
* Trajectory optimization is the speciality of optimizing trajectories for air and space vehicles.In a number of subfields, the techniques are designed primarily for optimization in dynamic contexts (that is, decision making over time):
* Calculus of variations seeks to optimize an objective defined over many points in time, by considering how the objective function changes if there is a small change in the choice path.
* Optimal control theory is a generalization of the calculus of variations.
* Dynamic programming studies the case in which the optimization strategy is based on splitting the problem into smaller subproblems. The equation that relates these subproblems is called the Bellman equation.
* Mathematical programming with equilibrium constraints is where the constraints include variational inequalities or complementarities.

Techniques

Crudely all the methods are divided according to variables called:-
SVO:- Single Variable Optimization
MVO:- Multi Variable Optimization
For twice-differentiable functions, unconstrained problems can be solved by finding the points where the gradient of the objective function is zero (that is, the stationary points) and using the Hessian matrix to classify the type of each point. If the Hessian is positive definite, the point is a local minimum, if negative definite, a local maximum, and if indefinite it is some kind of saddle point.

However, existence of derivatives is not always assumed and many methods were devised for specific situations. The basic classes of methods, based on smoothness of the objective function, are:
* Combinatorial methods
* Derivative-free methods
* First order methods
* Second-order methods

Actual methods falling somewhere among the categories above include:
* Gradient descent aka steepest descent or steepest ascent
* Nelder-Mead method aka the Amoeba method
* Subgradient method - similar to gradient method in case there are no gradients
* Simplex method
* Ellipsoid method
* Bundle methods
* Newton's method
* Quasi-Newton methods
* Interior point methods
* Conjugate gradient method
* Line search - a technique for one dimensional optimization, usually used as a subroutine for other, more general techniques.

Should the objective function be convex over the region of interest, then any local minimum will also be a global minimum. There exist robust, fast numerical techniques for optimizing twice differentiable convex functions.

Constrained problems can often be transformed into unconstrained problems with the help of Lagrange multipliers.

Here are a few other popular methods:
* Hill climbing
* Simulated annealing
* Quantum annealing
* Tabu search
* Beam search
* Genetic algorithms
* Ant colony optimization
* Evolution strategy
* Stochastic tunneling
* Differential evolution
* Particle swarm optimization
* Harmony search
* Bees algorithm
* Dynamic relaxation

Uses

Problems in rigid body dynamics (in particular articulated rigid body dynamics) often require mathematical programming techniques, since you can view rigid body dynamics as attempting to solve an ordinary differential equation on a constraint manifold; the constraints are various nonlinear geometric constraints such as "these two points must always coincide", "this surface must not penetrate any other", or "this point must always lie somewhere on this curve". Also, the problem of computing contact forces can be done by solving a linear complementarity problem, which can also be viewed as a QP (quadratic programming problem).

Many design problems can also be expressed as optimization programs. This application is called design optimization. One recent and growing subset of this field is multidisciplinary design optimization, which, while useful in many problems, has in particular been applied to aerospace engineering problems.

Mainstream economics also relies heavily on mathematical programming. An often studied problem in microeconomics, the utility maximization problem, and its dual problem the Expenditure minimization problem, are economic optimization problems. Consumers and firms are assumed to maximize their utility/profit. Also, agents are most frequently assumed to be risk-averse thereby wishing to minimize whatever risk they might be exposed to. Asset prices are also explained using optimization though the underlying theory is more complicated than simple utility or profit optimization. Trade theory also uses optimization to explain trade patterns between nations.

Another field that uses optimization techniques extensively is operations research.

ee also

*Arg max
*Brachistochrone
*Dynamic programming
*Fuzzy logic
*Game theory
*Goal Programming
*Important publications in optimization
*Interior point methods
*Operations research
*Optimization problem
*
*Process optimization
*Random optimization
*Simplex algorithm
*Topkis's Theorem
*Variational calculus
*Variational inequality
*Radial basis function

Solvers

*NAG Numerical Libraries-The NAG Library contains a comprehensive collection of Optimization routines, which cover a diverse set of problems and circumstances.http://www.nag.co.uk/optimization/index.asp
*NPSOL - a Fortran package designed to solve the nonlinear programming problem: the minimization of a smooth nonlinear function subject to a set of constraints on the variables.http://www.sbsi-sol-optimize.com/asp/sol_product_npsol.htm
*OpenOpt - a free toolbox with connections to lots of solvers, for Python language programmers
*IPOPT - an open-source primal-dual interior point method NLP solver which handles sparse matrices
*KNITRO - solver for nonlinear optimization problems
*CPLEX
*Mathematica - handles linear programming, integer programming and constrained non-linear optimization problems

References

* Mordecai Avriel (2003)." Nonlinear Programming: Analysis and Methods." Dover Publishing. ISBN 0-486-43227-0.
* Stephen Boyd and Lieven Vandenberghe (2004). [http://www.stanford.edu/~boyd/cvxbook/ Convex Optimization] , Cambridge University Press. ISBN 0-521-83378-7.
* Elster K.-H. (1993), Modern Mathematical Methods of Optimization, Vch Pub. ISBN 3055014529.
* Jorge Nocedal and Stephen J. Wright (2006). [http://www.ece.northwestern.edu/~nocedal/book/num-opt.html Numerical Optimization] , Springer. ISBN 0-387-30303-0.
* Panos Y. Papalambros and Douglass J. Wilde (2000). [http://www.optimaldesign.org/ Principles of Optimal Design : Modeling and Computation] , Cambridge University Press. ISBN 0-521-62727-3.
* Yang X.-S. (2008), Introduction to Mathematical Optimization: From Linear Programming to Metaheuristics, Cambridge Int. Science Publishing. ISBN 1-904602827.

External links

* [http://www-fp.mcs.anl.gov/otc/Guide/index.html NEOS Guide] currently being replaced by the [http://wiki.mcs.anl.gov/neos NEOS Wiki]
* [http://www.mathprog.org/ Mathematical Programming Society]
* [http://www.coin-or.org/ COIN-OR] — Computational Infrastructure for Operations Research
* [http://glossary.computing.society.informs.org/ Mathematical Programming Glossary]
* [http://www.ipp.mpg.de/de/for/bereiche/stellarator/Comp_sci/CompScience/csep/csep1.phy.ornl.gov/mo/mo.html Mathematical optimization]
* [http://www.mat.univie.ac.at/%7Eneum/glopt.html Global optimization]
* [http://www2.arnes.si/%7Eljc3m2/igor/links.html Optimization Related Links]
* Jon Dattorro, [http://www.convexoptimization.com Convex Optimization & Euclidean Distance Geometry]
* [http://plato.asu.edu/guide.html Decision Tree for Optimization Software] Links to optimization source codes
* [http://www.optimization-online.org Optimization Online] A repository for optimization e-prints
* [http://www.bowdoin.edu/faculty/a/alevy/book.shtml The Basics of Practical Optimization] An undergraduate optimization text

Modeling languages:
* [http://www.aimms.com AIMMS]
* [http://www.ampl.com/ AMPL]
* [http://www.gams.com/ GAMS] — General Algebraic Modeling System
* [http://www.maximal-usa.com/mpl/ MPL]
* [http://www.ilog.com/products/oplstudio/ OPL]
* [http://www.ateji.com/optimj.html OPTIMJ]

Solvers:
* [http://www.conopt.com/ CONOPT]
* [http://www.ilog.com/products/cplex/ CPLEX] - linear, quadratic, and mixed-integer programming solver
* [http://www.dna-evolutions.com/dnaappletsample.html JOpt]
* [http://trilinos.sandia.gov/packages/moocho/ Moocho] - a very flexible open-source NLP solver
* [http://www.mosek.com/ Mosek]
* [http://www.sas.com/technologies/analytics/optimization/ SAS/OR]
* [http://www.stanford.edu/group/SOL/software.html Free Optimization Software by Systems Optimization Laboratory, Stanford University]
* [http://www.ime.usp.br/~egbirgin/tango/ TANGO Project] - Trustable Algorithms for Nonlinear General Optimization
* [http://www.fea-optimization.com/optm/index_e.htm SmartDO] - Engineering global optimization (commercial) software

Libraries:
* [http://ool.sourceforge.net/ OOL (Open Optimization library)] - a set of optimization routines in C.
* [http://www.ilog.com/products/cplex/product/interfaces.cfm CPLEX Component Libraries]
* [http://www2.arnes.si/~ljc3m2/igor/ioptlib/ IOptLib (Investigative Optimization Library)] - a free open source library for development of optimization algorithms (ANSI C).
* [http://www.alglib.net/optimization/ ALGLIB] Optimization sources. C++, C#, Delphi, Visual Basic.
* [http://optalgtoolkit.sourceforge.net/ OAT (Optimization Algorithm Toolkit)] - a set of standard optimization algorithms and problems in Java.


Wikimedia Foundation. 2010.

Игры ⚽ Поможем написать курсовую

Look at other dictionaries:

  • Optimization — or optimality is a term that may refer to: * Optimization (mathematics), trying to find maxima and minima of a function * Optimization (computer science), improving a system to reduce runtime, bandwidth, memory requirements, or other property of… …   Wikipedia

  • Mathematics of Operations Research — (MOR) is a scholarly journal published since 1976. The founding editor was Arthur F. Veinott, Jr. of Stanford University, who served as editor in chief 1976 1980. MOR is published quarterly by INFORMS and indexed by Journal Citation Reports. [1]… …   Wikipedia

  • Mathematics education in Australia — varies considerably between various states due to the different education systems in place in each state. Contents 1 New South Wales 1.1 Higher School Certificate 2 Victoria 2.1 …   Wikipedia

  • Mathematics, Form and Function — is a survey of the whole of mathematics, including its origins and deep structure, by the American mathematician Saunders Mac Lane. Contents 1 Mac Lane s relevance to the philosophy of mathematics 2 Mathematics and human activities …   Wikipedia

  • optimization — /op teuh meuh zay sheuhn/ 1. the fact of optimizing; making the best of anything. 2. the condition of being optimized. 3. Math. a mathematical technique for finding a maximum or minimum value of a function of several variables subject to a set of …   Universalium

  • Mathematics — Maths and Math redirect here. For other uses see Mathematics (disambiguation) and Math (disambiguation). Euclid, Greek mathematician, 3r …   Wikipedia

  • mathematics — /math euh mat iks/, n. 1. (used with a sing. v.) the systematic treatment of magnitude, relationships between figures and forms, and relations between quantities expressed symbolically. 2. (used with a sing. or pl. v.) mathematical procedures,… …   Universalium

  • Optimization problem — In mathematics and computer science, an optimization problem is the problem of finding the best solution from all feasible solutions. Optimization problems can be divided into two categories depending on whether the variables are continuous or… …   Wikipedia

  • Mathematics of radio engineering — A complex valued function. The mathematics of radio engineering is a pleasant and very useful subject. This article is an attempt to provide a reasonably comprehensive summary of this almost limitless topic. While the ideas have historically… …   Wikipedia

  • Mathematics and Physical Sciences — ▪ 2003 Introduction Mathematics       Mathematics in 2002 was marked by two discoveries in number theory. The first may have practical implications; the second satisfied a 150 year old curiosity.       Computer scientist Manindra Agrawal of the… …   Universalium

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”