91.4 Problem number 105

\[ \int \frac {x^2}{\tanh ^{-1}(\tanh (a+b x))^3} \, dx \]

Optimal antiderivative \[ -\frac {x^{2}}{2 b \arctanh \left (\tanh \left (b x +a \right )\right )^{2}}-\frac {x}{b^{2} \arctanh \left (\tanh \left (b x +a \right )\right )}+\frac {\ln \left (\arctanh \left (\tanh \left (b x +a \right )\right )\right )}{b^{3}} \]

command

integrate(x**2/atanh(tanh(b*x+a))**3,x)

Sympy 1.10.1 under Python 3.10.4 output

\[ \begin {cases} - \frac {x^{2}}{2 b \operatorname {atanh}^{2}{\left (\tanh {\left (a + b x \right )} \right )}} - \frac {x}{b^{2} \operatorname {atanh}{\left (\tanh {\left (a + b x \right )} \right )}} + \frac {\log {\left (\operatorname {atanh}{\left (\tanh {\left (a + b x \right )} \right )} \right )}}{b^{3}} & \text {for}\: b \neq 0 \\\frac {x^{3}}{3 \operatorname {atanh}^{3}{\left (\tanh {\left (a \right )} \right )}} & \text {otherwise} \end {cases} \]

Sympy 1.8 under Python 3.8.8 output

\[ \text {Exception raised: TypeError} \]________________________________________________________________________________________