3.4 \(\int (a+b \sin ^{-1}(c x)) \, dx\)

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

[Out]

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

________________________________________________________________________________________

Rubi [A]  time = 0.0132206, antiderivative size = 30, normalized size of antiderivative = 1., number of steps used = 3, number of rules used = 2, integrand size = 8, \(\frac{\text{number of rules}}{\text{integrand size}}\) = 0.25, Rules used = {4619, 261} \[ a x+\frac{b \sqrt{1-c^2 x^2}}{c}+b x \sin ^{-1}(c x) \]

Antiderivative was successfully verified.

[In]

Int[a + b*ArcSin[c*x],x]

[Out]

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

Rule 4619

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

Rule 261

Int[(x_)^(m_.)*((a_) + (b_.)*(x_)^(n_))^(p_), x_Symbol] :> Simp[(a + b*x^n)^(p + 1)/(b*n*(p + 1)), x] /; FreeQ
[{a, b, m, n, p}, x] && EqQ[m, n - 1] && NeQ[p, -1]

Rubi steps

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

Mathematica [A]  time = 0.009533, size = 30, normalized size = 1. \[ a x+\frac{b \sqrt{1-c^2 x^2}}{c}+b x \sin ^{-1}(c x) \]

Antiderivative was successfully verified.

[In]

Integrate[a + b*ArcSin[c*x],x]

[Out]

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

________________________________________________________________________________________

Maple [A]  time = 0., size = 30, normalized size = 1. \begin{align*} ax+{\frac{b}{c} \left ( cx\arcsin \left ( cx \right ) +\sqrt{-{c}^{2}{x}^{2}+1} \right ) } \end{align*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(a+b*arcsin(c*x),x)

[Out]

a*x+b/c*(c*x*arcsin(c*x)+(-c^2*x^2+1)^(1/2))

________________________________________________________________________________________

Maxima [A]  time = 1.47908, size = 39, normalized size = 1.3 \begin{align*} a x + \frac{{\left (c x \arcsin \left (c x\right ) + \sqrt{-c^{2} x^{2} + 1}\right )} b}{c} \end{align*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(a+b*arcsin(c*x),x, algorithm="maxima")

[Out]

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

________________________________________________________________________________________

Fricas [A]  time = 2.31312, size = 73, normalized size = 2.43 \begin{align*} \frac{b c x \arcsin \left (c x\right ) + a c x + \sqrt{-c^{2} x^{2} + 1} b}{c} \end{align*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(a+b*arcsin(c*x),x, algorithm="fricas")

[Out]

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

________________________________________________________________________________________

Sympy [A]  time = 0.144854, size = 26, normalized size = 0.87 \begin{align*} a x + b \left (\begin{cases} x \operatorname{asin}{\left (c x \right )} + \frac{\sqrt{- c^{2} x^{2} + 1}}{c} & \text{for}\: c \neq 0 \\0 & \text{otherwise} \end{cases}\right ) \end{align*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(a+b*asin(c*x),x)

[Out]

a*x + b*Piecewise((x*asin(c*x) + sqrt(-c**2*x**2 + 1)/c, Ne(c, 0)), (0, True))

________________________________________________________________________________________

Giac [A]  time = 1.29272, size = 39, normalized size = 1.3 \begin{align*} a x + \frac{{\left (c x \arcsin \left (c x\right ) + \sqrt{-c^{2} x^{2} + 1}\right )} b}{c} \end{align*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(a+b*arcsin(c*x),x, algorithm="giac")

[Out]

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