\(\int \frac {x (a+b \text {arccosh}(c x))}{(d-c^2 d x^2)^{3/2}} \, dx\) [113]

Optimal result
Mathematica [A] (verified)
Rubi [A] (verified)
Maple [A] (verified)
Fricas [A] (verification not implemented)
Sympy [F]
Maxima [F]
Giac [F]
Mupad [F(-1)]
Reduce [F]

Optimal result

Integrand size = 25, antiderivative size = 76 \[ \int \frac {x (a+b \text {arccosh}(c x))}{\left (d-c^2 d x^2\right )^{3/2}} \, dx=\frac {a+b \text {arccosh}(c x)}{c^2 d \sqrt {d-c^2 d x^2}}+\frac {b \sqrt {-1+c x} \sqrt {1+c x} \text {arctanh}(c x)}{c^2 d \sqrt {d-c^2 d x^2}} \] Output:

(a+b*arccosh(c*x))/c^2/d/(-c^2*d*x^2+d)^(1/2)+b*(c*x-1)^(1/2)*(c*x+1)^(1/2 
)*arctanh(c*x)/c^2/d/(-c^2*d*x^2+d)^(1/2)
 

Mathematica [A] (verified)

Time = 0.38 (sec) , antiderivative size = 136, normalized size of antiderivative = 1.79 \[ \int \frac {x (a+b \text {arccosh}(c x))}{\left (d-c^2 d x^2\right )^{3/2}} \, dx=-\frac {a \sqrt {-d \left (-1+c^2 x^2\right )}}{c^2 d^2 \left (-1+c^2 x^2\right )}-\frac {b \sqrt {-d \left (-1+c^2 x^2\right )} \text {arccosh}(c x)}{c^2 d^2 \left (-1+c^2 x^2\right )}+\frac {b \sqrt {d-c^2 d x^2} (\log (-1+c x)-\log (1+c x))}{2 c^2 d^2 \sqrt {-1+c x} \sqrt {1+c x}} \] Input:

Integrate[(x*(a + b*ArcCosh[c*x]))/(d - c^2*d*x^2)^(3/2),x]
 

Output:

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

Rubi [A] (verified)

Time = 0.30 (sec) , antiderivative size = 76, normalized size of antiderivative = 1.00, number of steps used = 4, number of rules used = 4, \(\frac {\text {number of rules}}{\text {integrand size}}\) = 0.160, Rules used = {6329, 25, 39, 219}

Below are the steps used by Rubi to obtain the solution. The rule number used for the transformation is given above next to the arrow. The rules definitions used are listed below.

\(\displaystyle \int \frac {x (a+b \text {arccosh}(c x))}{\left (d-c^2 d x^2\right )^{3/2}} \, dx\)

\(\Big \downarrow \) 6329

\(\displaystyle \frac {a+b \text {arccosh}(c x)}{c^2 d \sqrt {d-c^2 d x^2}}-\frac {b \sqrt {c x-1} \sqrt {c x+1} \int -\frac {1}{(1-c x) (c x+1)}dx}{c d \sqrt {d-c^2 d x^2}}\)

\(\Big \downarrow \) 25

\(\displaystyle \frac {b \sqrt {c x-1} \sqrt {c x+1} \int \frac {1}{(1-c x) (c x+1)}dx}{c d \sqrt {d-c^2 d x^2}}+\frac {a+b \text {arccosh}(c x)}{c^2 d \sqrt {d-c^2 d x^2}}\)

\(\Big \downarrow \) 39

\(\displaystyle \frac {b \sqrt {c x-1} \sqrt {c x+1} \int \frac {1}{1-c^2 x^2}dx}{c d \sqrt {d-c^2 d x^2}}+\frac {a+b \text {arccosh}(c x)}{c^2 d \sqrt {d-c^2 d x^2}}\)

\(\Big \downarrow \) 219

\(\displaystyle \frac {a+b \text {arccosh}(c x)}{c^2 d \sqrt {d-c^2 d x^2}}+\frac {b \sqrt {c x-1} \sqrt {c x+1} \text {arctanh}(c x)}{c^2 d \sqrt {d-c^2 d x^2}}\)

