3.283 \(\int \frac {1+x^4}{2+x^2} \, dx\)

Optimal. Leaf size=26 \[ \frac {x^3}{3}-2 x+\frac {5 \tan ^{-1}\left (\frac {x}{\sqrt {2}}\right )}{\sqrt {2}} \]

[Out]

-2*x+1/3*x^3+5/2*arctan(1/2*x*2^(1/2))*2^(1/2)

________________________________________________________________________________________

Rubi [A]  time = 0.01, antiderivative size = 26, normalized size of antiderivative = 1.00, number of steps used = 3, number of rules used = 2, integrand size = 13, \(\frac {\text {number of rules}}{\text {integrand size}}\) = 0.154, Rules used = {1154, 203} \[ \frac {x^3}{3}-2 x+\frac {5 \tan ^{-1}\left (\frac {x}{\sqrt {2}}\right )}{\sqrt {2}} \]

Antiderivative was successfully verified.

[In]

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

[Out]

-2*x + x^3/3 + (5*ArcTan[x/Sqrt[2]])/Sqrt[2]

Rule 203

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

Rule 1154

Int[((d_) + (e_.)*(x_)^2)^(q_.)*((a_) + (c_.)*(x_)^4)^(p_.), x_Symbol] :> Int[ExpandIntegrand[(d + e*x^2)^q*(a
 + c*x^4)^p, x], x] /; FreeQ[{a, c, d, e}, x] && NeQ[c*d^2 + a*e^2, 0] && IGtQ[p, 0] && IGtQ[q, -2]

Rubi steps

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

________________________________________________________________________________________

Mathematica [A]  time = 0.01, size = 26, normalized size = 1.00 \[ \frac {x^3}{3}-2 x+\frac {5 \tan ^{-1}\left (\frac {x}{\sqrt {2}}\right )}{\sqrt {2}} \]

Antiderivative was successfully verified.

[In]

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

[Out]

-2*x + x^3/3 + (5*ArcTan[x/Sqrt[2]])/Sqrt[2]

________________________________________________________________________________________

fricas [A]  time = 0.60, size = 21, normalized size = 0.81 \[ \frac {1}{3} \, x^{3} + \frac {5}{2} \, \sqrt {2} \arctan \left (\frac {1}{2} \, \sqrt {2} x\right ) - 2 \, x \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

1/3*x^3 + 5/2*sqrt(2)*arctan(1/2*sqrt(2)*x) - 2*x

________________________________________________________________________________________

giac [A]  time = 0.31, size = 21, normalized size = 0.81 \[ \frac {1}{3} \, x^{3} + \frac {5}{2} \, \sqrt {2} \arctan \left (\frac {1}{2} \, \sqrt {2} x\right ) - 2 \, x \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

1/3*x^3 + 5/2*sqrt(2)*arctan(1/2*sqrt(2)*x) - 2*x

________________________________________________________________________________________

maple [A]  time = 0.00, size = 22, normalized size = 0.85 \[ \frac {x^{3}}{3}-2 x +\frac {5 \sqrt {2}\, \arctan \left (\frac {\sqrt {2}\, x}{2}\right )}{2} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

-2*x+1/3*x^3+5/2*2^(1/2)*arctan(1/2*2^(1/2)*x)

________________________________________________________________________________________

maxima [A]  time = 2.22, size = 21, normalized size = 0.81 \[ \frac {1}{3} \, x^{3} + \frac {5}{2} \, \sqrt {2} \arctan \left (\frac {1}{2} \, \sqrt {2} x\right ) - 2 \, x \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

1/3*x^3 + 5/2*sqrt(2)*arctan(1/2*sqrt(2)*x) - 2*x

________________________________________________________________________________________

mupad [B]  time = 0.03, size = 21, normalized size = 0.81 \[ \frac {5\,\sqrt {2}\,\mathrm {atan}\left (\frac {\sqrt {2}\,x}{2}\right )}{2}-2\,x+\frac {x^3}{3} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

(5*2^(1/2)*atan((2^(1/2)*x)/2))/2 - 2*x + x^3/3

________________________________________________________________________________________

sympy [A]  time = 0.09, size = 26, normalized size = 1.00 \[ \frac {x^{3}}{3} - 2 x + \frac {5 \sqrt {2} \operatorname {atan}{\left (\frac {\sqrt {2} x}{2} \right )}}{2} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

x**3/3 - 2*x + 5*sqrt(2)*atan(sqrt(2)*x/2)/2

________________________________________________________________________________________