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

Optimal. Leaf size=43 \[ \frac{\cosh (a+x (b-d)-c)}{2 (b-d)}+\frac{\cosh (a+x (b+d)+c)}{2 (b+d)} \]

[Out]

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

________________________________________________________________________________________

Rubi [A]  time = 0.0451606, antiderivative size = 43, normalized size of antiderivative = 1., number of steps used = 4, number of rules used = 2, integrand size = 13, \(\frac{\text{number of rules}}{\text{integrand size}}\) = 0.154, Rules used = {5618, 2638} \[ \frac{\cosh (a+x (b-d)-c)}{2 (b-d)}+\frac{\cosh (a+x (b+d)+c)}{2 (b+d)} \]

Antiderivative was successfully verified.

[In]

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

[Out]

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

Rule 5618

Int[Cosh[w_]^(q_.)*Sinh[v_]^(p_.), x_Symbol] :> Int[ExpandTrigReduce[Sinh[v]^p*Cosh[w]^q, x], x] /; IGtQ[p, 0]
 && IGtQ[q, 0] && ((PolynomialQ[v, x] && PolynomialQ[w, x]) || (BinomialQ[{v, w}, x] && IndependentQ[Cancel[v/
w], x]))

Rule 2638

Int[sin[(c_.) + (d_.)*(x_)], x_Symbol] :> -Simp[Cos[c + d*x]/d, x] /; FreeQ[{c, d}, x]

Rubi steps

\begin{align*} \int \cosh (c+d x) \sinh (a+b x) \, dx &=\int \left (\frac{1}{2} \sinh (a-c+(b-d) x)+\frac{1}{2} \sinh (a+c+(b+d) x)\right ) \, dx\\ &=\frac{1}{2} \int \sinh (a-c+(b-d) x) \, dx+\frac{1}{2} \int \sinh (a+c+(b+d) x) \, dx\\ &=\frac{\cosh (a-c+(b-d) x)}{2 (b-d)}+\frac{\cosh (a+c+(b+d) x)}{2 (b+d)}\\ \end{align*}

Mathematica [A]  time = 0.19596, size = 43, normalized size = 1. \[ \frac{\cosh (a+x (b-d)-c)}{2 (b-d)}+\frac{\cosh (a+x (b+d)+c)}{2 (b+d)} \]

Antiderivative was successfully verified.

[In]

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

[Out]

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

________________________________________________________________________________________

Maple [A]  time = 0.01, size = 40, normalized size = 0.9 \begin{align*}{\frac{\cosh \left ( a-c+ \left ( b-d \right ) x \right ) }{2\,b-2\,d}}+{\frac{\cosh \left ( a+c+ \left ( b+d \right ) x \right ) }{2\,b+2\,d}} \end{align*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

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

________________________________________________________________________________________

Maxima [F(-2)]  time = 0., size = 0, normalized size = 0. \begin{align*} \text{Exception raised: ValueError} \end{align*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

Exception raised: ValueError

________________________________________________________________________________________

Fricas [A]  time = 1.66595, size = 169, normalized size = 3.93 \begin{align*} \frac{b \cosh \left (b x + a\right ) \cosh \left (d x + c\right ) - d \sinh \left (b x + a\right ) \sinh \left (d x + c\right )}{{\left (b^{2} - d^{2}\right )} \cosh \left (b x + a\right )^{2} -{\left (b^{2} - d^{2}\right )} \sinh \left (b x + a\right )^{2}} \end{align*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

(b*cosh(b*x + a)*cosh(d*x + c) - d*sinh(b*x + a)*sinh(d*x + c))/((b^2 - d^2)*cosh(b*x + a)^2 - (b^2 - d^2)*sin
h(b*x + a)^2)

________________________________________________________________________________________

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

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

Piecewise((x*sinh(a)*cosh(c), Eq(b, 0) & Eq(d, 0)), (x*sinh(a - d*x)*cosh(c + d*x)/2 + x*sinh(c + d*x)*cosh(a
- d*x)/2 - cosh(a - d*x)*cosh(c + d*x)/(2*d), Eq(b, -d)), (x*sinh(a + d*x)*cosh(c + d*x)/2 - x*sinh(c + d*x)*c
osh(a + d*x)/2 + cosh(a + d*x)*cosh(c + d*x)/(2*d), Eq(b, d)), (b*cosh(a + b*x)*cosh(c + d*x)/(b**2 - d**2) -
d*sinh(a + b*x)*sinh(c + d*x)/(b**2 - d**2), True))

________________________________________________________________________________________

Giac [B]  time = 1.20533, size = 115, normalized size = 2.67 \begin{align*} \frac{e^{\left (b x + d x + a + c\right )}}{4 \,{\left (b + d\right )}} + \frac{e^{\left (b x - d x + a - c\right )}}{4 \,{\left (b - d\right )}} + \frac{e^{\left (-b x + d x - a + c\right )}}{4 \,{\left (b - d\right )}} + \frac{e^{\left (-b x - d x - a - c\right )}}{4 \,{\left (b + d\right )}} \end{align*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

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