3.1.77 \(\int \frac {1}{\sqrt {a+b x^2}} \, dx\) [77]

Optimal. Leaf size=25 \[ \frac {\tanh ^{-1}\left (\frac {\sqrt {b} x}{\sqrt {a+b x^2}}\right )}{\sqrt {b}} \]

[Out]

arctanh(x*b^(1/2)/(b*x^2+a)^(1/2))/b^(1/2)

________________________________________________________________________________________

Rubi [A]
time = 0.00, antiderivative size = 25, 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 = {223, 212} \begin {gather*} \frac {\tanh ^{-1}\left (\frac {\sqrt {b} x}{\sqrt {a+b x^2}}\right )}{\sqrt {b}} \end {gather*}

Antiderivative was successfully verified.

[In]

Int[1/Sqrt[a + b*x^2],x]

[Out]

ArcTanh[(Sqrt[b]*x)/Sqrt[a + b*x^2]]/Sqrt[b]

Rule 212

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

Rule 223

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

Rubi steps

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

________________________________________________________________________________________

Mathematica [A]
time = 0.00, size = 25, normalized size = 1.00 \begin {gather*} \frac {\tanh ^{-1}\left (\frac {\sqrt {b} x}{\sqrt {a+b x^2}}\right )}{\sqrt {b}} \end {gather*}

Antiderivative was successfully verified.

[In]

Integrate[1/Sqrt[a + b*x^2],x]

[Out]

ArcTanh[(Sqrt[b]*x)/Sqrt[a + b*x^2]]/Sqrt[b]

________________________________________________________________________________________

Maple [A]
time = 0.05, size = 21, normalized size = 0.84

method result size
default \(\frac {\ln \left (x \sqrt {b}+\sqrt {b \,x^{2}+a}\right )}{\sqrt {b}}\) \(21\)

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

ln(x*b^(1/2)+(b*x^2+a)^(1/2))/b^(1/2)

________________________________________________________________________________________

Maxima [A]
time = 0.31, size = 13, normalized size = 0.52 \begin {gather*} \frac {\operatorname {arsinh}\left (\frac {b x}{\sqrt {a b}}\right )}{\sqrt {b}} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

arcsinh(b*x/sqrt(a*b))/sqrt(b)

________________________________________________________________________________________

Fricas [A]
time = 0.53, size = 59, normalized size = 2.36 \begin {gather*} \left [\frac {\log \left (-2 \, b x^{2} - 2 \, \sqrt {b x^{2} + a} \sqrt {b} x - a\right )}{2 \, \sqrt {b}}, -\frac {\sqrt {-b} \arctan \left (\frac {\sqrt {-b} x}{\sqrt {b x^{2} + a}}\right )}{b}\right ] \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

[1/2*log(-2*b*x^2 - 2*sqrt(b*x^2 + a)*sqrt(b)*x - a)/sqrt(b), -sqrt(-b)*arctan(sqrt(-b)*x/sqrt(b*x^2 + a))/b]

________________________________________________________________________________________

Sympy [A]
time = 0.47, size = 17, normalized size = 0.68 \begin {gather*} \frac {\operatorname {asinh}{\left (\frac {\sqrt {b} x}{\sqrt {a}} \right )}}{\sqrt {b}} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

asinh(sqrt(b)*x/sqrt(a))/sqrt(b)

________________________________________________________________________________________

Giac [A]
time = 0.67, size = 37, normalized size = 1.48 \begin {gather*} \frac {1}{2} \, \sqrt {b x^{2} + a} x - \frac {a \log \left ({\left | -\sqrt {b} x + \sqrt {b x^{2} + a} \right |}\right )}{2 \, \sqrt {b}} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

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

________________________________________________________________________________________

Mupad [B]
time = 0.12, size = 20, normalized size = 0.80 \begin {gather*} \frac {\ln \left (\sqrt {b}\,x+\sqrt {b\,x^2+a}\right )}{\sqrt {b}} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(1/(a + b*x^2)^(1/2),x)

[Out]

log(b^(1/2)*x + (a + b*x^2)^(1/2))/b^(1/2)

________________________________________________________________________________________