Updates:
        Status: Fixed
        Labels: -NeedsReview PassedReview

Comment #8 on issue 1637 by matt...@gmail.com: solve([Eq(x+a*y,1), Eq(x+y+z, 1), Eq(z+3*x)], x, y, z, a) troubles
http://code.google.com/p/sympy/issues/detail?id=1637

Now in master:

In [1]: x, y, z, a = symbols('x,y,z,a')

In [2]: solve([Eq(x+a*y,1), Eq(x+y+z, 1), Eq(z+3*x)], x, y, z)
Out[2]:
⎧    1 - a         3        -(3 - 3⋅a)⎫
⎨x: ───────, y: ───────, z: ──────────⎬
⎩   1 + 2⋅a     1 + 2⋅a      1 + 2⋅a  ⎭

In [3]: solve([Eq(x+a*y,1), Eq(x+y+z, 1), Eq(z+3*x)], x, y, z, a)
(...)

NotImplementedError: only zero-dimensional systems supported (finite number of solutions)

All problems reported in this issue were fixed. I'm closing this issue because adding support for positive dimensional systems should be on our wish list.

--
You received this message because you are subscribed to the Google Groups 
"sympy-patches" group.
To post to this group, send email to sympy-patches@googlegroups.com.
To unsubscribe from this group, send email to 
sympy-patches+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sympy-patches?hl=en.

Reply via email to