3.2.53 \(\int \frac {x}{\sqrt {1+x+x^2}} \, dx\) [153]

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

[Out]

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

________________________________________________________________________________________

Rubi [A]
time = 0.01, antiderivative size = 27, normalized size of antiderivative = 1.00, number of steps used = 3, number of rules used = 3, integrand size = 12, \(\frac {\text {number of rules}}{\text {integrand size}}\) = 0.250, Rules used = {654, 633, 221} \begin {gather*} \sqrt {x^2+x+1}-\frac {1}{2} \sinh ^{-1}\left (\frac {2 x+1}{\sqrt {3}}\right ) \end {gather*}

Antiderivative was successfully verified.

[In]

Int[x/Sqrt[1 + x + x^2],x]

[Out]

Sqrt[1 + x + x^2] - ArcSinh[(1 + 2*x)/Sqrt[3]]/2

Rule 221

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

Rule 633

Int[((a_.) + (b_.)*(x_) + (c_.)*(x_)^2)^(p_), x_Symbol] :> Dist[1/(2*c*(-4*(c/(b^2 - 4*a*c)))^p), Subst[Int[Si
mp[1 - x^2/(b^2 - 4*a*c), x]^p, x], x, b + 2*c*x], x] /; FreeQ[{a, b, c, p}, x] && GtQ[4*a - b^2/c, 0]

Rule 654

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

Rubi steps

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

________________________________________________________________________________________

Mathematica [A]
time = 0.05, size = 33, normalized size = 1.22 \begin {gather*} \sqrt {1+x+x^2}+\frac {1}{2} \log \left (-1-2 x+2 \sqrt {1+x+x^2}\right ) \end {gather*}

Antiderivative was successfully verified.

[In]

Integrate[x/Sqrt[1 + x + x^2],x]

[Out]

Sqrt[1 + x + x^2] + Log[-1 - 2*x + 2*Sqrt[1 + x + x^2]]/2

________________________________________________________________________________________

Maple [A]
time = 0.17, size = 21, normalized size = 0.78

method result size
default \(\sqrt {x^{2}+x +1}-\frac {\arcsinh \left (\frac {2 \sqrt {3}\, \left (x +\frac {1}{2}\right )}{3}\right )}{2}\) \(21\)
risch \(\sqrt {x^{2}+x +1}-\frac {\arcsinh \left (\frac {2 \sqrt {3}\, \left (x +\frac {1}{2}\right )}{3}\right )}{2}\) \(21\)
trager \(\sqrt {x^{2}+x +1}-\frac {\ln \left (2 x +1+2 \sqrt {x^{2}+x +1}\right )}{2}\) \(28\)

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

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

________________________________________________________________________________________

Maxima [A]
time = 4.10, size = 22, normalized size = 0.81 \begin {gather*} \sqrt {x^{2} + x + 1} - \frac {1}{2} \, \operatorname {arsinh}\left (\frac {1}{3} \, \sqrt {3} {\left (2 \, x + 1\right )}\right ) \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

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

________________________________________________________________________________________

Fricas [A]
time = 0.53, size = 27, normalized size = 1.00 \begin {gather*} \sqrt {x^{2} + x + 1} + \frac {1}{2} \, \log \left (-2 \, x + 2 \, \sqrt {x^{2} + x + 1} - 1\right ) \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

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

________________________________________________________________________________________

Sympy [F]
time = 0.00, size = 0, normalized size = 0.00 \begin {gather*} \int \frac {x}{\sqrt {x^{2} + x + 1}}\, dx \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

Integral(x/sqrt(x**2 + x + 1), x)

________________________________________________________________________________________

Giac [A]
time = 0.45, size = 27, normalized size = 1.00 \begin {gather*} \sqrt {x^{2} + x + 1} + \frac {1}{2} \, \log \left (-2 \, x + 2 \, \sqrt {x^{2} + x + 1} - 1\right ) \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

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

________________________________________________________________________________________

Mupad [B]
time = 0.05, size = 23, normalized size = 0.85 \begin {gather*} \sqrt {x^2+x+1}-\frac {\ln \left (x+\sqrt {x^2+x+1}+\frac {1}{2}\right )}{2} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

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

________________________________________________________________________________________