Input:

Int[(x*(a + b*ArcCosh[c*x]))/(d - c^2*d*x^2)^(3/2),x]
 

Output:

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

Defintions of rubi rules used

rule 25
Int[-(Fx_), x_Symbol] :> Simp[Identity[-1]   Int[Fx, x], x]
 

rule 39
Int[((a_) + (b_.)*(x_))^(m_.)*((c_) + (d_.)*(x_))^(m_.), x_Symbol] :> Int[( 
a*c + b*d*x^2)^m, x] /; FreeQ[{a, b, c, d, m}, x] && EqQ[b*c + a*d, 0] && ( 
IntegerQ[m] || (GtQ[a, 0] && GtQ[c, 0]))
 

rule 219
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] && (Gt 
Q[a, 0] || LtQ[b, 0])
 

rule 6329
Int[((a_.) + ArcCosh[(c_.)*(x_)]*(b_.))^(n_.)*(x_)*((d_) + (e_.)*(x_)^2)^(p 
_.), x_Symbol] :> Simp[(d + e*x^2)^(p + 1)*((a + b*ArcCosh[c*x])^n/(2*e*(p 
+ 1))), x] - Simp[b*(n/(2*c*(p + 1)))*Simp[(d + e*x^2)^p/((1 + c*x)^p*(-1 + 
 c*x)^p)]   Int[(1 + c*x)^(p + 1/2)*(-1 + c*x)^(p + 1/2)*(a + b*ArcCosh[c*x 
])^(n - 1), x], x] /; FreeQ[{a, b, c, d, e, p}, x] && EqQ[c^2*d + e, 0] && 
GtQ[n, 0] && NeQ[p, -1]
 
Maple [A] (verified)

Time = 0.34 (sec) , antiderivative size = 135, normalized size of antiderivative = 1.78

method result size
default \(\frac {a}{c^{2} d \sqrt {-c^{2} d \,x^{2}+d}}-\frac {b \sqrt {-d \left (c^{2} x^{2}-1\right )}\, \left (\sqrt {c x -1}\, \sqrt {c x +1}\, \ln \left (1+c x +\sqrt {c x -1}\, \sqrt {c x +1}\right )-\sqrt {c x -1}\, \sqrt {c x +1}\, \ln \left (\sqrt {c x -1}\, \sqrt {c x +1}+c x -1\right )+\operatorname {arccosh}\left (c x \right )\right )}{d^{2} c^{2} \left (c^{2} x^{2}-1\right )}\) \(135\)
parts \(\frac {a}{c^{2} d \sqrt {-c^{2} d \,x^{2}+d}}-\frac {b \sqrt {-d \left (c^{2} x^{2}-1\right )}\, \left (\sqrt {c x -1}\, \sqrt {c x +1}\, \ln \left (1+c x +\sqrt {c x -1}\, \sqrt {c x +1}\right )-\sqrt {c x -1}\, \sqrt {c x +1}\, \ln \left (\sqrt {c x -1}\, \sqrt {c x +1}+c x -1\right )+\operatorname {arccosh}\left (c x \right )\right )}{d^{2} c^{2} \left (c^{2} x^{2}-1\right )}\) \(135\)

Input:

int(x*(a+b*arccosh(c*x))/(-c^2*d*x^2+d)^(3/2),x,method=_RETURNVERBOSE)
 

Output:

a/c^2/d/(-c^2*d*x^2+d)^(1/2)-b*(-d*(c^2*x^2-1))^(1/2)*((c*x-1)^(1/2)*(c*x+ 
1)^(1/2)*ln(1+c*x+(c*x-1)^(1/2)*(c*x+1)^(1/2))-(c*x-1)^(1/2)*(c*x+1)^(1/2) 
*ln((c*x-1)^(1/2)*(c*x+1)^(1/2)+c*x-1)+arccosh(c*x))/d^2/c^2/(c^2*x^2-1)
 

