3.242 \(\int \log (\frac {1}{13+x}) \, dx\)

Optimal. Leaf size=12 \[ x+(x+13) \log \left (\frac {1}{x+13}\right ) \]

[Out]

x+(13+x)*ln(1/(13+x))

________________________________________________________________________________________

Rubi [A]  time = 0.00, antiderivative size = 12, normalized size of antiderivative = 1.00, number of steps used = 2, number of rules used = 2, integrand size = 6, \(\frac {\text {number of rules}}{\text {integrand size}}\) = 0.333, Rules used = {2389, 2295} \[ x+(x+13) \log \left (\frac {1}{x+13}\right ) \]

Antiderivative was successfully verified.

[In]

Int[Log[(13 + x)^(-1)],x]

[Out]

x + (13 + x)*Log[(13 + x)^(-1)]

Rule 2295

Int[Log[(c_.)*(x_)^(n_.)], x_Symbol] :> Simp[x*Log[c*x^n], x] - Simp[n*x, x] /; FreeQ[{c, n}, x]

Rule 2389

Int[((a_.) + Log[(c_.)*((d_) + (e_.)*(x_))^(n_.)]*(b_.))^(p_.), x_Symbol] :> Dist[1/e, Subst[Int[(a + b*Log[c*
x^n])^p, x], x, d + e*x], x] /; FreeQ[{a, b, c, d, e, n, p}, x]

Rubi steps

\begin {align*} \int \log \left (\frac {1}{13+x}\right ) \, dx &=\operatorname {Subst}\left (\int \log \left (\frac {1}{x}\right ) \, dx,x,13+x\right )\\ &=x+(13+x) \log \left (\frac {1}{13+x}\right )\\ \end {align*}

________________________________________________________________________________________

Mathematica [A]  time = 0.00, size = 12, normalized size = 1.00 \[ x+(x+13) \log \left (\frac {1}{x+13}\right ) \]

Antiderivative was successfully verified.

[In]

Integrate[Log[(13 + x)^(-1)],x]

[Out]

x + (13 + x)*Log[(13 + x)^(-1)]

________________________________________________________________________________________

fricas [A]  time = 0.43, size = 12, normalized size = 1.00 \[ {\left (x + 13\right )} \log \left (\frac {1}{x + 13}\right ) + x \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(log(1/(13+x)),x, algorithm="fricas")

[Out]

(x + 13)*log(1/(x + 13)) + x

________________________________________________________________________________________

giac [A]  time = 0.17, size = 12, normalized size = 1.00 \[ -{\left (x + 13\right )} \log \left (x + 13\right ) + x + 13 \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(log(1/(13+x)),x, algorithm="giac")

[Out]

-(x + 13)*log(x + 13) + x + 13

________________________________________________________________________________________

maple [A]  time = 0.07, size = 14, normalized size = 1.17 \[ x +\left (x +13\right ) \ln \left (\frac {1}{x +13}\right )+13 \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(ln(1/(13+x)),x)

[Out]

(13+x)*ln(1/(13+x))+13+x

________________________________________________________________________________________

maxima [A]  time = 0.61, size = 12, normalized size = 1.00 \[ -{\left (x + 13\right )} \log \left (x + 13\right ) + x + 13 \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(log(1/(13+x)),x, algorithm="maxima")

[Out]

-(x + 13)*log(x + 13) + x + 13

________________________________________________________________________________________

mupad [B]  time = 0.05, size = 12, normalized size = 1.00 \[ \left (\ln \left (\frac {1}{x+13}\right )+1\right )\,\left (x+13\right ) \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(log(1/(x + 13)),x)

[Out]

(log(1/(x + 13)) + 1)*(x + 13)

________________________________________________________________________________________

sympy [A]  time = 0.11, size = 15, normalized size = 1.25 \[ x \log {\left (\frac {1}{x + 13} \right )} + x - 13 \log {\left (x + 13 \right )} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(ln(1/(13+x)),x)

[Out]

x*log(1/(x + 13)) + x - 13*log(x + 13)

________________________________________________________________________________________