Input Form: Algebraic - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Algebraic Form of Input for the GlobalOptimization Package

  

This help page describes the algebraic form of input for commands in the GlobalOptimization package.  For general information on the input forms accepted by the GlobalOptimization package commands, see the GlobalOptimization/InputForms help page.   For more information about options mentioned below, see the Optimization/Options help page.

 

Objective Function

Constraints

Bounds

Initial Values

Solution

Examples

Objective Function

• 

The objective function must be an algebraic expression in the problem variables, for example, ⅇtanx and x2+y23x+3y+3.  The problem variables are the indeterminates in the objective function and, if provided, the constraints.  They can also be specified using the variables option.

Constraints

• 

The constraints must be a set or list of relations.  Only relations of type <= and = are allowed.  An example is w=1&comma;2y2+z&comma;x5.

Bounds

• 

Specify the bounds as a sequence of arguments of the form vname = vrange, where vname is the name of a problem variable and vrange is its range, for example, y=-1..2. There must be exactly one bound argument for each problem variable. The endpoints of each range must evaluate to finite numeric values.

• 

Because finite bounds are required, the assume = nonnegative option, available in the Optimization package, is not accepted by GlobalOptimization commands.

Initial Values

• 

Specify the initial values using the option initialpoint = p, where p is a set or list of equalities of the form varname=value. Each varname is one of the problem variables and value is the value to which it is initially set.  An example is initialpoint={x=-1.2, y=5.7}.

Solution

• 

Maple returns the solution as a list containing the final minimum (or maximum) value and a point (the computed extremum).  The point is a list containing elements of the form varname=value, where varname is a problem variable and value is its value.

Examples

withGlobalOptimization&colon;

Solve a minimization problem in two variables, x and y.

GlobalSolvey210x5y&comma;2x4y=2&comma;x=0..3&comma;y=0..3

−12.5142127851561753&comma;x=0.788704583952784&comma;y=1.22609535114607

(1)

Solve a minimization problem in three variables, x, y, and z.

GlobalSolvex12+y22+z32&comma;x2+y2+z2=0.5&comma;x=0..1&comma;y=0..1&comma;z=0..1

9.20849737787081501&comma;x=0.188982236070483&comma;y=0.377964472954812&comma;z=0.566946709694829

(2)

See Also

GlobalOptimization

GlobalOptimization/InputForms

GlobalOptimization/Options

GlobalOptimization[GlobalSolve]

Optimization