Comment #2 on issue 1500 by asmeurer: Sum does not work with some arguments
http://code.google.com/p/sympy/issues/detail?id=1500

In 32-bit I get:

>>> Sum(m**2+m*exp(m), (m, -3.0/2, 3.0/2)).doit()
Sum(m**2 + m*exp(m), (m, -1.5, 1.5))

In 64-bit, I get:

>>> Sum(m**2+m*exp(m), (m, -3.0/2, 3.0/2)).doit()
Traceback (most recent call last):
   File "<console>", line 1, in <module>
   File "sympy/concrete/summations.py", line 70, in doit
     f = eval_sum(f, (i, a, b))
   File "sympy/concrete/summations.py", line 238, in eval_sum
     value = eval_sum_symbolic(f.expand(), (i, a, b))
   File "sympy/concrete/summations.py", line 259, in eval_sum_symbolic
     lrsum = telescopic(L, R, (i, a, b))
   File "sympy/concrete/summations.py", line 218, in telescopic
     s = solve(L.subs(i, i + m) + R, m)[0]
   File "sympy/solvers/solvers.py", line 332, in solve
     result = tsolve(f, *symbols)
   File "sympy/solvers/solvers.py", line 716, in tsolve
     raise NotImplementedError("Unable to solve the equation.")
NotImplementedError: Unable to solve the equation.


--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--

You received this message because you are subscribed to the Google Groups 
"sympy-issues" group.
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-issues?hl=en.


Reply via email to