Numerical Optimization
| FindMinimum[f,{x,x0}] | search for a local minimum of f, starting at x=x0 |
| FindMinimum[f,x] | search for a local minimum of f |
| FindMinimum[f,{{x,x0},{y,y0},...}] |
| search for a local minimum in several variables |
| FindMinimum[{f,cons},{{x,x0},{y,y0},...}] |
| search for a local minimum subject to the constraints cons starting at x=x0, y=y0, ... |
| FindMinimum[{f,cons},{x,y,...}] | search for a local minimum subject to the constraints cons |
| FindMaximum[f,x], etc. | search for a local maximum |
Searching for local minima and maxima.
This finds the value of x which minimizes (x), starting at x=2.
| Out[1]= |  |
|
The last element of the list gives the value at which the minimum is achieved.
| Out[2]= |  |
|
Like
FindRoot,
FindMinimum and
FindMaximum work by starting from a point, then progressively searching for a minimum or maximum. But since they return a result as soon as they find anything, they may give only a local minimum or maximum of your function, not a global one.
This curve has two local minima.
| Out[3]= |  |
|
Starting at x=1, you get the local minimum on the right.
| Out[4]= |  |
|
This gives the local minimum on the left, which in this case is also the global minimum.
| Out[5]= |  |
|
You can specify variables without initial values.
| Out[6]= |  |
|
You can specify a constraint.
| Out[7]= |  |
|
| NMinimize[f,x] | try to find the global minimum of f |
| NMinimize[f,{x,y,...}] | try to find the global minimum over several variables |
| NMaximize[f,x] | try to find the global maximum of f |
| NMaximize[f,{x,y,...}] | try to find the global maximum over several variables |
Finding global minima and maxima.
This immediately finds the global minimum.
| Out[8]= |  |
|
NMinimize and
NMaximize are numerical analogs of
Minimize and
Maximize. But unlike
Minimize and
Maximize they usually cannot guarantee to find absolute global minima and maxima. Nevertheless, they typically work well when the function
f is fairly smooth, and has a limited number of local minima and maxima.
| NMinimize[{f,cons},{x,y,...}] | try to find the global minimum of f subject to constraints cons |
| NMaximize[{f,cons},{x,y,...}] | try to find the global maximum of f subject to constraints cons |
Finding global minima and maxima subject to constraints.
With the constraint x>0, NMinimize will give the local minimum on the right.
| Out[9]= |  |
|
This finds the minimum of x+2 y within the unit circle.
| Out[10]= |  |
|
In this case Minimize can give an exact result.
| Out[11]= |  |
|
But in this case it cannot.
| Out[12]= |  |
|
This gives a numerical approximation, effectively using NMinimize.
| Out[13]= |  |
|
If both the objective function
f and the constraints
cons are linear in all variables, then minimization and maximization correspond to a
linear programming problem. Sometimes it is convenient to state such problems not in terms of explicit equations, but instead in terms of matrices and vectors.
Linear programming in matrix form.
Here is a linear programming problem in equation form.
| Out[14]= |  |
|
Here is the corresponding problem in matrix form.
| Out[15]= |  |
|
You can specify a mixture of equality and inequality constraints by making the list
b be a sequence of pairs
{bi, si}. If
si is
1, then the
ith constraint is
mi.x≥bi. If
si is
0 then it is
mi.x
bi, and if
si is
-1 then it is
mi.x≤bi.
This makes the first inequality use ≤.
| Out[16]= |  |
|
In
LinearProgramming[c, m, b, l], you can make
l be a list of pairs
{{l1, u1}, {l2, u2}, ...} representing lower and upper bounds on the
xi.
In doing large linear programming problems, it is often convenient to give the matrix
m as a
SparseArray object.