3.648 \(\int (a \coth (x)+b \text {csch}(x)) \, dx\)

Optimal. Leaf size=12 \[ a \log (\sinh (x))-b \tanh ^{-1}(\cosh (x)) \]

[Out]

-b*arctanh(cosh(x))+a*ln(sinh(x))

________________________________________________________________________________________

Rubi [A]  time = 0.01, antiderivative size = 12, normalized size of antiderivative = 1.00, number of steps used = 3, number of rules used = 2, integrand size = 9, \(\frac {\text {number of rules}}{\text {integrand size}}\) = 0.222, Rules used = {3475, 3770} \[ a \log (\sinh (x))-b \tanh ^{-1}(\cosh (x)) \]

Antiderivative was successfully verified.

[In]

Int[a*Coth[x] + b*Csch[x],x]

[Out]

-(b*ArcTanh[Cosh[x]]) + a*Log[Sinh[x]]

Rule 3475

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

Rule 3770

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

Rubi steps

\begin {align*} \int (a \coth (x)+b \text {csch}(x)) \, dx &=a \int \coth (x) \, dx+b \int \text {csch}(x) \, dx\\ &=-b \tanh ^{-1}(\cosh (x))+a \log (\sinh (x))\\ \end {align*}

________________________________________________________________________________________

Mathematica [A]  time = 0.00, size = 15, normalized size = 1.25 \[ a \log (\sinh (x))+b \log \left (\tanh \left (\frac {x}{2}\right )\right ) \]

Antiderivative was successfully verified.

[In]

Integrate[a*Coth[x] + b*Csch[x],x]

[Out]

a*Log[Sinh[x]] + b*Log[Tanh[x/2]]

________________________________________________________________________________________

fricas [B]  time = 0.43, size = 29, normalized size = 2.42 \[ -a x + {\left (a - b\right )} \log \left (\cosh \relax (x) + \sinh \relax (x) + 1\right ) + {\left (a + b\right )} \log \left (\cosh \relax (x) + \sinh \relax (x) - 1\right ) \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

-a*x + (a - b)*log(cosh(x) + sinh(x) + 1) + (a + b)*log(cosh(x) + sinh(x) - 1)

________________________________________________________________________________________

giac [B]  time = 0.13, size = 33, normalized size = 2.75 \[ -a {\left (x - \log \left ({\left | e^{\left (2 \, x\right )} - 1 \right |}\right )\right )} - b {\left (\log \left (e^{x} + 1\right ) - \log \left ({\left | e^{x} - 1 \right |}\right )\right )} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

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

________________________________________________________________________________________

maple [A]  time = 0.02, size = 14, normalized size = 1.17 \[ a \ln \left (\sinh \relax (x )\right )+b \ln \left (\tanh \left (\frac {x}{2}\right )\right ) \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

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

________________________________________________________________________________________

maxima [A]  time = 0.39, size = 13, normalized size = 1.08 \[ a \log \left (\sinh \relax (x)\right ) + b \log \left (\tanh \left (\frac {1}{2} \, x\right )\right ) \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

a*log(sinh(x)) + b*log(tanh(1/2*x))

________________________________________________________________________________________

mupad [B]  time = 0.06, size = 35, normalized size = 2.92 \[ \ln \left (-2\,b-2\,b\,{\mathrm {e}}^x\right )\,\left (a-b\right )-a\,x+\ln \left (2\,b-2\,b\,{\mathrm {e}}^x\right )\,\left (a+b\right ) \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

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

________________________________________________________________________________________

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

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

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

________________________________________________________________________________________