Fricas [A] (verification not implemented)

Time = 0.12 (sec) , antiderivative size = 327, normalized size of antiderivative = 4.30 \[ \int \frac {x (a+b \text {arccosh}(c x))}{\left (d-c^2 d x^2\right )^{3/2}} \, dx=\left [-\frac {4 \, \sqrt {-c^{2} d x^{2} + d} b \log \left (c x + \sqrt {c^{2} x^{2} - 1}\right ) + {\left (b c^{2} x^{2} - b\right )} \sqrt {-d} \log \left (-\frac {c^{6} d x^{6} + 5 \, c^{4} d x^{4} - 5 \, c^{2} d x^{2} - 4 \, {\left (c^{3} x^{3} + c x\right )} \sqrt {-c^{2} d x^{2} + d} \sqrt {c^{2} x^{2} - 1} \sqrt {-d} - d}{c^{6} x^{6} - 3 \, c^{4} x^{4} + 3 \, c^{2} x^{2} - 1}\right ) + 4 \, \sqrt {-c^{2} d x^{2} + d} a}{4 \, {\left (c^{4} d^{2} x^{2} - c^{2} d^{2}\right )}}, -\frac {{\left (b c^{2} x^{2} - b\right )} \sqrt {d} \arctan \left (\frac {2 \, \sqrt {-c^{2} d x^{2} + d} \sqrt {c^{2} x^{2} - 1} c \sqrt {d} x}{c^{4} d x^{4} - d}\right ) + 2 \, \sqrt {-c^{2} d x^{2} + d} b \log \left (c x + \sqrt {c^{2} x^{2} - 1}\right ) + 2 \, \sqrt {-c^{2} d x^{2} + d} a}{2 \, {\left (c^{4} d^{2} x^{2} - c^{2} d^{2}\right )}}\right ] \] Input:

integrate(x*(a+b*arccosh(c*x))/(-c^2*d*x^2+d)^(3/2),x, algorithm="fricas")
 

Output:

[-1/4*(4*sqrt(-c^2*d*x^2 + d)*b*log(c*x + sqrt(c^2*x^2 - 1)) + (b*c^2*x^2 
- b)*sqrt(-d)*log(-(c^6*d*x^6 + 5*c^4*d*x^4 - 5*c^2*d*x^2 - 4*(c^3*x^3 + c 
*x)*sqrt(-c^2*d*x^2 + d)*sqrt(c^2*x^2 - 1)*sqrt(-d) - d)/(c^6*x^6 - 3*c^4* 
x^4 + 3*c^2*x^2 - 1)) + 4*sqrt(-c^2*d*x^2 + d)*a)/(c^4*d^2*x^2 - c^2*d^2), 
 -1/2*((b*c^2*x^2 - b)*sqrt(d)*arctan(2*sqrt(-c^2*d*x^2 + d)*sqrt(c^2*x^2 
- 1)*c*sqrt(d)*x/(c^4*d*x^4 - d)) + 2*sqrt(-c^2*d*x^2 + d)*b*log(c*x + sqr 
t(c^2*x^2 - 1)) + 2*sqrt(-c^2*d*x^2 + d)*a)/(c^4*d^2*x^2 - c^2*d^2)]
 

Sympy [F]

\[ \int \frac {x (a+b \text {arccosh}(c x))}{\left (d-c^2 d x^2\right )^{3/2}} \, dx=\int \frac {x \left (a + b \operatorname {acosh}{\left (c x \right )}\right )}{\left (- d \left (c x - 1\right ) \left (c x + 1\right )\right )^{\frac {3}{2}}}\, dx \] Input:

integrate(x*(a+b*acosh(c*x))/(-c**2*d*x**2+d)**(3/2),x)
 

Output:

Integral(x*(a + b*acosh(c*x))/(-d*(c*x - 1)*(c*x + 1))**(3/2), x)
 

Maxima [F]

