Use Python to solve equations?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Kelie

    Use Python to solve equations?

    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
  • James Mills

    #2
    Re: Use Python to solve equations?

    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 <kf9150@gmail.c omwrote:
    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
    --

    >


    --
    --
    -- "Problems are solved by method"

    Comment

    • Kelie

      #3
      Re: Use Python to solve equations?

      Thank you James! Checking it out right now...

      Comment

      • Uwe Schmitt

        #4
        Re: Use Python to solve equations?

        On 11 Sep., 09:09, Kelie <kf9...@gmail.c omwrote:
        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

        Comment

        • Kelie

          #5
          Re: Use Python to solve equations?

          On Sep 11, 1:11 am, Uwe Schmitt <rocksportroc.. .@googlemail.co m>
          wrote:
          Kelie
          >
          look atwww.sagemath. com. it is great.
          >
          greetings, uwe

          Thanks Uwe!

          Comment

          Working...