parametric inequations
Publié : dim. juil. 23, 2017 1:36 pm
1:
solve(u *x < a,x) returns
Warning! Solving parametric inequation requires assumption on parameters otherwise solutions may be missed...
[]
2: assume(u<0 and a<0) returns
a // shows the last assigned value
3:
solve(u *x < a,x) returns
Warning! ...requires assumption ... // The warning has to be dissolved, if it finds at least one assumption or better warnings about the variables not found ... The variables 'a,u' has no assumption
list[x>(a/u)]
4:
purge(a);
assume(u>0)
5:
solve(u *x < a,x) returns
Warning! The variable 'a' has no assumption
list[x<(a/u)]
solve(u *x < a,x) returns
Warning! Solving parametric inequation requires assumption on parameters otherwise solutions may be missed...
[]
2: assume(u<0 and a<0) returns
a // shows the last assigned value
3:
solve(u *x < a,x) returns
Warning! ...requires assumption ... // The warning has to be dissolved, if it finds at least one assumption or better warnings about the variables not found ... The variables 'a,u' has no assumption
list[x>(a/u)]
4:
purge(a);
assume(u>0)
5:
solve(u *x < a,x) returns
Warning! The variable 'a' has no assumption
list[x<(a/u)]