Use Python to solve equations?

2008-09-11 Thread Kelie
Hello group, Is there any packages in Python that will help me solve functions similar to this: x = a*(1+bx)**2.5-c where a, b, c is known and the task to solve x? Thank you, Kelie -- http://mail.python.org/mailman/listinfo/python-list

Re: Use Python to solve equations?

2008-09-11 Thread James Mills
Hi Kelie, Check out sympy it is capable of doing things like this. cheers James On Thu, Sep 11, 2008 at 5:09 PM, Kelie [EMAIL PROTECTED] wrote: Hello group, Is there any packages in Python that will help me solve functions similar to this: x = a*(1+bx)**2.5-c where a, b, c is known and

Re: Use Python to solve equations?

2008-09-11 Thread Kelie
Thank you James! Checking it out right now... -- http://mail.python.org/mailman/listinfo/python-list

Re: Use Python to solve equations?

2008-09-11 Thread Uwe Schmitt
On 11 Sep., 09:09, Kelie [EMAIL PROTECTED] wrote: Hello group, Is there any packages in Python that will help me solve functions similar to this: x = a*(1+bx)**2.5-c where a, b, c is known and the task to solve x? Thank you, Kelie look at www.sagemath.com . it is great. greetings, uwe

Re: Use Python to solve equations?

2008-09-11 Thread Kelie
On Sep 11, 1:11 am, Uwe Schmitt [EMAIL PROTECTED] wrote: Kelie look atwww.sagemath.com. it is great. greetings, uwe Thanks Uwe! -- http://mail.python.org/mailman/listinfo/python-list