3.170 \(\int \cot ^{-1}(\cot (a+b x)) \, dx\)

Optimal. Leaf size=16 \[ \frac {\cot ^{-1}(\cot (a+b x))^2}{2 b} \]

[Out]

1/2*arccot(cot(b*x+a))^2/b

________________________________________________________________________________________

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 = {2157, 30} \[ \frac {\cot ^{-1}(\cot (a+b x))^2}{2 b} \]

Antiderivative was successfully verified.

[In]

Int[ArcCot[Cot[a + b*x]],x]

[Out]

ArcCot[Cot[a + b*x]]^2/(2*b)

Rule 30

Int[(x_)^(m_.), x_Symbol] :> Simp[x^(m + 1)/(m + 1), x] /; FreeQ[m, x] && NeQ[m, -1]

Rule 2157

Int[(u_)^(m_.), x_Symbol] :> With[{c = Simplify[D[u, x]]}, Dist[1/c, Subst[Int[x^m, x], x, u], x]] /; FreeQ[m,
 x] && PiecewiseLinearQ[u, x]

Rubi steps

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

________________________________________________________________________________________

Mathematica [A]  time = 0.01, size = 18, normalized size = 1.12 \[ x \cot ^{-1}(\cot (a+b x))-\frac {b x^2}{2} \]

Antiderivative was successfully verified.

[In]

Integrate[ArcCot[Cot[a + b*x]],x]

[Out]

-1/2*(b*x^2) + x*ArcCot[Cot[a + b*x]]

________________________________________________________________________________________

fricas [A]  time = 0.63, size = 10, normalized size = 0.62 \[ \frac {1}{2} x^{2} b + x a \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

1/2*x^2*b + x*a

________________________________________________________________________________________

giac [A]  time = 0.12, size = 10, normalized size = 0.62 \[ \frac {1}{2} \, b x^{2} + a x \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

1/2*b*x^2 + a*x

________________________________________________________________________________________

maple [B]  time = 0.05, size = 45, normalized size = 2.81 \[ \frac {-\left (\frac {\pi }{2}-\mathrm {arccot}\left (\cot \left (b x +a \right )\right )\right ) \mathrm {arccot}\left (\cot \left (b x +a \right )\right )-\frac {\left (\frac {\pi }{2}-\mathrm {arccot}\left (\cot \left (b x +a \right )\right )\right )^{2}}{2}}{b} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(arccot(cot(b*x+a)),x)

[Out]

1/b*(-(1/2*Pi-arccot(cot(b*x+a)))*arccot(cot(b*x+a))-1/2*(1/2*Pi-arccot(cot(b*x+a)))^2)

________________________________________________________________________________________

maxima [A]  time = 0.32, size = 10, normalized size = 0.62 \[ \frac {1}{2} \, b x^{2} + a x \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

1/2*b*x^2 + a*x

________________________________________________________________________________________

mupad [B]  time = 0.64, size = 16, normalized size = 1.00 \[ x\,\mathrm {acot}\left (\mathrm {cot}\left (a+b\,x\right )\right )-\frac {b\,x^2}{2} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(acot(cot(a + b*x)),x)

[Out]

x*acot(cot(a + b*x)) - (b*x^2)/2

________________________________________________________________________________________

sympy [A]  time = 0.12, size = 19, normalized size = 1.19 \[ \begin {cases} \frac {\operatorname {acot}^{2}{\left (\cot {\left (a + b x \right )} \right )}}{2 b} & \text {for}\: b \neq 0 \\x \operatorname {acot}{\left (\cot {\relax (a )} \right )} & \text {otherwise} \end {cases} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(acot(cot(b*x+a)),x)

[Out]

Piecewise((acot(cot(a + b*x))**2/(2*b), Ne(b, 0)), (x*acot(cot(a)), True))

________________________________________________________________________________________