solve/ineqs
solve inequalities
Calling Sequence
Parameters
Description
Examples
solve(ineqs, vars)
ineqs
-
inequalities ( <, <=, >, or >= )
vars
variables (as in solve)
The solve function can solve many types of inequalities and systems of inequalities in one or more variables.
In general, variables and parameters will automatically be assumed to be real-valued in the context of one or more inequalities.
Systems of linear, parametric inequalities are fully supported. Univariate inequalities can be solved if their points of equality can be sorted into strictly increasing order. In other cases, solve may return solutions involving the signum function.
Some parametric inequalities may have conditional solutions that are invalid for some values of the parameters. In some cases, Maple will return these solutions in the form of piecewise functions whose conditions depend upon the values of the parameters. To prevent solve from returning conditional solutions, set the environment variable _EnvConditionalSolutions := false.
solve⁡0≤x2,x
x
solve⁡0<x+1x,x
0,∞
solve⁡x−1⁢x−2⁢x−3<0,x
−∞,1,2,3
solve⁡x−1+a⁢x−2+a⁢x−3+a<0,x
x<3−a,2−a<x,x<1−a
solve⁡x+1<exp⁡x
−∞,0,0,∞
solve⁡a⁢x<b,x
x=x0<b∧a=0x<ba0<aba<xa<0otherwise
This inequality has only conditional solutions, so NULL is returned if _EnvConditionalSolutions is set to false.
_EnvConditionalSolutions≔false
See Also
isolate
plots:-inequal
signum
simplex
solve
Download Help Document