3.492 \(\int (x-\sqrt {a+x^2})^n \, dx\)

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

[Out]

-1/2*a*(x-(x^2+a)^(1/2))^(-1+n)/(1-n)+1/2*(x-(x^2+a)^(1/2))^(1+n)/(1+n)

________________________________________________________________________________________

Rubi [A]  time = 0.02, antiderivative size = 56, normalized size of antiderivative = 1.00, number of steps used = 3, number of rules used = 2, integrand size = 15, \(\frac {\text {number of rules}}{\text {integrand size}}\) = 0.133, Rules used = {2117, 14} \[ \frac {\left (x-\sqrt {a+x^2}\right )^{n+1}}{2 (n+1)}-\frac {a \left (x-\sqrt {a+x^2}\right )^{n-1}}{2 (1-n)} \]

Antiderivative was successfully verified.

[In]

Int[(x - Sqrt[a + x^2])^n,x]

[Out]

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

Rule 14

Int[(u_)*((c_.)*(x_))^(m_.), x_Symbol] :> Int[ExpandIntegrand[(c*x)^m*u, x], x] /; FreeQ[{c, m}, x] && SumQ[u]
 &&  !LinearQ[u, x] &&  !MatchQ[u, (a_) + (b_.)*(v_) /; FreeQ[{a, b}, x] && InverseFunctionQ[v]]

Rule 2117

Int[((g_.) + (h_.)*((d_.) + (e_.)*(x_) + (f_.)*Sqrt[(a_) + (c_.)*(x_)^2])^(n_))^(p_.), x_Symbol] :> Dist[1/(2*
e), Subst[Int[((g + h*x^n)^p*(d^2 + a*f^2 - 2*d*x + x^2))/(d - x)^2, x], x, d + e*x + f*Sqrt[a + c*x^2]], x] /
; FreeQ[{a, c, d, e, f, g, h, n}, x] && EqQ[e^2 - c*f^2, 0] && IntegerQ[p]

Rubi steps

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

________________________________________________________________________________________

Mathematica [A]  time = 0.06, size = 50, normalized size = 0.89 \[ \frac {1}{2} \left (x-\sqrt {a+x^2}\right )^{n-1} \left (\frac {\left (x-\sqrt {a+x^2}\right )^2}{n+1}+\frac {a}{n-1}\right ) \]

Antiderivative was successfully verified.

[In]

Integrate[(x - Sqrt[a + x^2])^n,x]

[Out]

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

________________________________________________________________________________________

fricas [A]  time = 0.48, size = 33, normalized size = 0.59 \[ -\frac {{\left (\sqrt {x^{2} + a} n + x\right )} {\left (x - \sqrt {x^{2} + a}\right )}^{n}}{n^{2} - 1} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

-(sqrt(x^2 + a)*n + x)*(x - sqrt(x^2 + a))^n/(n^2 - 1)

________________________________________________________________________________________

giac [F]  time = 0.00, size = 0, normalized size = 0.00 \[ \int {\left (x - \sqrt {x^{2} + a}\right )}^{n}\,{d x} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

integrate((x - sqrt(x^2 + a))^n, x)

________________________________________________________________________________________

maple [F]  time = 0.05, size = 0, normalized size = 0.00 \[ \int \left (x -\sqrt {x^{2}+a}\right )^{n}\, dx \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

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

________________________________________________________________________________________

maxima [F]  time = 0.00, size = 0, normalized size = 0.00 \[ \int {\left (x - \sqrt {x^{2} + a}\right )}^{n}\,{d x} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

integrate((x - sqrt(x^2 + a))^n, x)

________________________________________________________________________________________

mupad [F]  time = 0.00, size = -1, normalized size = -0.02 \[ \int {\left (x-\sqrt {x^2+a}\right )}^n \,d x \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

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

________________________________________________________________________________________

sympy [F]  time = 0.00, size = 0, normalized size = 0.00 \[ \int \left (x - \sqrt {a + x^{2}}\right )^{n}\, dx \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

Integral((x - sqrt(a + x**2))**n, x)

________________________________________________________________________________________