3.2.37 \(\int \frac {\tanh (x)}{a+b \tanh (x)} \, dx\) [137]

Optimal. Leaf size=39 \[ -\frac {b x}{a^2-b^2}+\frac {a \log (a \cosh (x)+b \sinh (x))}{a^2-b^2} \]

[Out]

-b*x/(a^2-b^2)+a*ln(a*cosh(x)+b*sinh(x))/(a^2-b^2)

________________________________________________________________________________________

Rubi [A]
time = 0.05, antiderivative size = 39, normalized size of antiderivative = 1.00, number of steps used = 2, number of rules used = 2, integrand size = 11, \(\frac {\text {number of rules}}{\text {integrand size}}\) = 0.182, Rules used = {3612, 3611} \begin {gather*} \frac {a \log (a \cosh (x)+b \sinh (x))}{a^2-b^2}-\frac {b x}{a^2-b^2} \end {gather*}

Antiderivative was successfully verified.

[In]

Int[Tanh[x]/(a + b*Tanh[x]),x]

[Out]

-((b*x)/(a^2 - b^2)) + (a*Log[a*Cosh[x] + b*Sinh[x]])/(a^2 - b^2)

Rule 3611

Int[((c_) + (d_.)*tan[(e_.) + (f_.)*(x_)])/((a_) + (b_.)*tan[(e_.) + (f_.)*(x_)]), x_Symbol] :> Simp[(c/(b*f))
*Log[RemoveContent[a*Cos[e + f*x] + b*Sin[e + f*x], x]], x] /; FreeQ[{a, b, c, d, e, f}, x] && NeQ[b*c - a*d,
0] && NeQ[a^2 + b^2, 0] && EqQ[a*c + b*d, 0]

Rule 3612

Int[((c_.) + (d_.)*tan[(e_.) + (f_.)*(x_)])/((a_.) + (b_.)*tan[(e_.) + (f_.)*(x_)]), x_Symbol] :> Simp[(a*c +
b*d)*(x/(a^2 + b^2)), x] + Dist[(b*c - a*d)/(a^2 + b^2), Int[(b - a*Tan[e + f*x])/(a + b*Tan[e + f*x]), x], x]
 /; FreeQ[{a, b, c, d, e, f}, x] && NeQ[b*c - a*d, 0] && NeQ[a^2 + b^2, 0] && NeQ[a*c + b*d, 0]

Rubi steps

\begin {align*} \int \frac {\tanh (x)}{a+b \tanh (x)} \, dx &=-\frac {b x}{a^2-b^2}+\frac {(i a) \int \frac {-i b-i a \tanh (x)}{a+b \tanh (x)} \, dx}{a^2-b^2}\\ &=-\frac {b x}{a^2-b^2}+\frac {a \log (a \cosh (x)+b \sinh (x))}{a^2-b^2}\\ \end {align*}

________________________________________________________________________________________

Mathematica [A]
time = 0.05, size = 29, normalized size = 0.74 \begin {gather*} \frac {-b x+a \log (a \cosh (x)+b \sinh (x))}{a^2-b^2} \end {gather*}

Antiderivative was successfully verified.

[In]

Integrate[Tanh[x]/(a + b*Tanh[x]),x]

[Out]

(-(b*x) + a*Log[a*Cosh[x] + b*Sinh[x]])/(a^2 - b^2)

________________________________________________________________________________________

Maple [A]
time = 0.25, size = 55, normalized size = 1.41

method result size
risch \(\frac {x}{a +b}-\frac {2 a x}{a^{2}-b^{2}}+\frac {a \ln \left ({\mathrm e}^{2 x}+\frac {a -b}{a +b}\right )}{a^{2}-b^{2}}\) \(54\)
derivativedivides \(-\frac {\ln \left (1+\tanh \left (x \right )\right )}{2 a -2 b}+\frac {a \ln \left (a +b \tanh \left (x \right )\right )}{\left (a +b \right ) \left (a -b \right )}-\frac {\ln \left (\tanh \left (x \right )-1\right )}{2 b +2 a}\) \(55\)
default \(-\frac {\ln \left (1+\tanh \left (x \right )\right )}{2 a -2 b}+\frac {a \ln \left (a +b \tanh \left (x \right )\right )}{\left (a +b \right ) \left (a -b \right )}-\frac {\ln \left (\tanh \left (x \right )-1\right )}{2 b +2 a}\) \(55\)

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(tanh(x)/(a+b*tanh(x)),x,method=_RETURNVERBOSE)

