3.1051 \(\int F^{a+b x} (\cosh (c+d x)-\sinh (c+d x))^n \, dx\)

Optimal. Leaf size=32 \[ -\frac{F^{a+b x} \left (e^{-c-d x}\right )^n}{d n-b \log (F)} \]

[Out]

-(((E^(-c - d*x))^n*F^(a + b*x))/(d*n - b*Log[F]))

________________________________________________________________________________________

Rubi [A]  time = 0.0946486, antiderivative size = 32, normalized size of antiderivative = 1., number of steps used = 4, number of rules used = 4, integrand size = 25, \(\frac{\text{number of rules}}{\text{integrand size}}\) = 0.16, Rules used = {5648, 2281, 2287, 2194} \[ -\frac{F^{a+b x} \left (e^{-c-d x}\right )^n}{d n-b \log (F)} \]

Antiderivative was successfully verified.

[In]

Int[F^(a + b*x)*(Cosh[c + d*x] - Sinh[c + d*x])^n,x]

[Out]

-(((E^(-c - d*x))^n*F^(a + b*x))/(d*n - b*Log[F]))

Rule 5648

Int[(u_.)*(Cosh[v_]*(a_.) + (b_.)*Sinh[v_])^(n_.), x_Symbol] :> Int[u*(a*E^((a*v)/b))^n, x] /; FreeQ[{a, b, n}
, x] && EqQ[a^2 - b^2, 0]

Rule 2281

Int[(u_.)*((a_.)*(F_)^(v_))^(n_), x_Symbol] :> Dist[(a*F^v)^n/F^(n*v), Int[u*F^(n*v), x], x] /; FreeQ[{F, a, n
}, x] &&  !IntegerQ[n]

Rule 2287

