3.109 \(\int \tan (a+b x) \, dx\)

Optimal. Leaf size=12 \[ -\frac {\log (\cos (a+b x))}{b} \]

[Out]

-ln(cos(b*x+a))/b

________________________________________________________________________________________

Rubi [A]  time = 0.00, antiderivative size = 12, normalized size of antiderivative = 1.00, number of steps used = 1, number of rules used = 1, integrand size = 6, \(\frac {\text {number of rules}}{\text {integrand size}}\) = 0.167, Rules used = {3475} \[ -\frac {\log (\cos (a+b x))}{b} \]

Antiderivative was successfully verified.

[In]

Int[Tan[a + b*x],x]

[Out]

-(Log[Cos[a + b*x]]/b)

Rule 3475

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

Rubi steps

\begin {align*} \int \tan (a+b x) \, dx &=-\frac {\log (\cos (a+b x))}{b}\\ \end {align*}

________________________________________________________________________________________

Mathematica [A]  time = 0.01, size = 12, normalized size = 1.00 \[ -\frac {\log (\cos (a+b x))}{b} \]

Antiderivative was successfully verified.

[In]

Integrate[Tan[a + b*x],x]

[Out]

-(Log[Cos[a + b*x]]/b)

________________________________________________________________________________________

fricas [A]  time = 0.45, size = 18, normalized size = 1.50 \[ -\frac {\log \left (\frac {1}{\tan \left (b x + a\right )^{2} + 1}\right )}{2 \, b} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

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

________________________________________________________________________________________

giac [A]  time = 1.23, size = 13, normalized size = 1.08 \[ -\frac {\log \left ({\left | \cos \left (b x + a\right ) \right |}\right )}{b} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

-log(abs(cos(b*x + a)))/b

________________________________________________________________________________________

maple [A]  time = 0.00, size = 17, normalized size = 1.42 \[ \frac {\ln \left (\tan ^{2}\left (b x +a \right )+1\right )}{2 b} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(tan(b*x+a),x)

[Out]

1/2/b*ln(1+tan(b*x+a)^2)

________________________________________________________________________________________

maxima [A]  time = 0.42, size = 11, normalized size = 0.92 \[ \frac {\log \left (\sec \left (b x + a\right )\right )}{b} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

log(sec(b*x + a))/b

________________________________________________________________________________________

mupad [B]  time = 0.23, size = 16, normalized size = 1.33 \[ \frac {\ln \left ({\mathrm {tan}\left (a+b\,x\right )}^2+1\right )}{2\,b} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(tan(a + b*x),x)

[Out]

log(tan(a + b*x)^2 + 1)/(2*b)

________________________________________________________________________________________

sympy [A]  time = 0.13, size = 19, normalized size = 1.58 \[ \begin {cases} \frac {\log {\left (\tan ^{2}{\left (a + b x \right )} + 1 \right )}}{2 b} & \text {for}\: b \neq 0 \\x \tan {\relax (a )} & \text {otherwise} \end {cases} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(tan(b*x+a),x)

[Out]

Piecewise((log(tan(a + b*x)**2 + 1)/(2*b), Ne(b, 0)), (x*tan(a), True))

________________________________________________________________________________________