3.226 \(\int \frac {1}{-\sqrt [3]{x}+x} \, dx\)

Optimal. Leaf size=14 \[ \frac {3}{2} \log \left (1-x^{2/3}\right ) \]

[Out]

3/2*ln(1-x^(2/3))

________________________________________________________________________________________

Rubi [A]  time = 0.00, antiderivative size = 14, normalized size of antiderivative = 1.00, number of steps used = 2, number of rules used = 2, integrand size = 11, \(\frac {\text {number of rules}}{\text {integrand size}}\) = 0.182, Rules used = {1593, 260} \[ \frac {3}{2} \log \left (1-x^{2/3}\right ) \]

Antiderivative was successfully verified.

[In]

Int[(-x^(1/3) + x)^(-1),x]

[Out]

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

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 1593

Int[(u_.)*((a_.)*(x_)^(p_.) + (b_.)*(x_)^(q_.))^(n_.), x_Symbol] :> Int[u*x^(n*p)*(a + b*x^(q - p))^n, x] /; F
reeQ[{a, b, p, q}, x] && IntegerQ[n] && PosQ[q - p]

Rubi steps

\begin {align*} \int \frac {1}{-\sqrt [3]{x}+x} \, dx &=\int \frac {1}{\left (-1+x^{2/3}\right ) \sqrt [3]{x}} \, dx\\ &=\frac {3}{2} \log \left (1-x^{2/3}\right )\\ \end {align*}

________________________________________________________________________________________

Mathematica [A]  time = 0.00, size = 14, normalized size = 1.00 \[ \frac {3}{2} \log \left (1-x^{2/3}\right ) \]

Antiderivative was successfully verified.

[In]

Integrate[(-x^(1/3) + x)^(-1),x]

[Out]

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

________________________________________________________________________________________

fricas [A]  time = 0.41, size = 8, normalized size = 0.57 \[ \frac {3}{2} \, \log \left (x^{\frac {2}{3}} - 1\right ) \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

3/2*log(x^(2/3) - 1)

________________________________________________________________________________________

giac [A]  time = 1.24, size = 18, normalized size = 1.29 \[ \frac {3}{2} \, \log \left (x^{\frac {1}{3}} + 1\right ) + \frac {3}{2} \, \log \left ({\left | x^{\frac {1}{3}} - 1 \right |}\right ) \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(1/(-x^(1/3)+x),x, algorithm="giac")

[Out]

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

________________________________________________________________________________________

maple [B]  time = 0.02, size = 50, normalized size = 3.57 \[ \frac {\ln \left (x -1\right )}{2}+\frac {\ln \left (x +1\right )}{2}+\ln \left (x^{\frac {1}{3}}-1\right )+\ln \left (x^{\frac {1}{3}}+1\right )-\frac {\ln \left (x^{\frac {2}{3}}-x^{\frac {1}{3}}+1\right )}{2}-\frac {\ln \left (x^{\frac {2}{3}}+x^{\frac {1}{3}}+1\right )}{2} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(1/(-x^(1/3)+x),x)

[Out]

1/2*ln(x-1)+1/2*ln(x+1)+ln(x^(1/3)-1)-1/2*ln(x^(2/3)+x^(1/3)+1)+ln(x^(1/3)+1)-1/2*ln(x^(2/3)-x^(1/3)+1)

________________________________________________________________________________________

maxima [A]  time = 0.51, size = 17, normalized size = 1.21 \[ \frac {3}{2} \, \log \left (x^{\frac {1}{3}} + 1\right ) + \frac {3}{2} \, \log \left (x^{\frac {1}{3}} - 1\right ) \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

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

________________________________________________________________________________________

mupad [B]  time = 0.15, size = 8, normalized size = 0.57 \[ \frac {3\,\ln \left (x^{2/3}-1\right )}{2} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

(3*log(x^(2/3) - 1))/2

________________________________________________________________________________________

sympy [B]  time = 0.20, size = 22, normalized size = 1.57 \[ \frac {3 \log {\left (\sqrt [3]{x} - 1 \right )}}{2} + \frac {3 \log {\left (\sqrt [3]{x} + 1 \right )}}{2} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(1/(-x**(1/3)+x),x)

[Out]

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

________________________________________________________________________________________