Hi all,

I am trying to solve a very simple equation system. Here is the code:

import sympy as sp
a, b, c, d = sp.S('a b c d'.split())
equations = [
     sp.Eq(a, b+c/d),
     sp.Eq(c, 60.),
     sp.Eq(d, 5.)]

print sp.solve(equations)


So I can have an expression for 'a' as a function of 'b'.

I am getting this error instead:

...
  File "/usr/lib/python2.7/dist-packages/sympy/solvers/solvers.py", line 
484, in solve
    solution = _solve(f, *symbols, **flags)
  File "/usr/lib/python2.7/dist-packages/sympy/solvers/solvers.py", line 
730, in _solve
    raise NotImplementedError()
NotImplementedError


I am using sympy 0.7.1.

Any hint of what I am doing wrong?

Thanks in advance

-- 
You received this message because you are subscribed to the Google Groups 
"sympy" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/sympy.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/sympy/4314646e-f6f4-438c-9c68-55ae207117f0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to