Solving equations:

solve(e^x==e^3, x)   --> [x == 3]
solve(2^x==2^3, x)   --> [x == log(8)/log(2)]

So it does not simplify. But (log(8)/log(2)).full_simplify() returns log(8)/log(2), not 3. OK, I can do .simplify_radical(), but why full_simplify() doesn't try it?

I also tried

solve(2^x+3^x==13, x)

Didn't work. However, are these kind of problems possible to solve at all, and if so, in some program that is already part of Sage?

--
Jori Mäntysalo

--
You received this message because you are subscribed to the Google Groups 
"sage-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-devel+unsubscr...@googlegroups.com.
To post to this group, send email to sage-devel@googlegroups.com.
Visit this group at http://groups.google.com/group/sage-devel.
For more options, visit https://groups.google.com/d/optout.

Reply via email to