|
SOLUTIONS
|
BUILT-IN MATHEMATICA SYMBOL
Minimize
Minimize[f, x]
minimizes f with respect to x.
Minimize[f, {x, y, ...}]
minimizes f with respect to x, y, ....
Minimize[{f, cons}, {x, y, ...}]
minimizes f subject to the constraints cons.
Details and OptionsDetails and Options
- Minimize returns a list of the form
. - cons can contain equations, inequalities, or logical combinations of these.
- If f and cons are linear or polynomial, Minimize will always find a global minimum.
- Minimize will return exact results if given exact input.
- If Minimize is given an expression containing approximate numbers, it automatically calls NMinimize.
- If the minimum is achieved only infinitesimally outside the region defined by the constraints, or only asymptotically, Minimize will return the infimum and the closest specifiable point.
- If no domain is specified, all variables are assumed to be real.
- x
Integers can be used to specify that a particular variable can take on only integer values. - If the constraints cannot be satisfied, Minimize returns {+Infinity, {x->Indeterminate, ...}}.
- Even if the same minimum is achieved at several points, only one is returned.
- Minimize[f, x, WorkingPrecision->n] uses n digits of precision while computing a result. »
New in 5 | Last modified in 6
Mathematica 9 is now available!
New to Mathematica?
Find your learning path »
Have a question?
Ask support »

