3.13.23 \(\int e^{e^{\frac {1}{2} (e^{e^4 x}+2 x)}+\frac {1}{2} (e^{e^4 x}+2 x)} (26+13 e^{4+e^4 x}) \, dx\) [1223]

3.13.23.1 Optimal result
3.13.23.2 Mathematica [A] (verified)
3.13.23.3 Rubi [F]
3.13.23.4 Maple [A] (verified)
3.13.23.5 Fricas [B] (verification not implemented)
3.13.23.6 Sympy [A] (verification not implemented)
3.13.23.7 Maxima [A] (verification not implemented)
3.13.23.8 Giac [F]
3.13.23.9 Mupad [B] (verification not implemented)

3.13.23.1 Optimal result

Integrand size = 49, antiderivative size = 19 \[ \int e^{e^{\frac {1}{2} \left (e^{e^4 x}+2 x\right )}+\frac {1}{2} \left (e^{e^4 x}+2 x\right )} \left (26+13 e^{4+e^4 x}\right ) \, dx=26 e^{e^{\frac {e^{e^4 x}}{2}+x}} \]

output
26*exp(exp(1/2*exp(x*exp(4))+x))
 
3.13.23.2 Mathematica [A] (verified)

Time = 0.14 (sec) , antiderivative size = 19, normalized size of antiderivative = 1.00 \[ \int e^{e^{\frac {1}{2} \left (e^{e^4 x}+2 x\right )}+\frac {1}{2} \left (e^{e^4 x}+2 x\right )} \left (26+13 e^{4+e^4 x}\right ) \, dx=26 e^{e^{\frac {e^{e^4 x}}{2}+x}} \]

input
Integrate[E^(E^((E^(E^4*x) + 2*x)/2) + (E^(E^4*x) + 2*x)/2)*(26 + 13*E^(4 
+ E^4*x)),x]
 
output
26*E^E^(E^(E^4*x)/2 + x)
 
3.13.23.3 Rubi [F]

Below are the steps used by Rubi to obtain the solution. The rule number used for the transformation is given above next to the arrow. The rules definitions used are listed below.

\(\displaystyle \int \left (13 e^{e^4 x+4}+26\right ) \exp \left (\frac {1}{2} \left (2 x+e^{e^4 x}\right )+e^{\frac {1}{2} \left (2 x+e^{e^4 x}\right )}\right ) \, dx\)

\(\Big \downarrow \) 7292

\(\displaystyle \int 13 e^{\frac {1}{2} \left (2 x+e^{e^4 x}+2 e^{x+\frac {e^{e^4 x}}{2}}\right )} \left (e^{e^4 x+4}+2\right )dx\)

\(\Big \downarrow \) 27

\(\displaystyle 13 \int e^{\frac {1}{2} \left (2 x+e^{e^4 x}+2 e^{x+\frac {e^{e^4 x}}{2}}\right )} \left (2+e^{e^4 x+4}\right )dx\)

\(\Big \downarrow \) 7293

\(\displaystyle 13 \int \left (2 e^{\frac {1}{2} \left (2 x+e^{e^4 x}+2 e^{x+\frac {e^{e^4 x}}{2}}\right )}+\exp \left (e^4 x+\frac {1}{2} \left (2 x+e^{e^4 x}+2 e^{x+\frac {e^{e^4 x}}{2}}\right )+4\right )\right )dx\)

\(\Big \downarrow \) 2009

\(\displaystyle 13 \left (\int \exp \left (\frac {1}{2} \left (2 \left (1+e^4\right ) x+e^{e^4 x}+2 e^{x+\frac {e^{e^4 x}}{2}}+8\right )\right )dx+2 \int e^{\frac {1}{2} \left (2 x+e^{e^4 x}+2 e^{x+\frac {e^{e^4 x}}{2}}\right )}dx\right )\)

input
Int[E^(E^((E^(E^4*x) + 2*x)/2) + (E^(E^4*x) + 2*x)/2)*(26 + 13*E^(4 + E^4* 
x)),x]
 
output
$Aborted
 

3.13.23.3.1 Defintions of rubi rules used

rule 27
Int[(a_)*(Fx_), x_Symbol] :> Simp[a   Int[Fx, x], x] /; FreeQ[a, x] &&  !Ma 
tchQ[Fx, (b_)*(Gx_) /; FreeQ[b, x]]
 

rule 2009
Int[u_, x_Symbol] :> Simp[IntSum[u, x], x] /; SumQ[u]
 

rule 7292
Int[u_, x_Symbol] :> With[{v = NormalizeIntegrand[u, x]}, Int[v, x] /; v =! 
= u]
 

rule 7293
Int[u_, x_Symbol] :> With[{v = ExpandIntegrand[u, x]}, Int[v, x] /; SumQ[v] 
]
 
3.13.23.4 Maple [A] (verified)

Time = 0.33 (sec) , antiderivative size = 14, normalized size of antiderivative = 0.74

method result size
norman \(26 \,{\mathrm e}^{{\mathrm e}^{\frac {{\mathrm e}^{x \,{\mathrm e}^{4}}}{2}+x}}\) \(14\)
risch \(26 \,{\mathrm e}^{{\mathrm e}^{\frac {{\mathrm e}^{x \,{\mathrm e}^{4}}}{2}+x}}\) \(14\)
parallelrisch \(26 \,{\mathrm e}^{{\mathrm e}^{\frac {{\mathrm e}^{x \,{\mathrm e}^{4}}}{2}+x}}\) \(14\)

