Updates:
Cc: matt...@gmail.com
Comment #1 on issue 2808 by asmeu...@gmail.com: integrate(1/(x**2 +
a**2)**2, x) is wrong if a is real
http://code.google.com/p/sympy/issues/detail?id=2808
Note that this used to work in SymPy 0.7.0:
In [1]: a = Symbol('a', real=True)
In [2]: integrate
Status: Accepted
Owner:
Labels: Type-Defect Priority-Medium Assumptions Integration WrongResult
New issue 2808 by asmeu...@gmail.com: integrate(1/(x**2 + a**2)**2, x) is
wrong if a is real
http://code.google.com/p/sympy/issues/detail?id=2808
In [4]: a = Symbol('a', positive=True)
In [5]