3.2.62 \(\int \frac {1}{(-1+x) (2+x)} \, dx\) [162]

Optimal. Leaf size=19 \[ \frac {1}{3} \log (1-x)-\frac {1}{3} \log (2+x) \]

[Out]

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

________________________________________________________________________________________

Rubi [A]
time = 0.00, antiderivative size = 19, normalized size of antiderivative = 1.00, number of steps used = 3, number of rules used = 2, integrand size = 11, \(\frac {\text {number of rules}}{\text {integrand size}}\) = 0.182, Rules used = {36, 31} \begin {gather*} \frac {1}{3} \log (1-x)-\frac {1}{3} \log (x+2) \end {gather*}

Antiderivative was successfully verified.

[In]

Int[1/((-1 + x)*(2 + x)),x]

[Out]

Log[1 - x]/3 - Log[2 + x]/3

Rule 31

Int[((a_) + (b_.)*(x_))^(-1), x_Symbol] :> Simp[Log[RemoveContent[a + b*x, x]]/b, x] /; FreeQ[{a, b}, x]

Rule 36

Int[1/(((a_.) + (b_.)*(x_))*((c_.) + (d_.)*(x_))), x_Symbol] :> Dist[b/(b*c - a*d), Int[1/(a + b*x), x], x] -
Dist[d/(b*c - a*d), Int[1/(c + d*x), x], x] /; FreeQ[{a, b, c, d}, x] && NeQ[b*c - a*d, 0]

Rubi steps

\begin {align*} \int \frac {1}{(-1+x) (2+x)} \, dx &=\frac {1}{3} \int \frac {1}{-1+x} \, dx-\frac {1}{3} \int \frac {1}{2+x} \, dx\\ &=\frac {1}{3} \log (1-x)-\frac {1}{3} \log (2+x)\\ \end {align*}

________________________________________________________________________________________

Mathematica [A]
time = 0.00, size = 19, normalized size = 1.00 \begin {gather*} \frac {1}{3} \log (1-x)-\frac {1}{3} \log (2+x) \end {gather*}

Antiderivative was successfully verified.

[In]

Integrate[1/((-1 + x)*(2 + x)),x]

[Out]

Log[1 - x]/3 - Log[2 + x]/3

________________________________________________________________________________________

Maple [A]
time = 0.05, size = 14, normalized size = 0.74

method result size
default \(\frac {\ln \left (-1+x \right )}{3}-\frac {\ln \left (2+x \right )}{3}\) \(14\)
norman \(\frac {\ln \left (-1+x \right )}{3}-\frac {\ln \left (2+x \right )}{3}\) \(14\)
risch \(\frac {\ln \left (-1+x \right )}{3}-\frac {\ln \left (2+x \right )}{3}\) \(14\)

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

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

________________________________________________________________________________________

Maxima [A]
time = 1.94, size = 13, normalized size = 0.68 \begin {gather*} -\frac {1}{3} \, \log \left (x + 2\right ) + \frac {1}{3} \, \log \left (x - 1\right ) \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

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

________________________________________________________________________________________

Fricas [A]
time = 0.42, size = 13, normalized size = 0.68 \begin {gather*} -\frac {1}{3} \, \log \left (x + 2\right ) + \frac {1}{3} \, \log \left (x - 1\right ) \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

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

________________________________________________________________________________________

Sympy [A]
time = 0.03, size = 12, normalized size = 0.63 \begin {gather*} \frac {\log {\left (x - 1 \right )}}{3} - \frac {\log {\left (x + 2 \right )}}{3} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

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

________________________________________________________________________________________

Giac [A]
time = 0.56, size = 15, normalized size = 0.79 \begin {gather*} -\frac {1}{3} \, \log \left ({\left | x + 2 \right |}\right ) + \frac {1}{3} \, \log \left ({\left | x - 1 \right |}\right ) \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

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

________________________________________________________________________________________

Mupad [B]
time = 0.10, size = 12, normalized size = 0.63 \begin {gather*} \frac {\ln \left (\frac {x-1}{x+2}\right )}{3} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(1/((x - 1)*(x + 2)),x)

[Out]

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

________________________________________________________________________________________