input
int((13*exp(4)*exp(x*exp(4))+26)*exp(1/2*exp(x*exp(4))+x)*exp(exp(1/2*exp( 
x*exp(4))+x)),x,method=_RETURNVERBOSE)
 
output
26*exp(exp(1/2*exp(x*exp(4))+x))
 
3.13.23.5 Fricas [B] (verification not implemented)

Leaf count of result is larger than twice the leaf count of optimal. 60 vs. \(2 (13) = 26\).

Time = 0.25 (sec) , antiderivative size = 60, normalized size of antiderivative = 3.16 \[ \int e^{e^{\frac {1}{2} \left (e^{e^4 x}+2 x\right )}+\frac {1}{2} \left (e^{e^4 x}+2 x\right )} \left (26+13 e^{4+e^4 x}\right ) \, dx=26 \, e^{\left (\frac {1}{2} \, {\left (2 \, x e^{4} + e^{\left (x e^{4} + 4\right )} + 2 \, e^{\left (\frac {1}{2} \, {\left (2 \, x e^{4} + e^{\left (x e^{4} + 4\right )}\right )} e^{\left (-4\right )} + 4\right )}\right )} e^{\left (-4\right )} - \frac {1}{2} \, {\left (2 \, x e^{4} + e^{\left (x e^{4} + 4\right )}\right )} e^{\left (-4\right )}\right )} \]

input
integrate((13*exp(4)*exp(x*exp(4))+26)*exp(1/2*exp(x*exp(4))+x)*exp(exp(1/ 
2*exp(x*exp(4))+x)),x, algorithm=\
 
output
26*e^(1/2*(2*x*e^4 + e^(x*e^4 + 4) + 2*e^(1/2*(2*x*e^4 + e^(x*e^4 + 4))*e^ 
(-4) + 4))*e^(-4) - 1/2*(2*x*e^4 + e^(x*e^4 + 4))*e^(-4))
 
3.13.23.6 Sympy [A] (verification not implemented)

Time = 0.19 (sec) , antiderivative size = 14, normalized size of antiderivative = 0.74 \[ \int e^{e^{\frac {1}{2} \left (e^{e^4 x}+2 x\right )}+\frac {1}{2} \left (e^{e^4 x}+2 x\right )} \left (26+13 e^{4+e^4 x}\right ) \, dx=26 e^{e^{x + \frac {e^{x e^{4}}}{2}}} \]

input
integrate((13*exp(4)*exp(x*exp(4))+26)*exp(1/2*exp(x*exp(4))+x)*exp(exp(1/ 
2*exp(x*exp(4))+x)),x)
 
output
26*exp(exp(x + exp(x*exp(4))/2))
 
3.13.23.7 Maxima [A] (verification not implemented)

Time = 0.31 (sec) , antiderivative size = 13, normalized size of antiderivative = 0.68 \[ \int e^{e^{\frac {1}{2} \left (e^{e^4 x}+2 x\right )}+\frac {1}{2} \left (e^{e^4 x}+2 x\right )} \left (26+13 e^{4+e^4 x}\right ) \, dx=26 \, e^{\left (e^{\left (x + \frac {1}{2} \, e^{\left (x e^{4}\right )}\right )}\right )} \]

input
integrate((13*exp(4)*exp(x*exp(4))+26)*exp(1/2*exp(x*exp(4))+x)*exp(exp(1/ 
2*exp(x*exp(4))+x)),x, algorithm=\
 
output
26*e^(e^(x + 1/2*e^(x*e^4)))
 
3.13.23.8 Giac [F]

\[ \int e^{e^{\frac {1}{2} \left (e^{e^4 x}+2 x\right )}+\frac {1}{2} \left (e^{e^4 x}+2 x\right )} \left (26+13 e^{4+e^4 x}\right ) \, dx=\int { 13 \, {\left (e^{\left (x e^{4} + 4\right )} + 2\right )} e^{\left (x + \frac {1}{2} \, e^{\left (x e^{4}\right )} + e^{\left (x + \frac {1}{2} \, e^{\left (x e^{4}\right )}\right )}\right )} \,d x } \]

input
integrate((13*exp(4)*exp(x*exp(4))+26)*exp(1/2*exp(x*exp(4))+x)*exp(exp(1/ 
2*exp(x*exp(4))+x)),x, algorithm=\
 
output
integrate(13*(e^(x*e^4 + 4) + 2)*e^(x + 1/2*e^(x*e^4) + e^(x + 1/2*e^(x*e^ 
4))), x)
 
3.13.23.9 Mupad [B] (verification not implemented)

Time = 0.23 (sec) , antiderivative size = 14, normalized size of antiderivative = 0.74 \[ \int e^{e^{\frac {1}{2} \left (e^{e^4 x}+2 x\right )}+\frac {1}{2} \left (e^{e^4 x}+2 x\right )} \left (26+13 e^{4+e^4 x}\right ) \, dx=26\,{\mathrm {e}}^{{\mathrm {e}}^{\frac {{\mathrm {e}}^{x\,{\mathrm {e}}^4}}{2}}\,{\mathrm {e}}^x} \]

input
int(exp(x + exp(x*exp(4))/2)*exp(exp(x + exp(x*exp(4))/2))*(13*exp(4)*exp( 
x*exp(4)) + 26),x)
 
output
26*exp(exp(exp(x*exp(4))/2)*exp(x))