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

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

[Out]

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

________________________________________________________________________________________

Rubi [A]  time = 0.01, antiderivative size = 30, normalized size of antiderivative = 1.00, number of steps used = 3, number of rules used = 2, integrand size = 8, \(\frac {\text {number of rules}}{\text {integrand size}}\) = 0.250, Rules used = {5653, 261} \[ a x-\frac {b \sqrt {c^2 x^2+1}}{c}+b x \sinh ^{-1}(c x) \]

Antiderivative was successfully verified.

[In]

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

[Out]

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

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]

Rule 5653

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

Rubi steps

\begin {align*} \int \left (a+b \sinh ^{-1}(c x)\right ) \, dx &=a x+b \int \sinh ^{-1}(c x) \, dx\\ &=a x+b x \sinh ^{-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 \sinh ^{-1}(c x)\\ \end {align*}

________________________________________________________________________________________

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

Antiderivative was successfully verified.

[In]

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

[Out]

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

________________________________________________________________________________________

fricas [A]  time = 0.56, size = 43, normalized size = 1.43 \[ \frac {b c x \log \left (c x + \sqrt {c^{2} x^{2} + 1}\right ) + a c x - \sqrt {c^{2} x^{2} + 1} b}{c} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

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

________________________________________________________________________________________

giac [A]  time = 0.23, size = 41, normalized size = 1.37 \[ {\left (x \log \left (c x + \sqrt {c^{2} x^{2} + 1}\right ) - \frac {\sqrt {c^{2} x^{2} + 1}}{c}\right )} b + a x \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

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

________________________________________________________________________________________

maple [A]  time = 0.01, size = 31, normalized size = 1.03 \[ a x +\frac {b \left (\arcsinh \left (c x \right ) c x -\sqrt {c^{2} x^{2}+1}\right )}{c} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

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

________________________________________________________________________________________

maxima [A]  time = 0.40, size = 30, normalized size = 1.00 \[ a x + \frac {{\left (c x \operatorname {arsinh}\left (c x\right ) - \sqrt {c^{2} x^{2} + 1}\right )} b}{c} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

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

________________________________________________________________________________________

mupad [B]  time = 0.00, size = 28, normalized size = 0.93 \[ a\,x-\frac {b\,\sqrt {c^2\,x^2+1}}{c}+b\,x\,\mathrm {asinh}\left (c\,x\right ) \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

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

________________________________________________________________________________________

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

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

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

________________________________________________________________________________________