2.6 tan(x)tan4(x)+1dx

2.6.1 Mathematica
2.6.2 Rubi
2.6.3 Maple
2.6.4 Fricas
2.6.5 Maxima
2.6.6 XCAS
2.6.7 Sympy
2.6.8 MuPad

2.6.1 Mathematica

ClearAll[x] 
integrand = Tan[x] Sqrt[1 + Tan[x]^4]; 
res = Integrate[integrand, x]; 
TeXForm[res]
 

tan4(x)+1(cos(4x)+322cos2(x)sinh1(cos(2x))2cos2(x)tanh1(2sin2(x)cos(4x)+3))2cos(4x)+3

2.6.2 Rubi

<< Rubi` 
ClearAll[x] 
integrand = Tan[x] Sqrt[1 + Tan[x]^4]; 
res = Int[integrand, x]; 
TeXForm[res]
 

12tan4(x)+1tanh1(1tan2(x)2tan4(x)+1)212sinh1(tan2(x))

2.6.3 Maple

restart; 
integrand := tan(x)*sqrt(1 + tan(x)^4); 
res:=int(integrand,x); 
latex(res)
 

12(1+(tan(x))2)22(tan(x))2arcsinh((tan(x))2)222arctanh((2(tan(x))2+2)241(1+(tan(x))2)22(tan(x))2)

2.6.4 Fricas

set output tex off 
setSimplifyDenomsFlag(true) 
integrand := tan(x)*sqrt(1 + tan(x)^4); 
res:=integrate(integrand,x); 
latex(res)
 

2 log(tan(x)4+1tan(x)2)+2 log((2 2 tan(x)22 2) tan(x)4+1+3 tan(x)42 tan(x)2+3tan(x)4+2 tan(x)2+1)+2 tan(x)4+14

2.6.5 Maxima

integrand : tan(x)*sqrt(1 + tan(x)^4); 
res : integrate(integrand,x); 
tex(res);
 

did not solve

2.6.6 XCAS

integrand := tan(x)*sqrt(1 + tan(x)^4); 
res := integrate(integrand,x); 
latex(res)
 

tan4x+1+2(ln(tan4x+1tan2x)2+ln(2(tan4x+1tan2x)+2+222(tan4x+1tan2x)2+22)2)2

2.6.7 Sympy

>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)
 

did not solve

2.6.8 MuPad

evalin(symengine,'int(tan(x)*sqrt(1 + tan(x)^4),x)')
 

did not solve