3.3.55 \(\int \sec (x) \tan ^2(x) \, dx\) [255]

Optimal. Leaf size=16 \[ -\frac {1}{2} \tanh ^{-1}(\sin (x))+\frac {1}{2} \sec (x) \tan (x) \]

[Out]

-1/2*arctanh(sin(x))+1/2*sec(x)*tan(x)

________________________________________________________________________________________

Rubi [A]
time = 0.01, antiderivative size = 16, normalized size of antiderivative = 1.00, number of steps used = 2, number of rules used = 2, integrand size = 7, \(\frac {\text {number of rules}}{\text {integrand size}}\) = 0.286, Rules used = {2691, 3855} \begin {gather*} \frac {1}{2} \tan (x) \sec (x)-\frac {1}{2} \tanh ^{-1}(\sin (x)) \end {gather*}

Antiderivative was successfully verified.

[In]

Int[Sec[x]*Tan[x]^2,x]

[Out]

-1/2*ArcTanh[Sin[x]] + (Sec[x]*Tan[x])/2

Rule 2691

Int[((a_.)*sec[(e_.) + (f_.)*(x_)])^(m_.)*((b_.)*tan[(e_.) + (f_.)*(x_)])^(n_), x_Symbol] :> Simp[b*(a*Sec[e +
 f*x])^m*((b*Tan[e + f*x])^(n - 1)/(f*(m + n - 1))), x] - Dist[b^2*((n - 1)/(m + n - 1)), Int[(a*Sec[e + f*x])
^m*(b*Tan[e + f*x])^(n - 2), x], x] /; FreeQ[{a, b, e, f, m}, x] && GtQ[n, 1] && NeQ[m + n - 1, 0] && Integers
Q[2*m, 2*n]

Rule 3855

Int[csc[(c_.) + (d_.)*(x_)], x_Symbol] :> Simp[-ArcTanh[Cos[c + d*x]]/d, x] /; FreeQ[{c, d}, x]

Rubi steps

\begin {align*} \int \sec (x) \tan ^2(x) \, dx &=\frac {1}{2} \sec (x) \tan (x)-\frac {1}{2} \int \sec (x) \, dx\\ &=-\frac {1}{2} \tanh ^{-1}(\sin (x))+\frac {1}{2} \sec (x) \tan (x)\\ \end {align*}

________________________________________________________________________________________

Mathematica [A]
time = 0.01, size = 16, normalized size = 1.00 \begin {gather*} -\frac {1}{2} \tanh ^{-1}(\sin (x))+\frac {1}{2} \sec (x) \tan (x) \end {gather*}

Antiderivative was successfully verified.

[In]

Integrate[Sec[x]*Tan[x]^2,x]

[Out]

-1/2*ArcTanh[Sin[x]] + (Sec[x]*Tan[x])/2

________________________________________________________________________________________

Maple [A]
time = 0.02, size = 24, normalized size = 1.50

method result size
default \(\frac {\sin ^{3}\left (x \right )}{2 \cos \left (x \right )^{2}}+\frac {\sin \left (x \right )}{2}-\frac {\ln \left (\sec \left (x \right )+\tan \left (x \right )\right )}{2}\) \(24\)
risch \(-\frac {i \left ({\mathrm e}^{3 i x}-{\mathrm e}^{i x}\right )}{\left ({\mathrm e}^{2 i x}+1\right )^{2}}-\frac {\ln \left ({\mathrm e}^{i x}+i\right )}{2}+\frac {\ln \left ({\mathrm e}^{i x}-i\right )}{2}\) \(49\)

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(sec(x)*tan(x)^2,x,method=_RETURNVERBOSE)

[Out]

1/2*sin(x)^3/cos(x)^2+1/2*sin(x)-1/2*ln(sec(x)+tan(x))

________________________________________________________________________________________

Maxima [B] Leaf count of result is larger than twice the leaf count of optimal. 27 vs. \(2 (12) = 24\).
time = 4.42, size = 27, normalized size = 1.69 \begin {gather*} -\frac {\sin \left (x\right )}{2 \, {\left (\sin \left (x\right )^{2} - 1\right )}} - \frac {1}{4} \, \log \left (\sin \left (x\right ) + 1\right ) + \frac {1}{4} \, \log \left (\sin \left (x\right ) - 1\right ) \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(sec(x)*tan(x)^2,x, algorithm="maxima")

[Out]

-1/2*sin(x)/(sin(x)^2 - 1) - 1/4*log(sin(x) + 1) + 1/4*log(sin(x) - 1)

________________________________________________________________________________________

Fricas [B] Leaf count of result is larger than twice the leaf count of optimal. 34 vs. \(2 (12) = 24\).
time = 0.51, size = 34, normalized size = 2.12 \begin {gather*} -\frac {\cos \left (x\right )^{2} \log \left (\sin \left (x\right ) + 1\right ) - \cos \left (x\right )^{2} \log \left (-\sin \left (x\right ) + 1\right ) - 2 \, \sin \left (x\right )}{4 \, \cos \left (x\right )^{2}} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(sec(x)*tan(x)^2,x, algorithm="fricas")

[Out]

-1/4*(cos(x)^2*log(sin(x) + 1) - cos(x)^2*log(-sin(x) + 1) - 2*sin(x))/cos(x)^2

________________________________________________________________________________________

Sympy [A]
time = 0.04, size = 27, normalized size = 1.69 \begin {gather*} \frac {\log {\left (\sin {\left (x \right )} - 1 \right )}}{4} - \frac {\log {\left (\sin {\left (x \right )} + 1 \right )}}{4} - \frac {\sin {\left (x \right )}}{2 \sin ^{2}{\left (x \right )} - 2} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(sec(x)*tan(x)**2,x)

[Out]

log(sin(x) - 1)/4 - log(sin(x) + 1)/4 - sin(x)/(2*sin(x)**2 - 2)

________________________________________________________________________________________

Giac [B] Leaf count of result is larger than twice the leaf count of optimal. 29 vs. \(2 (12) = 24\).
time = 0.46, size = 29, normalized size = 1.81 \begin {gather*} -\frac {\sin \left (x\right )}{2 \, {\left (\sin \left (x\right )^{2} - 1\right )}} - \frac {1}{4} \, \log \left (\sin \left (x\right ) + 1\right ) + \frac {1}{4} \, \log \left (-\sin \left (x\right ) + 1\right ) \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(sec(x)*tan(x)^2,x, algorithm="giac")

[Out]

-1/2*sin(x)/(sin(x)^2 - 1) - 1/4*log(sin(x) + 1) + 1/4*log(-sin(x) + 1)

________________________________________________________________________________________

Mupad [B]
time = 0.00, size = 30, normalized size = 1.88 \begin {gather*} \frac {{\mathrm {tan}\left (\frac {x}{2}\right )}^3+\mathrm {tan}\left (\frac {x}{2}\right )}{{\left ({\mathrm {tan}\left (\frac {x}{2}\right )}^2-1\right )}^2}-\mathrm {atanh}\left (\mathrm {tan}\left (\frac {x}{2}\right )\right ) \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(tan(x)^2/cos(x),x)

[Out]

(tan(x/2) + tan(x/2)^3)/(tan(x/2)^2 - 1)^2 - atanh(tan(x/2))

________________________________________________________________________________________