3.194 \(\int \frac {x^2}{(1+x)^3} \, dx\)

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

[Out]

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

________________________________________________________________________________________

Rubi [A]  time = 0.01, antiderivative size = 21, normalized size of antiderivative = 1.00, number of steps used = 2, number of rules used = 1, integrand size = 9, \(\frac {\text {number of rules}}{\text {integrand size}}\) = 0.111, Rules used = {43} \[ \frac {2}{x+1}-\frac {1}{2 (x+1)^2}+\log (x+1) \]

Antiderivative was successfully verified.

[In]

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

[Out]

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

Rule 43

Int[((a_.) + (b_.)*(x_))^(m_.)*((c_.) + (d_.)*(x_))^(n_.), x_Symbol] :> Int[ExpandIntegrand[(a + b*x)^m*(c + d
*x)^n, x], x] /; FreeQ[{a, b, c, d, n}, x] && NeQ[b*c - a*d, 0] && IGtQ[m, 0] && ( !IntegerQ[n] || (EqQ[c, 0]
&& LeQ[7*m + 4*n + 4, 0]) || LtQ[9*m + 5*(n + 1), 0] || GtQ[m + n + 2, 0])

Rubi steps

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

________________________________________________________________________________________

Mathematica [A]  time = 0.01, size = 21, normalized size = 1.00 \[ \frac {2}{x+1}-\frac {1}{2 (x+1)^2}+\log (x+1) \]

Antiderivative was successfully verified.

[In]

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

[Out]

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

________________________________________________________________________________________

fricas [A]  time = 0.40, size = 31, normalized size = 1.48 \[ \frac {2 \, {\left (x^{2} + 2 \, x + 1\right )} \log \left (x + 1\right ) + 4 \, x + 3}{2 \, {\left (x^{2} + 2 \, x + 1\right )}} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

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

________________________________________________________________________________________

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

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

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

________________________________________________________________________________________

maple [A]  time = 0.01, size = 20, normalized size = 0.95 \[ \ln \left (x +1\right )-\frac {1}{2 \left (x +1\right )^{2}}+\frac {2}{x +1} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

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

________________________________________________________________________________________

maxima [A]  time = 0.52, size = 22, normalized size = 1.05 \[ \frac {4 \, x + 3}{2 \, {\left (x^{2} + 2 \, x + 1\right )}} + \log \left (x + 1\right ) \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

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

________________________________________________________________________________________

mupad [B]  time = 0.03, size = 21, normalized size = 1.00 \[ \ln \left (x+1\right )+\frac {2\,x+\frac {3}{2}}{x^2+2\,x+1} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

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

________________________________________________________________________________________

sympy [A]  time = 0.10, size = 19, normalized size = 0.90 \[ \frac {4 x + 3}{2 x^{2} + 4 x + 2} + \log {\left (x + 1 \right )} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

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

________________________________________________________________________________________