'Solve' problem



On 6/30/2011 6:26 AM, Michael Xue wrote:
> It seems that
>
>      solve(exp(-20000*x)=9/17,x);
>
> sends maxima into an infinitive loop.
>
> but solve(exp(a*x),x)=b) works.
>
> Thank you in advance for helps and comments on this.
>
>
> Michael
>
>
>
>
> _______________________________________________
> Maxima mailing list
> Maxima at math.utexas.edu
> http://www.math.utexas.edu/mailman/listinfo/maxima
if you try solve(exp(-3*x)=9/17,x)  you will get a hint of the reason.

Maxima is computing and trying to display the 20,000 distinct solutions 
to your
problem. It takes a long time to do this.

Is this what you want to see?

RJF