solve/parametric
solve, with case discussion, equations involving parameters
Calling Sequence
Parameters
Description
Examples
Compatibility
solve(equations, variables, parametric)
solve(equations, variables, parametric=mode, parameters=params)
solve(equations, variables, parametric, real)
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
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.
solve⁡y=m⁢x+b,y=n⁢x+c,x,y,parametric
SolveToolsParametric⁡−m⁢x−b+y,−m⁢x−c+y,x,y,b,c,mm−n=0x=−b−cm−n,y=−b⁢n−c⁢mm−nm−n≠0
solve⁡y=m⁢x+b,y=n⁢x+c,x,y,parametric=full,parameters=m,n
m−n=0x=−b−cm−n,y=−b⁢n−c⁢mm−nm−n≠0
solve⁡y<n⁢x+c,m⁢x+b<y,x,y,parametric,real
x=x,x⁢n+b<y,y<x⁢n+cm=n∧b<c−b−cm−n<x,x⁢m+b<y,y<x⁢n+cm<nx<−b−cm−n,x⁢m+b<y,y<x⁢n+cn<motherwise
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
Download Help Document