Status: Valid
Owner: ----
Labels: Type-Defect Priority-Medium Integration

New issue 3647 by [email protected]: Require explicit assumptions when integrating.
http://code.google.com/p/sympy/issues/detail?id=3647

Below, the integration code basically assumes n != 0 and y != 1.

from sympy import exp, integrate
from sympy.abc import n, x, y
integrate(y**x, x)
y**x/log(y)
integrate(y**(n*x), x)
y**(n*x)/(n*log(y))
integrate(exp(n*x), x)
exp(n*x)/n

I think it should return a Piecewise if we cannot rule out the special cases n = 0 or y = 1 based on assumptions.

--
You received this message because this project is configured to send all issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
You received this message because you are subscribed to the Google Groups 
"sympy-issues" 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-issues?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to