why doesn't sage solve ln
I have a simple equation to solve
solve(ln(x) -2 > 0,x)
The actual value should be $x > e^2$
but sagemath gives
[[log(x) - 2 > 0]]
How do I get actual value?
I have a simple equation to solve
solve(ln(x) -2 > 0,x)
The actual value should be $x > e^2$
but sagemath gives
[[log(x) - 2 > 0]]
How do I get actual value?
One possible solution:
sage: solve(log(x)-2>0,x, algorithm="sympy")
[x > e^2]
HTH,
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 2020-07-05 03:32:28 +0100
Seen: 227 times
Last updated: Jul 05 '20