Variables and Starting Conditions
All the functions FindMinimum, FindMaximum, and FindRoot take variable specifications of the same form. The function FindFit uses the same form for its parameter specifications.
| FindMinimum[f,vars] | find a local minimum of f with respect to the variables given in vars |
| FindMaximum[f,vars] | find a local maximum of f with respect to the variables given in vars |
| FindRoot[f,vars] | find a root |
| FindRoot[eqns,vars] | find a root of the equations eqns with respect to the variables given in vars |
| FindFit[data,expr,pars,vars] | find values of the parameters pars that make expr give a best fit to data as a function of vars |
Variables and parameters in the
functions.
The list vars (pars for FindFit) should be a list of individual variable specifications. Each variable specification should be of the following form.
| {var,st} | variable var has starting value st |
| {var,st1,st2} | variable var has two starting values |
| {var,st,rl,ru} | variable var has starting value st; the search will be terminated when the value of var goes outside of the interval |
| {var,st1,st2,rl,ru} | variable var has two starting values |
Individual variable specifications in the
functions.
The specifications in vars all need to have the same number of starting values. When region bounds are not specified, they are taken to be unbounded, that is,
,
.
Vector- and Matrix-Valued Variables
The most common use of variables is to represent numbers. However, the variable input syntax supports variables that are treated as vectors, matrices, or higher-rank tensors. In general, the
commands, with the exception of FindFit, which currently only works with scalar variables, will consider a variable to take on values with the same rectangular structure as the starting conditions given for it.
| In[1]:= |
| In[2]:= |
| Out[2]= |
Of course, this is not the best way to compute the eigenvalue, but it does show how the variable dimensions are picked up from the starting values. Since
has a starting value of 1, it is taken to be a scalar. On the other hand,
is given a starting value, which is a vector of length 3, so it is always taken to be a vector of length 3.
If you use multiple starting values for variables, it is necessary that the values have consistent dimensions and that each component of the starting values is distinct.
| In[3]:= |
| Out[3]= |
One advantage of variables that can take on vector and matrix values is that they allow you to write functions, which can be very efficient for larger problems and/or handle problems of different sizes automatically.
| In[4]:= |
Note that since the value of the function would be meaningless unless
had the correct structure, the definition is restricted to arguments with that structure. For example, if you defined the function for any pattern
, then evaluating with an undefined symbol
(which is what FindMinimum does) gives meaningless unintended results. It is often the case that when working with functions for vector-valued variables, you will have to restrict the definitions. Note that the definition above does not rule out symbolic values with the right structure. For example,
gives a symbolic representation of the function for scalar
, ....
The solution did not achieve the default tolerances due to the fact that Mathematica was not able to get symbolic derivatives for the function, so it had to fall back on finite differences that are not as accurate.
A disadvantage of using vector- and matrix-valued variables is that Mathematica cannot currently compute symbolic derivatives for them. Sometimes it is not difficult to develop a function that gives the correct derivative. (Failing that, if you really need greater accuracy, you can use higher-order finite differences.)
| In[8]:= |
| In[9]:= |
| Out[11]= |
Jacobian and Hessian derivatives are often sparse. You can also specify the structural sparsity of these derivatives when appropriate, which can reduce overall solution complexity by quite a bit.





