How do I expand this binomial with negative terms and real exponent?

547 Views Asked by At

I am trying to expand the following binomial with negative terms via the binomial theorem (note that $\Delta V$ is a very small quantity, that is $\Delta V \leq 1$): $$(V-\Delta V)^{\gamma}$$

For that, I rearranged it as: $$(-\Delta V+V)^{\gamma}$$

Now according to the theorem: \begin{eqnarray} (-\Delta V+V)^{\gamma}=\sum_{k=0}^{\infty}\binom \gamma k (-\Delta V)^{\gamma -k}V^k \end{eqnarray}

Now under the assumption that the above equation is correct, I expand $(-\Delta V+V)^{\gamma}$ as: $$\binom \gamma 0 (-\Delta V)^{\gamma}+ \binom \gamma 1 (- \Delta V)^{\gamma -1}\,V + \binom \gamma 2 (- \Delta V)^{\gamma -2}\, V^2 \ldots$$ \begin{eqnarray} 1 \cdot (-\Delta V)^{\gamma}+ \gamma \cdot (- \Delta V)^{\gamma -1}\,V + \frac{\gamma !}{2! (\gamma -2)!} (- \Delta V)^{\gamma -2}\, V^2 \ldots \end{eqnarray} As you can see from the above expression, I cannot simplify it any further and there is also the fact that it does not match the answer given in my text book. In my (physics) textbook it has been given as: $$(V- \Delta V)^{\gamma}=V^{\gamma}\left(1-\frac{\Delta V}{V}\right)^{\gamma}$$ Applying Binomial theorem $$V^{\gamma}\left(1-\frac{\Delta V}{V}\right)^{\gamma}=1- \gamma \frac{\Delta V}{V}+\text{negligible terms}$$ How was this achieved? I tried this above but why don't I get this answer? As a note, I know next to nothing about binomial expansion, especially with negative terms. I read a little about it from here but it was not very helpful: Binomial expansion of $(1-x)^n$

1

There are 1 best solutions below

4
On BEST ANSWER

For your second question, the problem is that, $\Delta V$ is small when compared to $V$, but $V$ may be huge.

When you expand $$(V - \Delta V)^\gamma = \binom{\gamma}{0} (-\Delta V)^\gamma + \binom{\gamma}{1} (-\Delta V)^{\gamma - 1} V + \binom{\gamma}{2} (-\Delta V)^{\gamma - 2} V^2 + \dots$$

You get all those terms of the form $(-\Delta V)^{\gamma - k} V^k$ which you don't know if they are big or small, so you cannot truncate the series at some point. As a result, this method simply doesn't work.

However, if you expand $$\left(1 - \frac{\Delta V}{V}\right)^\gamma = \binom{\gamma}{0} 1^\gamma + \binom{\gamma}{1} 1^{\gamma - 1} \frac{\Delta V}{V} + \binom{\gamma}{2} 1^{\gamma - 2} \left(\frac{\Delta V}{V}\right)^2 + \dots$$

Since $\Delta V$ is small when compared to $V$, $\frac{\Delta V}{V}$ is close to $0$. In particular, $\frac{\Delta V}{V} < 1$. So we have $\left(\frac{\Delta V}{V}\right)^k = o\left(\frac{\Delta V}{V}\right)$ as $\frac{\Delta V}{V} \to 0$ for any $k > 1$.

Hence $$\left(1 - \frac{\Delta V}{V}\right)^\gamma = \binom{\gamma}{0} 1^\gamma + \binom{\gamma}{1} 1^{\gamma - 1} \left(-\frac{\Delta V}{V}\right) + o\left(\frac{\Delta V}{V}\right)$$ which is what we want.

EDIT-1: Fix a sign error.