sage: solve(exp(-x)+exp(x) == 2,x) [x == 0] sage: solve(exp(-2x)+exp(2x) == 2,x) []
Can tell me anyone why the second equation has no solution?
1 | initial version |
sage: solve(exp(-x)+exp(x) == 2,x) [x == 0] sage: solve(exp(-2x)+exp(2x) == 2,x) []
Can tell me anyone why the second equation has no solution?
2 | retagged |
sage: solve(exp(-x)+exp(x) == 2,x) [x == 0] sage: solve(exp(-2x)+exp(2x) == 2,x) []
Can tell me anyone why the second equation has no solution?