Status: New
Owner: ----
Labels: Type-Defect Priority-Medium
New issue 4058 by [email protected]: correct integrate() result in
python2.7.4, but wrong in python3.3
http://code.google.com/p/sympy/issues/detail?id=4058
Wester test_V12() in test_wester.py
Tested in Ubuntu 13.04.
Result is correct in python2.7.4:
Python 2.7.4 (default, Sep 26 2013, 03:20:56)
[GCC 4.7.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
from sympy import *
x = symbols('x')
integrate(1/(5 + 3*cos(x) + 4*sin(x)), x)
-1/(tan(x/2) + 2)
But incorrect on python3.3.1:
Python 3.3.1 (default, Sep 25 2013, 19:30:50)
[GCC 4.7.3] on linux
Type "help", "copyright", "credits" or "license" for more information.
from sympy import *
x = symbols('x')
integrate(1/(5 + 3*cos(x) + 4*sin(x)), x)
tan(x/2)/(2*tan(x/2) + 4)
--
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.
For more options, visit https://groups.google.com/groups/opt_out.