3.2.31 \(\int \frac {1}{(-1+x^2)^2} \, dx\) [131]

Optimal. Leaf size=21 \[ \frac {x}{2 \left (1-x^2\right )}+\frac {1}{2} \tanh ^{-1}(x) \]

[Out]

1/2*x/(-x^2+1)+1/2*arctanh(x)

________________________________________________________________________________________

Rubi [A]
time = 0.00, antiderivative size = 21, 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 = {205, 213} \begin {gather*} \frac {x}{2 \left (1-x^2\right )}+\frac {1}{2} \tanh ^{-1}(x) \end {gather*}

Antiderivative was successfully verified.

[In]

Int[(-1 + x^2)^(-2),x]

[Out]

x/(2*(1 - x^2)) + ArcTanh[x]/2

Rule 205

Int[((a_) + (b_.)*(x_)^(n_))^(p_), x_Symbol] :> Simp[(-x)*((a + b*x^n)^(p + 1)/(a*n*(p + 1))), x] + Dist[(n*(p
 + 1) + 1)/(a*n*(p + 1)), Int[(a + b*x^n)^(p + 1), x], x] /; FreeQ[{a, b}, x] && IGtQ[n, 0] && LtQ[p, -1] && (
IntegerQ[2*p] || (n == 2 && IntegerQ[4*p]) || (n == 2 && IntegerQ[3*p]) || Denominator[p + 1/n] < Denominator[
p])

Rule 213

Int[((a_) + (b_.)*(x_)^2)^(-1), x_Symbol] :> Simp[(-(Rt[-a, 2]*Rt[b, 2])^(-1))*ArcTanh[Rt[b, 2]*(x/Rt[-a, 2])]
, x] /; FreeQ[{a, b}, x] && NegQ[a/b] && (LtQ[a, 0] || GtQ[b, 0])

Rubi steps

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

________________________________________________________________________________________

Mathematica [A]
time = 0.00, size = 27, normalized size = 1.29 \begin {gather*} \frac {1}{4} \left (-\frac {2 x}{-1+x^2}-\log (1-x)+\log (1+x)\right ) \end {gather*}

Antiderivative was successfully verified.

[In]

Integrate[(-1 + x^2)^(-2),x]

[Out]

((-2*x)/(-1 + x^2) - Log[1 - x] + Log[1 + x])/4

________________________________________________________________________________________

Mathics [A]
time = 1.76, size = 30, normalized size = 1.43 \begin {gather*} \frac {-2 x+\left (-1+x^2\right ) \left (\text {Log}\left [1+x\right ]-\text {Log}\left [-1+x\right ]\right )}{-4+4 x^2} \end {gather*}

Antiderivative was successfully verified.

[In]

mathics('Integrate[1/(x^2 - 1)^2,x]')

[Out]

(-2 x + (-1 + x ^ 2) (Log[1 + x] - Log[-1 + x])) / (4 (-1 + x ^ 2))

________________________________________________________________________________________

Maple [A]
time = 0.07, size = 28, normalized size = 1.33

method result size
meijerg \(-\frac {i \left (\frac {2 i x}{-2 x^{2}+2}+i \arctanh \left (x \right )\right )}{2}\) \(23\)
norman \(-\frac {x}{2 \left (x^{2}-1\right )}-\frac {\ln \left (-1+x \right )}{4}+\frac {\ln \left (1+x \right )}{4}\) \(24\)
risch \(-\frac {x}{2 \left (x^{2}-1\right )}-\frac {\ln \left (-1+x \right )}{4}+\frac {\ln \left (1+x \right )}{4}\) \(24\)
default \(-\frac {1}{4 \left (-1+x \right )}-\frac {\ln \left (-1+x \right )}{4}-\frac {1}{4 \left (1+x \right )}+\frac {\ln \left (1+x \right )}{4}\) \(28\)

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(1/(x^2-1)^2,x,method=_RETURNVERBOSE)

[Out]

-1/4/(-1+x)-1/4*ln(-1+x)-1/4/(1+x)+1/4*ln(1+x)

________________________________________________________________________________________

Maxima [A]
time = 0.27, size = 23, normalized size = 1.10 \begin {gather*} -\frac {x}{2 \, {\left (x^{2} - 1\right )}} + \frac {1}{4} \, \log \left (x + 1\right ) - \frac {1}{4} \, \log \left (x - 1\right ) \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(1/(x^2-1)^2,x, algorithm="maxima")

[Out]

-1/2*x/(x^2 - 1) + 1/4*log(x + 1) - 1/4*log(x - 1)

________________________________________________________________________________________

Fricas [B] Leaf count of result is larger than twice the leaf count of optimal. 34 vs. \(2 (15) = 30\).
time = 0.32, size = 34, normalized size = 1.62 \begin {gather*} \frac {{\left (x^{2} - 1\right )} \log \left (x + 1\right ) - {\left (x^{2} - 1\right )} \log \left (x - 1\right ) - 2 \, x}{4 \, {\left (x^{2} - 1\right )}} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(1/(x^2-1)^2,x, algorithm="fricas")

[Out]

1/4*((x^2 - 1)*log(x + 1) - (x^2 - 1)*log(x - 1) - 2*x)/(x^2 - 1)

________________________________________________________________________________________

Sympy [A]
time = 0.05, size = 20, normalized size = 0.95 \begin {gather*} - \frac {x}{2 x^{2} - 2} - \frac {\log {\left (x - 1 \right )}}{4} + \frac {\log {\left (x + 1 \right )}}{4} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(1/(x**2-1)**2,x)

[Out]

-x/(2*x**2 - 2) - log(x - 1)/4 + log(x + 1)/4

________________________________________________________________________________________

Giac [A]
time = 0.00, size = 29, normalized size = 1.38 \begin {gather*} -\frac {\ln \left |x-1\right |}{4}+\frac {\ln \left |x+1\right |}{4}-\frac {x}{2 \left (x^{2}-1\right )} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(1/(x^2-1)^2,x)

[Out]

-1/2*x/(x^2 - 1) + 1/4*log(abs(x + 1)) - 1/4*log(abs(x - 1))

________________________________________________________________________________________

Mupad [B]
time = 0.09, size = 17, normalized size = 0.81 \begin {gather*} \frac {\mathrm {atanh}\left (x\right )}{2}-\frac {x}{2\,\left (x^2-1\right )} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(1/(x^2 - 1)^2,x)

[Out]

atanh(x)/2 - x/(2*(x^2 - 1))

________________________________________________________________________________________