3.263 \(\int \cosh ^2(a+b x) \sinh (a+b x) \, dx\)

Optimal. Leaf size=15 \[ \frac {\cosh ^3(a+b x)}{3 b} \]

[Out]

1/3*cosh(b*x+a)^3/b

________________________________________________________________________________________

Rubi [A]  time = 0.02, antiderivative size = 15, normalized size of antiderivative = 1.00, number of steps used = 2, number of rules used = 2, integrand size = 15, \(\frac {\text {number of rules}}{\text {integrand size}}\) = 0.133, Rules used = {2565, 30} \[ \frac {\cosh ^3(a+b x)}{3 b} \]

Antiderivative was successfully verified.

[In]

Int[Cosh[a + b*x]^2*Sinh[a + b*x],x]

[Out]

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

Rule 30

Int[(x_)^(m_.), x_Symbol] :> Simp[x^(m + 1)/(m + 1), x] /; FreeQ[m, x] && NeQ[m, -1]

Rule 2565

Int[(cos[(e_.) + (f_.)*(x_)]*(a_.))^(m_.)*sin[(e_.) + (f_.)*(x_)]^(n_.), x_Symbol] :> -Dist[(a*f)^(-1), Subst[
Int[x^m*(1 - x^2/a^2)^((n - 1)/2), x], x, a*Cos[e + f*x]], x] /; FreeQ[{a, e, f, m}, x] && IntegerQ[(n - 1)/2]
 &&  !(IntegerQ[(m - 1)/2] && GtQ[m, 0] && LeQ[m, n])

Rubi steps

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

________________________________________________________________________________________

Mathematica [A]  time = 0.00, size = 15, normalized size = 1.00 \[ \frac {\cosh ^3(a+b x)}{3 b} \]

Antiderivative was successfully verified.

[In]

Integrate[Cosh[a + b*x]^2*Sinh[a + b*x],x]

[Out]

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

________________________________________________________________________________________

fricas [B]  time = 0.93, size = 38, normalized size = 2.53 \[ \frac {\cosh \left (b x + a\right )^{3} + 3 \, \cosh \left (b x + a\right ) \sinh \left (b x + a\right )^{2} + 3 \, \cosh \left (b x + a\right )}{12 \, b} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(cosh(b*x+a)^2*sinh(b*x+a),x, algorithm="fricas")

[Out]

1/12*(cosh(b*x + a)^3 + 3*cosh(b*x + a)*sinh(b*x + a)^2 + 3*cosh(b*x + a))/b

________________________________________________________________________________________

giac [B]  time = 0.14, size = 54, normalized size = 3.60 \[ \frac {e^{\left (3 \, b x + 3 \, a\right )}}{24 \, b} + \frac {e^{\left (b x + a\right )}}{8 \, b} + \frac {e^{\left (-b x - a\right )}}{8 \, b} + \frac {e^{\left (-3 \, b x - 3 \, a\right )}}{24 \, b} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(cosh(b*x+a)^2*sinh(b*x+a),x, algorithm="giac")

[Out]

1/24*e^(3*b*x + 3*a)/b + 1/8*e^(b*x + a)/b + 1/8*e^(-b*x - a)/b + 1/24*e^(-3*b*x - 3*a)/b

________________________________________________________________________________________

maple [A]  time = 0.02, size = 14, normalized size = 0.93 \[ \frac {\cosh ^{3}\left (b x +a \right )}{3 b} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(cosh(b*x+a)^2*sinh(b*x+a),x)

[Out]

1/3*cosh(b*x+a)^3/b

________________________________________________________________________________________

maxima [A]  time = 0.30, size = 13, normalized size = 0.87 \[ \frac {\cosh \left (b x + a\right )^{3}}{3 \, b} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(cosh(b*x+a)^2*sinh(b*x+a),x, algorithm="maxima")

[Out]

1/3*cosh(b*x + a)^3/b

________________________________________________________________________________________

mupad [B]  time = 1.46, size = 13, normalized size = 0.87 \[ \frac {{\mathrm {cosh}\left (a+b\,x\right )}^3}{3\,b} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(cosh(a + b*x)^2*sinh(a + b*x),x)

[Out]

cosh(a + b*x)^3/(3*b)

________________________________________________________________________________________

sympy [A]  time = 0.38, size = 20, normalized size = 1.33 \[ \begin {cases} \frac {\cosh ^{3}{\left (a + b x \right )}}{3 b} & \text {for}\: b \neq 0 \\x \sinh {\relax (a )} \cosh ^{2}{\relax (a )} & \text {otherwise} \end {cases} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(cosh(b*x+a)**2*sinh(b*x+a),x)

[Out]

Piecewise((cosh(a + b*x)**3/(3*b), Ne(b, 0)), (x*sinh(a)*cosh(a)**2, True))

________________________________________________________________________________________