\[ \int \frac {x (a+b \text {arccosh}(c x))}{\left (d-c^2 d x^2\right )^{3/2}} \, dx=\int { \frac {{\left (b \operatorname {arcosh}\left (c x\right ) + a\right )} x}{{\left (-c^{2} d x^{2} + d\right )}^{\frac {3}{2}}} \,d x } \] Input:

integrate(x*(a+b*arccosh(c*x))/(-c^2*d*x^2+d)^(3/2),x, algorithm="maxima")
 

Output:

b*(((c*sqrt(d)*x + sqrt(c*x + 1)*sqrt(c*x - 1)*sqrt(d))*log(c*x + sqrt(c*x 
 + 1)*sqrt(c*x - 1))/sqrt(-c*x + 1) + sqrt(c*x + 1)*sqrt(c*x - 1)*sqrt(d)/ 
sqrt(-c*x + 1))/(sqrt(c*x + 1)*c^3*d^2*x + (c*x + 1)*sqrt(c*x - 1)*c^2*d^2 
) - integrate((c^2*x^3 + c*x^2*e^(1/2*log(c*x + 1) + 1/2*log(c*x - 1)) - x 
)/(sqrt(-c*x + 1)*((c^2*d^(3/2)*x^2 - d^(3/2))*e^(3/2*log(c*x + 1) + log(c 
*x - 1)) + 2*(c^3*d^(3/2)*x^3 - c*d^(3/2)*x)*e^(log(c*x + 1) + 1/2*log(c*x 
 - 1)) + (c^4*d^(3/2)*x^4 - c^2*d^(3/2)*x^2)*sqrt(c*x + 1))), x)) + a/(sqr 
t(-c^2*d*x^2 + d)*c^2*d)
 

Giac [F]

\[ \int \frac {x (a+b \text {arccosh}(c x))}{\left (d-c^2 d x^2\right )^{3/2}} \, dx=\int { \frac {{\left (b \operatorname {arcosh}\left (c x\right ) + a\right )} x}{{\left (-c^{2} d x^{2} + d\right )}^{\frac {3}{2}}} \,d x } \] Input:

integrate(x*(a+b*arccosh(c*x))/(-c^2*d*x^2+d)^(3/2),x, algorithm="giac")
 

Output:

integrate((b*arccosh(c*x) + a)*x/(-c^2*d*x^2 + d)^(3/2), x)
 

Mupad [F(-1)]

Timed out. \[ \int \frac {x (a+b \text {arccosh}(c x))}{\left (d-c^2 d x^2\right )^{3/2}} \, dx=\int \frac {x\,\left (a+b\,\mathrm {acosh}\left (c\,x\right )\right )}{{\left (d-c^2\,d\,x^2\right )}^{3/2}} \,d x \] Input:

int((x*(a + b*acosh(c*x)))/(d - c^2*d*x^2)^(3/2),x)
 

Output:

int((x*(a + b*acosh(c*x)))/(d - c^2*d*x^2)^(3/2), x)
 

Reduce [F]

\[ \int \frac {x (a+b \text {arccosh}(c x))}{\left (d-c^2 d x^2\right )^{3/2}} \, dx=\frac {-\sqrt {-c^{2} x^{2}+1}\, \left (\int \frac {\mathit {acosh} \left (c x \right ) x}{\sqrt {-c^{2} x^{2}+1}\, c^{2} x^{2}-\sqrt {-c^{2} x^{2}+1}}d x \right ) b \,c^{2}+a}{\sqrt {d}\, \sqrt {-c^{2} x^{2}+1}\, c^{2} d} \] Input:

int(x*(a+b*acosh(c*x))/(-c^2*d*x^2+d)^(3/2),x)
                                                                                    
                                                                                    
 

Output:

( - sqrt( - c**2*x**2 + 1)*int((acosh(c*x)*x)/(sqrt( - c**2*x**2 + 1)*c**2 
*x**2 - sqrt( - c**2*x**2 + 1)),x)*b*c**2 + a)/(sqrt(d)*sqrt( - c**2*x**2 
+ 1)*c**2*d)