[Out]

-1/(2*a-2*b)*ln(1+tanh(x))+a/(a+b)/(a-b)*ln(a+b*tanh(x))-1/(2*b+2*a)*ln(tanh(x)-1)

________________________________________________________________________________________

Maxima [A]
time = 0.26, size = 40, normalized size = 1.03 \begin {gather*} \frac {a \log \left (-{\left (a - b\right )} e^{\left (-2 \, x\right )} - a - b\right )}{a^{2} - b^{2}} + \frac {x}{a + b} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

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

________________________________________________________________________________________

Fricas [A]
time = 0.34, size = 43, normalized size = 1.10 \begin {gather*} -\frac {{\left (a + b\right )} x - a \log \left (\frac {2 \, {\left (a \cosh \left (x\right ) + b \sinh \left (x\right )\right )}}{\cosh \left (x\right ) - \sinh \left (x\right )}\right )}{a^{2} - b^{2}} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

-((a + b)*x - a*log(2*(a*cosh(x) + b*sinh(x))/(cosh(x) - sinh(x))))/(a^2 - b^2)

________________________________________________________________________________________

Sympy [B] Leaf count of result is larger than twice the leaf count of optimal. 141 vs. \(2 (29) = 58\).
time = 0.27, size = 141, normalized size = 3.62 \begin {gather*} \begin {cases} \tilde {\infty } x & \text {for}\: a = 0 \wedge b = 0 \\\frac {x - \log {\left (\tanh {\left (x \right )} + 1 \right )}}{a} & \text {for}\: b = 0 \\\frac {x \tanh {\left (x \right )}}{2 b \tanh {\left (x \right )} - 2 b} - \frac {x}{2 b \tanh {\left (x \right )} - 2 b} + \frac {1}{2 b \tanh {\left (x \right )} - 2 b} & \text {for}\: a = - b \\\frac {x \tanh {\left (x \right )}}{2 b \tanh {\left (x \right )} + 2 b} + \frac {x}{2 b \tanh {\left (x \right )} + 2 b} + \frac {1}{2 b \tanh {\left (x \right )} + 2 b} & \text {for}\: a = b \\\frac {a x}{a^{2} - b^{2}} + \frac {a \log {\left (\frac {a}{b} + \tanh {\left (x \right )} \right )}}{a^{2} - b^{2}} - \frac {a \log {\left (\tanh {\left (x \right )} + 1 \right )}}{a^{2} - b^{2}} - \frac {b x}{a^{2} - b^{2}} & \text {otherwise} \end {cases} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(tanh(x)/(a+b*tanh(x)),x)

[Out]

Piecewise((zoo*x, Eq(a, 0) & Eq(b, 0)), ((x - log(tanh(x) + 1))/a, Eq(b, 0)), (x*tanh(x)/(2*b*tanh(x) - 2*b) -
 x/(2*b*tanh(x) - 2*b) + 1/(2*b*tanh(x) - 2*b), Eq(a, -b)), (x*tanh(x)/(2*b*tanh(x) + 2*b) + x/(2*b*tanh(x) +
2*b) + 1/(2*b*tanh(x) + 2*b), Eq(a, b)), (a*x/(a**2 - b**2) + a*log(a/b + tanh(x))/(a**2 - b**2) - a*log(tanh(
x) + 1)/(a**2 - b**2) - b*x/(a**2 - b**2), True))

________________________________________________________________________________________

Giac [A]
time = 0.42, size = 43, normalized size = 1.10 \begin {gather*} \frac {a \log \left ({\left | a e^{\left (2 \, x\right )} + b e^{\left (2 \, x\right )} + a - b \right |}\right )}{a^{2} - b^{2}} - \frac {x}{a - b} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

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

[Out]

a*log(abs(a*e^(2*x) + b*e^(2*x) + a - b))/(a^2 - b^2) - x/(a - b)

________________________________________________________________________________________

Mupad [B]
time = 1.06, size = 36, normalized size = 0.92 \begin {gather*} -\frac {b\,x-a\,\left (x-\ln \left (\mathrm {tanh}\left (x\right )+1\right )+\ln \left (a+b\,\mathrm {tanh}\left (x\right )\right )\right )}{a^2-b^2} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(tanh(x)/(a + b*tanh(x)),x)

[Out]

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

________________________________________________________________________________________