2

How do I show that \begin{align} \sum_{n=1}^\infty nz^{n-1} = \sum_{n=0}^{\infty} (n+1)z^n \end{align} (This is a result of differentiating $\sum_{n=1}^{\infty} z^n$ with respect to the variable $z$.)

Cookie
  • 13,532
  • 3
    change the dummy variable $m\to n+1$. Write out the first several terms you can see that they are the same. –  Mar 06 '14 at 09:43
  • Ahh they are both $1 +2z + 3z^2 + 4z^3 + \cdots$. – Cookie Mar 06 '14 at 09:52
  • You can deterministically know that the new summation should start at $0$ after replacing $n$ by $n+1$ in the summand. If it is not intuitive, you just have to make the same substitution down in the lower limit (and also in the upper limit.) – 2'5 9'2 Mar 24 '14 at 07:12

1 Answers1

1

Replace every instance of $n$ with $n+1$. When you write $$\sum_{n=1}^{M}$$ you really mean something like $$\sum_{n=1}^{n=M}$$ So you have something like $$\sum_{n=1}^{n=\infty}n\,z^{n-1}$$ and if we replace every instance of $n$ with $n+1$: $$\sum_{n+1=1}^{n+1=\infty}(n+1)\,z^{(n+1)-1}$$ which simplifies to $$\sum_{n=0}^{n=\infty}(n+1)\,z^{n}$$ (This is very similar to doing $u$-substitution on a definite integral with a shift ($x=u+c$) and also adjusting the limits of integration.)

2'5 9'2
  • 54,717