3.131 \(\int \coth ^{-1}(\tanh (a+b x)) \, dx\)

Optimal. Leaf size=16 \[ \frac {\coth ^{-1}(\tanh (a+b x))^2}{2 b} \]

[Out]

1/2*arccoth(tanh(b*x+a))^2/b

________________________________________________________________________________________

Rubi [A]  time = 0.00, antiderivative size = 16, normalized size of antiderivative = 1.00, number of steps used = 2, number of rules used = 2, integrand size = 7, \(\frac {\text {number of rules}}{\text {integrand size}}\) = 0.286, Rules used = {2157, 30} \[ \frac {\coth ^{-1}(\tanh (a+b x))^2}{2 b} \]

Antiderivative was successfully verified.

[In]

Int[ArcCoth[Tanh[a + b*x]],x]

[Out]

ArcCoth[Tanh[a + b*x]]^2/(2*b)

Rule 30

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

Rule 2157

Int[(u_)^(m_.), x_Symbol] :> With[{c = Simplify[D[u, x]]}, Dist[1/c, Subst[Int[x^m, x], x, u], x]] /; FreeQ[m,
 x] && PiecewiseLinearQ[u, x]

Rubi steps

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

________________________________________________________________________________________

Mathematica [A]  time = 0.01, size = 18, normalized size = 1.12 \[ x \coth ^{-1}(\tanh (a+b x))-\frac {b x^2}{2} \]

Antiderivative was successfully verified.

[In]

Integrate[ArcCoth[Tanh[a + b*x]],x]

[Out]

-1/2*(b*x^2) + x*ArcCoth[Tanh[a + b*x]]

________________________________________________________________________________________

fricas [A]  time = 0.43, size = 10, normalized size = 0.62 \[ \frac {1}{2} \, b x^{2} + a x \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(arccoth(tanh(b*x+a)),x, algorithm="fricas")

[Out]

1/2*b*x^2 + a*x

________________________________________________________________________________________

giac [F]  time = 0.00, size = 0, normalized size = 0.00 \[ \int \operatorname {arcoth}\left (\tanh \left (b x + a\right )\right )\,{d x} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(arccoth(tanh(b*x+a)),x, algorithm="giac")

[Out]

integrate(arccoth(tanh(b*x + a)), x)

________________________________________________________________________________________

maple [B]  time = 0.06, size = 32, normalized size = 2.00 \[ \frac {\arctanh \left (\tanh \left (b x +a \right )\right ) \mathrm {arccoth}\left (\tanh \left (b x +a \right )\right )-\frac {\arctanh \left (\tanh \left (b x +a \right )\right )^{2}}{2}}{b} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(arccoth(tanh(b*x+a)),x)

[Out]

1/b*(arctanh(tanh(b*x+a))*arccoth(tanh(b*x+a))-1/2*arctanh(tanh(b*x+a))^2)

________________________________________________________________________________________

maxima [A]  time = 0.38, size = 16, normalized size = 1.00 \[ -\frac {1}{2} \, b x^{2} + x \operatorname {arcoth}\left (\tanh \left (b x + a\right )\right ) \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(arccoth(tanh(b*x+a)),x, algorithm="maxima")

[Out]

-1/2*b*x^2 + x*arccoth(tanh(b*x + a))

________________________________________________________________________________________

mupad [B]  time = 1.12, size = 16, normalized size = 1.00 \[ x\,\mathrm {acoth}\left (\mathrm {tanh}\left (a+b\,x\right )\right )-\frac {b\,x^2}{2} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(acoth(tanh(a + b*x)),x)

[Out]

x*acoth(tanh(a + b*x)) - (b*x^2)/2

________________________________________________________________________________________

sympy [A]  time = 0.16, size = 19, normalized size = 1.19 \[ \begin {cases} \frac {\operatorname {acoth}^{2}{\left (\tanh {\left (a + b x \right )} \right )}}{2 b} & \text {for}\: b \neq 0 \\x \operatorname {acoth}{\left (\tanh {\relax (a )} \right )} & \text {otherwise} \end {cases} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(acoth(tanh(b*x+a)),x)

[Out]

Piecewise((acoth(tanh(a + b*x))**2/(2*b), Ne(b, 0)), (x*acoth(tanh(a)), True))

________________________________________________________________________________________