How do I use partial fractions for the expression $\dfrac{t+1}{2\sqrt{t}(t-1)}$? Because I have to find the integral of it... Thank you
2026-03-29 23:45:22.1774827922
On
Partial fractions for $\frac{t+1}{2\sqrt{t}(t-1)}$
572 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
4
There are 4 best solutions below
0
On
We can easily do the fraction as you said, but I suggest to set $\sqrt{t}=u$ first and then think about the converted integral. Indeed, you will get the following integral instead after changing the variables:
$$\int \frac{t+1}{2\sqrt{t}(t-1)}dt\longrightarrow \int\frac{u^2+1}{2u(u^2-1)}\times 2u\,du$$
Your given integrand isn't a rational function (yet) to use partial fractions, we must first obtain a ratio of polynomials. We can do this by substituting $u = \sqrt t$.
$$u = \sqrt t \implies t = u^2 \implies dt = 2u\,du$$
Now, substituting the above into our original integral gives us:
$$\int \frac{t+1}{2\sqrt{t}(t-1)}\,dt = \int \frac{u^2 + 1}{2u(u^2 - 1)}\,(2u\,du) =\int \dfrac {u^2 + 1}{u^2 - 1}\,du$$
Now, polynomial division, followed by "partial fractions" gives us: $$\int \left(1 + \dfrac {1}{u^2 - 1}\right)\,du = \int \left(1 + \dfrac {1}{(u-1)(u+1)}\right)\,du = \int \left(1 + \dfrac{A}{u - 1} + \dfrac B{u + 1} \right) \,du$$
Now we solve for $A, B$:
$A(u+1) + B(u - 1) = 2 \iff Au + A + Bu - B = 2 \iff (A + B)u + (A - B) = 2$
$A + B = 0$
$A - B = 2$
Adding the equations gives us $2A = 2 \iff A = 1 \implies B = -1$ and we'll have a result of the form $$u + A\ln|u-1| + B\ln |u+1| + \text{Constant}$$ $$ = \sqrt t +\ln|\sqrt t - 1| - \ln |\sqrt t + 1| + \text{Constant} $$ $$ = \sqrt t+ \ln\left|\dfrac{\sqrt t - 1}{\sqrt t+1}\right| + C$$