Int[(u_.)*(F_)^(v_)*(G_)^(w_), x_Symbol] :> With[{z = v*Log[F] + w*Log[G]}, Int[u*NormalizeIntegrand[E^z, x],
x] /; BinomialQ[z, x] || (PolynomialQ[z, x] && LeQ[Exponent[z, x], 2])] /; FreeQ[{F, G}, 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 F^{a+b x} (\cosh (c+d x)-\sinh (c+d x))^n \, dx &=\int \left (e^{-c-d x}\right )^n F^{a+b x} \, dx\\ &=\left (e^{-n (-c-d x)} \left (e^{-c-d x}\right )^n\right ) \int e^{n (-c-d x)} F^{a+b x} \, dx\\ &=\left (e^{-n (-c-d x)} \left (e^{-c-d x}\right )^n\right ) \int e^{-c n+a \log (F)-x (d n-b \log (F))} \, dx\\ &=-\frac{\left (e^{-c-d x}\right )^n F^{a+b x}}{d n-b \log (F)}\\ \end{align*}

Mathematica [A]  time = 0.0720742, size = 37, normalized size = 1.16 \[ -\frac{F^{a+b x} (\cosh (c+d x)-\sinh (c+d x))^n}{d n-b \log (F)} \]

Antiderivative was successfully verified.

[In]

Integrate[F^(a + b*x)*(Cosh[c + d*x] - Sinh[c + d*x])^n,x]

[Out]

-((F^(a + b*x)*(Cosh[c + d*x] - Sinh[c + d*x])^n)/(d*n - b*Log[F]))

________________________________________________________________________________________

Maple [A]  time = 0.006, size = 37, normalized size = 1.2 \begin{align*}{\frac{{F}^{bx+a} \left ( \cosh \left ( dx+c \right ) -\sinh \left ( dx+c \right ) \right ) ^{n}}{b\ln \left ( F \right ) -dn}} \end{align*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(F^(b*x+a)*(cosh(d*x+c)-sinh(d*x+c))^n,x)

[Out]

1/(b*ln(F)-d*n)*F^(b*x+a)*(cosh(d*x+c)-sinh(d*x+c))^n

________________________________________________________________________________________

Maxima [A]  time = 1.15712, size = 49, normalized size = 1.53 \begin{align*} -\frac{F^{a} e^{\left (-d n x + b x \log \left (F\right )\right )}}{d n e^{\left (c n\right )} - b e^{\left (c n\right )} \log \left (F\right )} \end{align*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

-F^a*e^(-d*n*x + b*x*log(F))/(d*n*e^(c*n) - b*e^(c*n)*log(F))

________________________________________________________________________________________

Fricas [B]  time = 2.11387, size = 201, normalized size = 6.28 \begin{align*} -\frac{{\left (\cosh \left (d n x + c n\right ) - \sinh \left (d n x + c n\right )\right )} \cosh \left ({\left (b x + a\right )} \log \left (F\right )\right ) +{\left (\cosh \left (d n x + c n\right ) - \sinh \left (d n x + c n\right )\right )} \sinh \left ({\left (b x + a\right )} \log \left (F\right )\right )}{d n - b \log \left (F\right )} \end{align*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

-((cosh(d*n*x + c*n) - sinh(d*n*x + c*n))*cosh((b*x + a)*log(F)) + (cosh(d*n*x + c*n) - sinh(d*n*x + c*n))*sin
h((b*x + a)*log(F)))/(d*n - b*log(F))

________________________________________________________________________________________

Sympy [A]  time = 8.52737, size = 92, normalized size = 2.88 \begin{align*} \begin{cases} \frac{F^{a} F^{b x} \left (- \sinh{\left (c + d x \right )} + \cosh{\left (c + d x \right )}\right )^{n}}{b \log{\left (F \right )} - d n} & \text{for}\: b \neq \frac{d n}{\log{\left (F \right )}} \\F^{a} x \left (- \sinh{\left (c + d x \right )} + \cosh{\left (c + d x \right )}\right )^{n} e^{d n x} - \frac{F^{a} \left (- \sinh{\left (c + d x \right )} + \cosh{\left (c + d x \right )}\right )^{n} e^{d n x}}{d n} & \text{otherwise} \end{cases} \end{align*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

Piecewise((F**a*F**(b*x)*(-sinh(c + d*x) + cosh(c + d*x))**n/(b*log(F) - d*n), Ne(b, d*n/log(F))), (F**a*x*(-s
inh(c + d*x) + cosh(c + d*x))**n*exp(d*n*x) - F**a*(-sinh(c + d*x) + cosh(c + d*x))**n*exp(d*n*x)/(d*n), True)
)

________________________________________________________________________________________

Giac [C]  time = 1.16676, size = 381, normalized size = 11.91 \begin{align*} -2 \,{\left (\frac{2 \,{\left (d n - b \log \left ({\left | F \right |}\right )\right )} \cos \left (-\frac{1}{2} \, \pi b x \mathrm{sgn}\left (F\right ) + \frac{1}{2} \, \pi b x - \frac{1}{2} \, \pi a \mathrm{sgn}\left (F\right ) + \frac{1}{2} \, \pi a\right )}{{\left (\pi b \mathrm{sgn}\left (F\right ) - \pi b\right )}^{2} + 4 \,{\left (d n - b \log \left ({\left | F \right |}\right )\right )}^{2}} + \frac{{\left (\pi b \mathrm{sgn}\left (F\right ) - \pi b\right )} \sin \left (-\frac{1}{2} \, \pi b x \mathrm{sgn}\left (F\right ) + \frac{1}{2} \, \pi b x - \frac{1}{2} \, \pi a \mathrm{sgn}\left (F\right ) + \frac{1}{2} \, \pi a\right )}{{\left (\pi b \mathrm{sgn}\left (F\right ) - \pi b\right )}^{2} + 4 \,{\left (d n - b \log \left ({\left | F \right |}\right )\right )}^{2}}\right )} e^{\left (-c n -{\left (d n - b \log \left ({\left | F \right |}\right )\right )} x + a \log \left ({\left | F \right |}\right )\right )} - \frac{1}{2} i \,{\left (-\frac{2 i \, e^{\left (\frac{1}{2} i \, \pi b x \mathrm{sgn}\left (F\right ) - \frac{1}{2} i \, \pi b x + \frac{1}{2} i \, \pi a \mathrm{sgn}\left (F\right ) - \frac{1}{2} i \, \pi a\right )}}{i \, \pi b \mathrm{sgn}\left (F\right ) - i \, \pi b - 2 \, d n + 2 \, b \log \left ({\left | F \right |}\right )} + \frac{2 i \, e^{\left (-\frac{1}{2} i \, \pi b x \mathrm{sgn}\left (F\right ) + \frac{1}{2} i \, \pi b x - \frac{1}{2} i \, \pi a \mathrm{sgn}\left (F\right ) + \frac{1}{2} i \, \pi a\right )}}{-i \, \pi b \mathrm{sgn}\left (F\right ) + i \, \pi b - 2 \, d n + 2 \, b \log \left ({\left | F \right |}\right )}\right )} e^{\left (-c n -{\left (d n - b \log \left ({\left | F \right |}\right )\right )} x + a \log \left ({\left | F \right |}\right )\right )} \end{align*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

-2*(2*(d*n - b*log(abs(F)))*cos(-1/2*pi*b*x*sgn(F) + 1/2*pi*b*x - 1/2*pi*a*sgn(F) + 1/2*pi*a)/((pi*b*sgn(F) -
pi*b)^2 + 4*(d*n - b*log(abs(F)))^2) + (pi*b*sgn(F) - pi*b)*sin(-1/2*pi*b*x*sgn(F) + 1/2*pi*b*x - 1/2*pi*a*sgn
(F) + 1/2*pi*a)/((pi*b*sgn(F) - pi*b)^2 + 4*(d*n - b*log(abs(F)))^2))*e^(-c*n - (d*n - b*log(abs(F)))*x + a*lo
g(abs(F))) - 1/2*I*(-2*I*e^(1/2*I*pi*b*x*sgn(F) - 1/2*I*pi*b*x + 1/2*I*pi*a*sgn(F) - 1/2*I*pi*a)/(I*pi*b*sgn(F
) - I*pi*b - 2*d*n + 2*b*log(abs(F))) + 2*I*e^(-1/2*I*pi*b*x*sgn(F) + 1/2*I*pi*b*x - 1/2*I*pi*a*sgn(F) + 1/2*I
*pi*a)/(-I*pi*b*sgn(F) + I*pi*b - 2*d*n + 2*b*log(abs(F))))*e^(-c*n - (d*n - b*log(abs(F)))*x + a*log(abs(F)))