3.305 \(\int e^{a+b x} \text {csch}(a+b x) \, dx\)

Optimal. Leaf size=19 \[ \frac {\log \left (1-e^{2 a+2 b x}\right )}{b} \]

[Out]

ln(1-exp(2*b*x+2*a))/b

________________________________________________________________________________________

Rubi [A]  time = 0.02, antiderivative size = 19, normalized size of antiderivative = 1.00, number of steps used = 3, number of rules used = 3, integrand size = 14, \(\frac {\text {number of rules}}{\text {integrand size}}\) = 0.214, Rules used = {2282, 12, 260} \[ \frac {\log \left (1-e^{2 a+2 b x}\right )}{b} \]

Antiderivative was successfully verified.

[In]

Int[E^(a + b*x)*Csch[a + b*x],x]

[Out]

Log[1 - E^(2*a + 2*b*x)]/b

Rule 12

Int[(a_)*(u_), x_Symbol] :> Dist[a, Int[u, x], x] /; FreeQ[a, x] &&  !MatchQ[u, (b_)*(v_) /; FreeQ[b, x]]

Rule 260

Int[(x_)^(m_.)/((a_) + (b_.)*(x_)^(n_)), x_Symbol] :> Simp[Log[RemoveContent[a + b*x^n, x]]/(b*n), x] /; FreeQ
[{a, b, m, n}, x] && EqQ[m, n - 1]

Rule 2282

Int[u_, x_Symbol] :> With[{v = FunctionOfExponential[u, x]}, Dist[v/D[v, x], Subst[Int[FunctionOfExponentialFu
nction[u, x]/x, x], x, v], x]] /; FunctionOfExponentialQ[u, x] &&  !MatchQ[u, (w_)*((a_.)*(v_)^(n_))^(m_) /; F
reeQ[{a, m, n}, x] && IntegerQ[m*n]] &&  !MatchQ[u, E^((c_.)*((a_.) + (b_.)*x))*(F_)[v_] /; FreeQ[{a, b, c}, x
] && InverseFunctionQ[F[x]]]

Rubi steps

\begin {align*} \int e^{a+b x} \text {csch}(a+b x) \, dx &=\frac {\operatorname {Subst}\left (\int \frac {2 x}{-1+x^2} \, dx,x,e^{a+b x}\right )}{b}\\ &=\frac {2 \operatorname {Subst}\left (\int \frac {x}{-1+x^2} \, dx,x,e^{a+b x}\right )}{b}\\ &=\frac {\log \left (1-e^{2 a+2 b x}\right )}{b}\\ \end {align*}

________________________________________________________________________________________

Mathematica [A]  time = 0.01, size = 19, normalized size = 1.00 \[ \frac {\log \left (1-e^{2 a+2 b x}\right )}{b} \]

Antiderivative was successfully verified.

[In]

Integrate[E^(a + b*x)*Csch[a + b*x],x]

[Out]

Log[1 - E^(2*a + 2*b*x)]/b

________________________________________________________________________________________

fricas [A]  time = 2.03, size = 30, normalized size = 1.58 \[ \frac {\log \left (\frac {2 \, \sinh \left (b x + a\right )}{\cosh \left (b x + a\right ) - \sinh \left (b x + a\right )}\right )}{b} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(exp(b*x+a)*csch(b*x+a),x, algorithm="fricas")

[Out]

log(2*sinh(b*x + a)/(cosh(b*x + a) - sinh(b*x + a)))/b

________________________________________________________________________________________

giac [A]  time = 0.12, size = 24, normalized size = 1.26 \[ \frac {\log \left (e^{\left (b x + a\right )} + 1\right ) + \log \left ({\left | e^{\left (b x + a\right )} - 1 \right |}\right )}{b} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(exp(b*x+a)*csch(b*x+a),x, algorithm="giac")

[Out]

(log(e^(b*x + a) + 1) + log(abs(e^(b*x + a) - 1)))/b

________________________________________________________________________________________

maple [A]  time = 0.02, size = 19, normalized size = 1.00 \[ x +\frac {\ln \left (\sinh \left (b x +a \right )\right )}{b}+\frac {a}{b} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(exp(b*x+a)*csch(b*x+a),x)

[Out]

x+1/b*ln(sinh(b*x+a))+a/b

________________________________________________________________________________________

maxima [A]  time = 0.30, size = 27, normalized size = 1.42 \[ \frac {\log \left (e^{\left (b x + a\right )} + 1\right )}{b} + \frac {\log \left (e^{\left (b x + a\right )} - 1\right )}{b} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(exp(b*x+a)*csch(b*x+a),x, algorithm="maxima")

[Out]

log(e^(b*x + a) + 1)/b + log(e^(b*x + a) - 1)/b

________________________________________________________________________________________

mupad [B]  time = 0.07, size = 16, normalized size = 0.84 \[ \frac {\ln \left ({\mathrm {e}}^{2\,a+2\,b\,x}-1\right )}{b} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(exp(a + b*x)/sinh(a + b*x),x)

[Out]

log(exp(2*a + 2*b*x) - 1)/b

________________________________________________________________________________________

sympy [F]  time = 0.00, size = 0, normalized size = 0.00 \[ e^{a} \int e^{b x} \operatorname {csch}{\left (a + b x \right )}\, dx \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(exp(b*x+a)*csch(b*x+a),x)

[Out]

exp(a)*Integral(exp(b*x)*csch(a + b*x), x)

________________________________________________________________________________________