Hi, I am using Windows XP 32-bit, Python 3.3 release, sympy 0.7.2.rc1 and 
have the following problem

>>> sympy.solve([sympy.Abs(4*x-7)-5, sympy.Abs(3-8*x)-1],x)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "C:\Python33\lib\site-packages\sympy\solvers\solvers.py", line 783, 
in solve
    solution = _solve_system(f, symbols, **flags)
  File "C:\Python33\lib\site-packages\sympy\solvers\solvers.py", line 1306, 
in _solve_system
    raise NotImplementedError('no valid subset found')
NotImplementedError: no valid subset found
>>> sympy.solve([sympy.Abs(4*x-7)-5],x)
[(1/2,), (3,)]
>>> sympy.solve([sympy.Abs(3-8*x)-1],x)
[(1/4,), (1/2,)]
>>> sympy.__version__
'0.7.2.rc1'

Why in the first case, not return (1/2,) instead of "no valid subset found" 
?

Thanks

-- 
You received this message because you are subscribed to the Google Groups 
"sympy" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/sympy/-/rXEFEr6eFD4J.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/sympy?hl=en.

Reply via email to