3.97 \(\int \sqrt {1-x^2} \, dx\)

Optimal. Leaf size=23 \[ \frac {1}{2} \sqrt {1-x^2} x+\frac {1}{2} \sin ^{-1}(x) \]

[Out]

1/2*arcsin(x)+1/2*x*(-x^2+1)^(1/2)

________________________________________________________________________________________

Rubi [A]  time = 0.00, antiderivative size = 23, 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 = {195, 216} \[ \frac {1}{2} \sqrt {1-x^2} x+\frac {1}{2} \sin ^{-1}(x) \]

Antiderivative was successfully verified.

[In]

Int[Sqrt[1 - x^2],x]

[Out]

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

Rule 195

Int[((a_) + (b_.)*(x_)^(n_))^(p_), x_Symbol] :> Simp[(x*(a + b*x^n)^p)/(n*p + 1), x] + Dist[(a*n*p)/(n*p + 1),
 Int[(a + b*x^n)^(p - 1), x], x] /; FreeQ[{a, b}, x] && IGtQ[n, 0] && GtQ[p, 0] && (IntegerQ[2*p] || (EqQ[n, 2
] && IntegerQ[4*p]) || (EqQ[n, 2] && IntegerQ[3*p]) || LtQ[Denominator[p + 1/n], Denominator[p]])

Rule 216

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

Rubi steps

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

________________________________________________________________________________________

Mathematica [A]  time = 0.01, size = 20, normalized size = 0.87 \[ \frac {1}{2} \left (\sqrt {1-x^2} x+\sin ^{-1}(x)\right ) \]

Antiderivative was successfully verified.

[In]

Integrate[Sqrt[1 - x^2],x]

[Out]

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

________________________________________________________________________________________

fricas [A]  time = 0.40, size = 31, normalized size = 1.35 \[ \frac {1}{2} \, \sqrt {-x^{2} + 1} x - \arctan \left (\frac {\sqrt {-x^{2} + 1} - 1}{x}\right ) \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

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

________________________________________________________________________________________

giac [A]  time = 0.01, size = 17, normalized size = 0.74 \[ \frac {1}{2} \, \sqrt {-x^{2} + 1} x + \frac {1}{2} \, \arcsin \relax (x) \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

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

________________________________________________________________________________________

maple [A]  time = 0.00, size = 18, normalized size = 0.78 \[ \frac {\sqrt {-x^{2}+1}\, x}{2}+\frac {\arcsin \relax (x )}{2} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

1/2*arcsin(x)+1/2*x*(-x^2+1)^(1/2)

________________________________________________________________________________________

maxima [A]  time = 1.34, size = 17, normalized size = 0.74 \[ \frac {1}{2} \, \sqrt {-x^{2} + 1} x + \frac {1}{2} \, \arcsin \relax (x) \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

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

________________________________________________________________________________________

mupad [B]  time = 0.08, size = 17, normalized size = 0.74 \[ \frac {\mathrm {asin}\relax (x)}{2}+\frac {x\,\sqrt {1-x^2}}{2} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

asin(x)/2 + (x*(1 - x^2)^(1/2))/2

________________________________________________________________________________________

sympy [A]  time = 0.21, size = 15, normalized size = 0.65 \[ \frac {x \sqrt {1 - x^{2}}}{2} + \frac {\operatorname {asin}{\relax (x )}}{2} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

x*sqrt(1 - x**2)/2 + asin(x)/2

________________________________________________________________________________________