3.967 \(\int e^{n \cosh (a+b x)} \sinh (a+b x) \, dx\)

Optimal. Leaf size=17 \[ \frac{e^{n \cosh (a+b x)}}{b n} \]

[Out]

E^(n*Cosh[a + b*x])/(b*n)

________________________________________________________________________________________

Rubi [A]  time = 0.015365, antiderivative size = 17, normalized size of antiderivative = 1., number of steps used = 2, number of rules used = 2, integrand size = 17, \(\frac{\text{number of rules}}{\text{integrand size}}\) = 0.118, Rules used = {4337, 2194} \[ \frac{e^{n \cosh (a+b x)}}{b n} \]

Antiderivative was successfully verified.

[In]

Int[E^(n*Cosh[a + b*x])*Sinh[a + b*x],x]

[Out]

E^(n*Cosh[a + b*x])/(b*n)

Rule 4337

Int[(u_)*Sinh[(c_.)*((a_.) + (b_.)*(x_))], x_Symbol] :> With[{d = FreeFactors[Cosh[c*(a + b*x)], x]}, Dist[d/(
b*c), Subst[Int[SubstFor[1, Cosh[c*(a + b*x)]/d, u, x], x], x, Cosh[c*(a + b*x)]/d], x] /; FunctionOfQ[Cosh[c*
(a + b*x)]/d, u, x, True]] /; FreeQ[{a, b, c}, x]

Rule 2194

Int[((F_)^((c_.)*((a_.) + (b_.)*(x_))))^(n_.), x_Symbol] :> Simp[(F^(c*(a + b*x)))^n/(b*c*n*Log[F]), x] /; Fre
eQ[{F, a, b, c, n}, x]

Rubi steps

\begin{align*} \int e^{n \cosh (a+b x)} \sinh (a+b x) \, dx &=\frac{\operatorname{Subst}\left (\int e^{n x} \, dx,x,\cosh (a+b x)\right )}{b}\\ &=\frac{e^{n \cosh (a+b x)}}{b n}\\ \end{align*}

Mathematica [A]  time = 0.0405984, size = 17, normalized size = 1. \[ \frac{e^{n \cosh (a+b x)}}{b n} \]

Antiderivative was successfully verified.

[In]

Integrate[E^(n*Cosh[a + b*x])*Sinh[a + b*x],x]

[Out]

E^(n*Cosh[a + b*x])/(b*n)

________________________________________________________________________________________

Maple [A]  time = 0.007, size = 17, normalized size = 1. \begin{align*}{\frac{{{\rm e}^{n\cosh \left ( bx+a \right ) }}}{bn}} \end{align*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(exp(n*cosh(b*x+a))*sinh(b*x+a),x)

[Out]

exp(n*cosh(b*x+a))/b/n

________________________________________________________________________________________

Maxima [A]  time = 1.02596, size = 22, normalized size = 1.29 \begin{align*} \frac{e^{\left (n \cosh \left (b x + a\right )\right )}}{b n} \end{align*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(exp(n*cosh(b*x+a))*sinh(b*x+a),x, algorithm="maxima")

[Out]

e^(n*cosh(b*x + a))/(b*n)

________________________________________________________________________________________

Fricas [A]  time = 2.34454, size = 74, normalized size = 4.35 \begin{align*} \frac{\cosh \left (n \cosh \left (b x + a\right )\right ) + \sinh \left (n \cosh \left (b x + a\right )\right )}{b n} \end{align*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(exp(n*cosh(b*x+a))*sinh(b*x+a),x, algorithm="fricas")

[Out]

(cosh(n*cosh(b*x + a)) + sinh(n*cosh(b*x + a)))/(b*n)

________________________________________________________________________________________

Sympy [A]  time = 0.590437, size = 36, normalized size = 2.12 \begin{align*} \begin{cases} x \sinh{\left (a \right )} & \text{for}\: b = 0 \wedge n = 0 \\x e^{n \cosh{\left (a \right )}} \sinh{\left (a \right )} & \text{for}\: b = 0 \\\frac{\cosh{\left (a + b x \right )}}{b} & \text{for}\: n = 0 \\\frac{e^{n \cosh{\left (a + b x \right )}}}{b n} & \text{otherwise} \end{cases} \end{align*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(exp(n*cosh(b*x+a))*sinh(b*x+a),x)

[Out]

Piecewise((x*sinh(a), Eq(b, 0) & Eq(n, 0)), (x*exp(n*cosh(a))*sinh(a), Eq(b, 0)), (cosh(a + b*x)/b, Eq(n, 0)),
 (exp(n*cosh(a + b*x))/(b*n), True))

________________________________________________________________________________________

Giac [A]  time = 1.15765, size = 36, normalized size = 2.12 \begin{align*} \frac{e^{\left (\frac{1}{2} \, n{\left (e^{\left (b x + a\right )} + e^{\left (-b x - a\right )}\right )}\right )}}{b n} \end{align*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(exp(n*cosh(b*x+a))*sinh(b*x+a),x, algorithm="giac")

[Out]

e^(1/2*n*(e^(b*x + a) + e^(-b*x - a)))/(b*n)