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]

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

________________________________________________________________________________________

Rubi [A]  time = 0.02, antiderivative size = 17, normalized size of antiderivative = 1.00, 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 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]

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]

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.04, size = 17, normalized size = 1.00 \[ \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)

________________________________________________________________________________________

fricas [A]  time = 0.50, size = 26, normalized size = 1.53 \[ \frac {\cosh \left (n \cosh \left (b x + a\right )\right ) + \sinh \left (n \cosh \left (b x + a\right )\right )}{b n} \]

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)

________________________________________________________________________________________

giac [A]  time = 0.14, size = 30, normalized size = 1.76 \[ \frac {e^{\left (\frac {1}{2} \, n e^{\left (b x + a\right )} + \frac {1}{2} \, n e^{\left (-b x - a\right )}\right )}}{b n} \]

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) + 1/2*n*e^(-b*x - a))/(b*n)

________________________________________________________________________________________

maple [A]  time = 0.02, size = 17, normalized size = 1.00 \[ \frac {{\mathrm e}^{n \cosh \left (b x +a \right )}}{b n} \]

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 = 0.31, size = 16, normalized size = 0.94 \[ \frac {e^{\left (n \cosh \left (b x + a\right )\right )}}{b n} \]

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)

________________________________________________________________________________________

mupad [B]  time = 0.10, size = 16, normalized size = 0.94 \[ \frac {{\mathrm {e}}^{n\,\mathrm {cosh}\left (a+b\,x\right )}}{b\,n} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

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

________________________________________________________________________________________

sympy [A]  time = 0.43, size = 36, normalized size = 2.12 \[ \begin {cases} x \sinh {\relax (a )} & \text {for}\: b = 0 \wedge n = 0 \\x e^{n \cosh {\relax (a )}} \sinh {\relax (a )} & \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} \]

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

________________________________________________________________________________________