3.27 \(\int \sqrt {\text {sech}^2(a+b x)} \, dx\)

Optimal. Leaf size=11 \[ \frac {\sin ^{-1}(\tanh (a+b x))}{b} \]

[Out]

arcsin(tanh(b*x+a))/b

________________________________________________________________________________________

Rubi [A]  time = 0.01, antiderivative size = 11, normalized size of antiderivative = 1.00, number of steps used = 2, number of rules used = 2, integrand size = 12, \(\frac {\text {number of rules}}{\text {integrand size}}\) = 0.167, Rules used = {4122, 216} \[ \frac {\sin ^{-1}(\tanh (a+b x))}{b} \]

Antiderivative was successfully verified.

[In]

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

[Out]

ArcSin[Tanh[a + b*x]]/b

Rule 216

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

Rule 4122

Int[((b_.)*sec[(e_.) + (f_.)*(x_)]^2)^(p_), x_Symbol] :> With[{ff = FreeFactors[Tan[e + f*x], x]}, Dist[(b*ff)
/f, Subst[Int[(b + b*ff^2*x^2)^(p - 1), x], x, Tan[e + f*x]/ff], x]] /; FreeQ[{b, e, f, p}, x] &&  !IntegerQ[p
]

Rubi steps

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

________________________________________________________________________________________

Mathematica [B]  time = 0.02, size = 29, normalized size = 2.64 \[ \frac {\cosh (a+b x) \sqrt {\text {sech}^2(a+b x)} \tan ^{-1}(\sinh (a+b x))}{b} \]

Antiderivative was successfully verified.

[In]

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

[Out]

(ArcTan[Sinh[a + b*x]]*Cosh[a + b*x]*Sqrt[Sech[a + b*x]^2])/b

________________________________________________________________________________________

fricas [A]  time = 0.38, size = 19, normalized size = 1.73 \[ \frac {2 \, \arctan \left (\cosh \left (b x + a\right ) + \sinh \left (b x + a\right )\right )}{b} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

2*arctan(cosh(b*x + a) + sinh(b*x + a))/b

________________________________________________________________________________________

giac [A]  time = 0.13, size = 12, normalized size = 1.09 \[ \frac {2 \, \arctan \left (e^{\left (b x + a\right )}\right )}{b} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

2*arctan(e^(b*x + a))/b

________________________________________________________________________________________

maple [C]  time = 0.43, size = 130, normalized size = 11.82 \[ \frac {i \ln \left ({\mathrm e}^{b x}+i {\mathrm e}^{-a}\right ) \sqrt {\frac {{\mathrm e}^{2 b x +2 a}}{\left (1+{\mathrm e}^{2 b x +2 a}\right )^{2}}}\, \left (1+{\mathrm e}^{2 b x +2 a}\right ) {\mathrm e}^{-b x -a}}{b}-\frac {i \ln \left ({\mathrm e}^{b x}-i {\mathrm e}^{-a}\right ) \sqrt {\frac {{\mathrm e}^{2 b x +2 a}}{\left (1+{\mathrm e}^{2 b x +2 a}\right )^{2}}}\, \left (1+{\mathrm e}^{2 b x +2 a}\right ) {\mathrm e}^{-b x -a}}{b} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

I*ln(exp(b*x)+I*exp(-a))/b*(1+exp(2*b*x+2*a))*(1/(1+exp(2*b*x+2*a))^2*exp(2*b*x+2*a))^(1/2)*exp(-b*x-a)-I*ln(e
xp(b*x)-I*exp(-a))/b*(1+exp(2*b*x+2*a))*(1/(1+exp(2*b*x+2*a))^2*exp(2*b*x+2*a))^(1/2)*exp(-b*x-a)

________________________________________________________________________________________

maxima [A]  time = 0.32, size = 11, normalized size = 1.00 \[ \frac {\arctan \left (\sinh \left (b x + a\right )\right )}{b} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

arctan(sinh(b*x + a))/b

________________________________________________________________________________________

mupad [F]  time = 0.00, size = -1, normalized size = -0.09 \[ \int \sqrt {\frac {1}{{\mathrm {cosh}\left (a+b\,x\right )}^2}} \,d x \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

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

________________________________________________________________________________________

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

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

Integral(sqrt(sech(a + b*x)**2), x)

________________________________________________________________________________________