sage: solve(x*exp(x)==0,x) [x == 0, e^x == 0]
but
sage: solve(x*exp(-x)==0,x) [x == 0]
How can i avoid the e^x==0 in the solutionlist?
Thanks for help.
1 | initial version |
sage: solve(x*exp(x)==0,x) [x == 0, e^x == 0]
but
sage: solve(x*exp(-x)==0,x) [x == 0]
How can i avoid the e^x==0 in the solutionlist?
Thanks for help.
2 | No.2 Revision |
sage: solve(x*exp(x)==0,x)
[x == 0, e^x == but
sage: solve(x*exp(-x)==0,x)
[x == How can i avoid the e^x==0 in the solutionlist?
Thanks for help.