Loading [MathJax]/jax/output/HTML-CSS/jax.js

First time here? Check out the FAQ!

Ask Your Question
1

why doesn't sage solve ln

asked 4 years ago

lolora gravatar image

I have a simple equation to solve

solve(ln(x) -2 > 0,x)

The actual value should be x>e2

but sagemath gives

[[log(x) - 2 > 0]]

How do I get actual value?

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
2

answered 4 years ago

Emmanuel Charpentier gravatar image

One possible solution:

sage: solve(log(x)-2>0,x, algorithm="sympy")
[x > e^2]

HTH,

Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 4 years ago

Seen: 251 times

Last updated: Jul 05 '20