ClearAll[x] integrand = Tan[x] Sqrt[1 + Tan[x]^4]; res = Integrate[integrand, x]; TeXForm[res]
<< Rubi` ClearAll[x] integrand = Tan[x] Sqrt[1 + Tan[x]^4]; res = Int[integrand, x]; TeXForm[res]
restart; integrand := tan(x)*sqrt(1 + tan(x)^4); res:=int(integrand,x); latex(res)
set output tex off setSimplifyDenomsFlag(true) integrand := tan(x)*sqrt(1 + tan(x)^4); res:=integrate(integrand,x); latex(res)
integrand : tan(x)*sqrt(1 + tan(x)^4); res : integrate(integrand,x); tex(res);
integrand := tan(x)*sqrt(1 + tan(x)^4); res := integrate(integrand,x); latex(res)
>python Python 3.7.3 (default, Mar 27 2019, 22:11:17) [GCC 7.3.0] :: Anaconda, Inc. on linux from sympy import * x = symbols('x') integrand = tan(x)*sqrt(1 + tan(x)**4); res = integrate(integrand,x); latex(res)
evalin(symengine,'int(tan(x)*sqrt(1 + tan(x)^4),x)')