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

Online Help

All Products    Maple    MapleSim


solve/parametric

solve, with case discussion, equations involving parameters

 

Calling Sequence

Parameters

Description

Examples

Compatibility

Calling Sequence

solve(equations, variables, parametric)

solve(equations, variables, parametric=mode, parameters=params)

solve(equations, variables, parametric, real)

Parameters

equations

-

polynomial equation, or set or list of polynomial equations or inequations

variables

-

(optional) name, or set or list of names

mode

-

one of lazy, proviso, or full; specify level of detail of solution

params

-

(optional) set of parameters

Description

• 

The solve command with the parametric option solves a system of polynomial equations with parameters.

• 

It builds a full parametric discussion of the solutions to the equations with respect to the parameters in the equations using a piecewise expression. By default, an efficient approach is used that returns the result as a lazily evaluated piecewise expression.  That is, the piecewise solution contains inert function calls in some branches of the form %SolveTools[Parametric].  To compute an answer in one of these cases, use the value command. The intention behind this output format is to do as little computation as possible but to make it easy to compute the answer in non-general cases, if needed.

• 

Currently only polynomial equations are supported.

• 

If the real option is given, the SolveTools[SemiAlgebraic] command is called on the equations.  In this case, only a full case discussion on non-variable symbols is available.

• 

The parametric option can also be given as an equation parametric=lazy, parametric=full or parametric=proviso which will return answers in the corresponding modes for SolveTools[Parametric].  (The default is parametric=lazy.)

• 

The parameters option can be used to specify that only a subset of the non-variable symbols in the equations should be treated as parameters.

Examples

solvey=mx+b,y=nx+c,x,y,parametric

SolveToolsParametricmxb+y,mxc+y,x,y,b,c,mmn=0x=bcmn,y=bncmmnmn0

(1)

solvey=mx+b,y=nx+c,x,y,parametric=full,parameters=m,n

mn=0x=bcmn,y=bncmmnmn0

(2)

solvey<nx+c&comma;mx+b<y&comma;x&comma;y&comma;parametric&comma;real

x=x&comma;xn+b<y&comma;y<xn+cm=nb<cbcmn<x&comma;xm+b<y&comma;y<xn+cm<nx<bcmn&comma;xm+b<y&comma;y<xn+cn<motherwise

(3)

Compatibility

• 

The solve/parametric command was introduced in Maple 15.

• 

The parametric option was introduced in Maple 15.

• 

For more information on Maple 15 changes, see Updates in Maple 15.

• 

The real option was introduced in Maple 17.

• 

For more information on Maple 17 changes, see Updates in Maple 17.

See Also

solve

SolveTools[Parametric]

SolveTools[SemiAlgebraic]

value