1

I am having trouble with this problem. I need to integrate: $$\frac1{T^4}\times \frac1{K-T}$$ with respect to $T$. If I do PFD:

$$\frac{A}{T^4} + \frac{B}{T^3} + \frac{C}{T^2} +\frac{D}{T} + \frac{E}{K-T}$$

Does this look right?

From here, I am having trouble solving for the coeffs. Can someone help me figure out the method for solving for these coeffs? If I multiply left side denominator across, I just get $1 =$ "a bunch of stuff"

Any help?

Joao
  • 1,390
Jackson Hart
  • 1,600

2 Answers2

1

Bring the expression to the common denominator $T^4(K-T)$. The numerator is then $$A(K-T)+BT(K-T)+CT^2(K-T)+DT^3(K-T)+ET^4.\tag{1}$$ This is identically equal to $1$. Set $T=0$ in (1). We get $AK=1$, so $A=\frac{1}{K}$. Set $T=K$. We get $EK^4=1$, so $E=\frac{1}{K^4}$.

These were the easiest ones. Now we could expand (1), and find $B,C,D$ by comparing coefficients. Or else we can scan Expression (1). Note that the coefficient of $T$ is $-A+BK$. This is $0$, and we know that $A=\frac{1}{K}$. It follows that $B=\frac{1}{K^2}$. The coefficient of $T^2$ is $-B+CK$. This is $0$, so $C=\frac{1}{K^3}$. One more to go!

André Nicolas
  • 507,029
  • Can you tell me the justification for setting T=0? How does this give us a coefficient? T might not be 0 right? – Jackson Hart Oct 01 '14 at 04:30
  • The polynomial (1) is identically equal to $1$. That means that when we expand, the coefficient of $T^4$ will be $0$, and so on, down to the constant term, which will be $1$. However, there is a very useful trick that in many cases makes expanding unnecessary. The polynomial (1), call it $P(T)$, is identically equal to $1$. So if we set $T=0$ (or $17$) the result will be $1$. Setting $T=0$ immediately tells us what $A$ is. Setting $T=K$ similarly makes almost everything disappear, and we find $E$. Variants of this trick will be very useful to you in other partial fractions problems. – André Nicolas Oct 01 '14 at 04:37
  • To take derivatve, can I also use PFD? – Jackson Hart Oct 01 '14 at 05:07
  • I thought you wanted to integrate. To find the derivative of $\frac{1}{N^4(K-N)}$ you could certainly find the partial fraction decomposition, and then differentiate term by term. But as you saw, finding the partial fraction decomposition takes a while, and finding the derivative of $\frac{1}{N^4(K-N)}$ is easy just using the Quotient Rule, or the Chain Rule, so for the derivative it is not worthwhile to find the PFD. – André Nicolas Oct 01 '14 at 05:11
1

\begin{align*} \frac1{T^4(K-T)} &= \frac{A}{T^4} + \frac{B}{T^3} + \frac{C}{T^2} +\frac{D}{T} + \frac{E}{K-T} \\ 1 &= (K-T)A + T(K-T)B + T^2(K-T)C + T^3(K-T)D + T^4E \\ \text{Now equate coefficients} \\ \text{(Unity)} \qquad 1 &= KA \implies A=\tfrac1K \\ (T) \qquad 0 &=-A+KB \implies B = \tfrac1{K^2} \\ (T^2) \qquad 0 &= -B + KC \implies C= \tfrac1{K^3} \\ (T^3) \qquad0 &= -C + KD \implies D = \tfrac1{K^4} \\ (T^4) \qquad0 &= -D + E \implies E = \tfrac1{K^4}\\[12pt] \frac1{T^4(K-T)} &= \frac{1}{KT^4} + \frac{1}{K^2T^3} + \frac{1}{K^3T^2} +\frac{1}{K^4T} + \frac{1}{K^4(K-T)} \\\end{align*}

user164587
  • 1,509