Why can Sage solve one log equation, but not another with only different values?

asked 2015-03-18 10:00:47 +0200

Woodgnome gravatar image

updated 2015-03-18 10:02:44 +0200

solve(3 == 586 * 0.2 ^ x, x)
[x == log(586/3)/log(5)] // Numerical: 3.27736003989833

solve(3 == 586 * 0.99557 ^ x, x)
[100000^x == 586/3*99557^x] // Wat???

Why is it not capable of solving the second equation? Math tells us there is a solution and that it is:

log(3/586) / log(0.99557) = 1188.03958878842
edit retag flag offensive close merge delete

Comments

rws gravatar imagerws ( 2015-03-20 08:35:36 +0200 )edit