3.857 \(\int (a+b \cosh (c+d x) \sinh (c+d x)) \, dx\)

Optimal. Leaf size=20 \[ a x+\frac{b \sinh ^2(c+d x)}{2 d} \]

[Out]

a*x + (b*Sinh[c + d*x]^2)/(2*d)

________________________________________________________________________________________

Rubi [A]  time = 0.0187967, antiderivative size = 20, normalized size of antiderivative = 1., number of steps used = 3, number of rules used = 2, integrand size = 16, \(\frac{\text{number of rules}}{\text{integrand size}}\) = 0.125, Rules used = {2564, 30} \[ a x+\frac{b \sinh ^2(c+d x)}{2 d} \]

Antiderivative was successfully verified.

[In]

Int[a + b*Cosh[c + d*x]*Sinh[c + d*x],x]

[Out]

a*x + (b*Sinh[c + d*x]^2)/(2*d)

Rule 2564

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

Rule 30

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

Rubi steps

\begin{align*} \int (a+b \cosh (c+d x) \sinh (c+d x)) \, dx &=a x+b \int \cosh (c+d x) \sinh (c+d x) \, dx\\ &=a x-\frac{b \operatorname{Subst}(\int x \, dx,x,i \sinh (c+d x))}{d}\\ &=a x+\frac{b \sinh ^2(c+d x)}{2 d}\\ \end{align*}

Mathematica [A]  time = 0.0074473, size = 38, normalized size = 1.9 \[ a x+\frac{b \sinh (2 c) \sinh (2 d x)}{4 d}+\frac{b \cosh (2 c) \cosh (2 d x)}{4 d} \]

Antiderivative was successfully verified.

[In]

Integrate[a + b*Cosh[c + d*x]*Sinh[c + d*x],x]

[Out]

a*x + (b*Cosh[2*c]*Cosh[2*d*x])/(4*d) + (b*Sinh[2*c]*Sinh[2*d*x])/(4*d)

________________________________________________________________________________________

Maple [A]  time = 0.001, size = 19, normalized size = 1. \begin{align*} ax+{\frac{b \left ( \cosh \left ( dx+c \right ) \right ) ^{2}}{2\,d}} \end{align*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(a+b*cosh(d*x+c)*sinh(d*x+c),x)

[Out]

a*x+1/2*b*cosh(d*x+c)^2/d

________________________________________________________________________________________

Maxima [A]  time = 1.23071, size = 24, normalized size = 1.2 \begin{align*} a x + \frac{b \cosh \left (d x + c\right )^{2}}{2 \, d} \end{align*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(a+b*cosh(d*x+c)*sinh(d*x+c),x, algorithm="maxima")

[Out]

a*x + 1/2*b*cosh(d*x + c)^2/d

________________________________________________________________________________________

Fricas [A]  time = 2.48052, size = 77, normalized size = 3.85 \begin{align*} \frac{4 \, a d x + b \cosh \left (d x + c\right )^{2} + b \sinh \left (d x + c\right )^{2}}{4 \, d} \end{align*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(a+b*cosh(d*x+c)*sinh(d*x+c),x, algorithm="fricas")

[Out]

1/4*(4*a*d*x + b*cosh(d*x + c)^2 + b*sinh(d*x + c)^2)/d

________________________________________________________________________________________

Sympy [A]  time = 0.288004, size = 24, normalized size = 1.2 \begin{align*} a x + b \left (\begin{cases} \frac{\sinh ^{2}{\left (c + d x \right )}}{2 d} & \text{for}\: d \neq 0 \\x \sinh{\left (c \right )} \cosh{\left (c \right )} & \text{otherwise} \end{cases}\right ) \end{align*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(a+b*cosh(d*x+c)*sinh(d*x+c),x)

[Out]

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

________________________________________________________________________________________

Giac [A]  time = 1.13355, size = 39, normalized size = 1.95 \begin{align*} a x + \frac{b{\left (e^{\left (2 \, d x + 2 \, c\right )} + e^{\left (-2 \, d x - 2 \, c\right )}\right )}}{8 \, d} \end{align*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(a+b*cosh(d*x+c)*sinh(d*x+c),x, algorithm="giac")

[Out]

a*x + 1/8*b*(e^(2*d*x + 2*c) + e^(-2*d*x - 2*c))/d