This integral cannot be evaluated.
>>> from sympy import integrate, sin, cos,sqrt, Symbol
>>> x = Symbol('x')
>>> integrate(1/sqrt(1+sin(x)**2),x)
Integral(1/sqrt(sin(x)**2 + 1), x)
Does sympy not support decomposing integrals into elliptic integrals as mathematica, wolfram alpha, or maple do? (wolfram answer)
I tried looking in the sympy buglist under the integration label, but nothing jumped out at me (there was something on recognizing elliptic integrals, but the bug description wasn't clear to me).
Thanks!