0

$\frac{n}{a^n}=T_n$
So $\frac1a+\frac2{a^2}+...\infty=S_\infty$
Multiply $S_\infty$ by $\frac1a$.
$\frac1aS_\infty=\frac1{a^2}+\frac2{a^3}+...\infty$
$S_\infty-\frac1aS_\infty=\frac1a+\frac1{a^2}+...\infty$
$S_\infty=\frac{\frac1a}{1-\frac1a}\frac{a}{a-1}$
$S_\infty=\frac a{(a-1)^2}$
Is it right? And I cant quite figure out for the limited sum (till $n$). Please show how.
Edit: $x$ doesn't exist in the interval $[-1,1]$

  • The final result is correct, but you should be a bit careful when calculating series. Do you have any condition on $a$ (you should)? – mickep Aug 12 '15 at 11:19
  • Obviously, it would be bigger than 1. – Aditya Agarwal Aug 12 '15 at 11:23
  • 3
    A few related questions: http://math.stackexchange.com/questions/87030/proof-by-induction-sum-limits-i-0n-i-2i-1-n1-2n-1 http://math.stackexchange.com/questions/11464/how-to-compute-the-formula-sum-r-1d-r-cdot-2r http://math.stackexchange.com/questions/90637/what-is-the-limit-of-sum-limits-n-1-inftyn2-3n http://math.stackexchange.com/questions/30732/how-can-i-evaluate-sum-n-0-infty-n1xn – Martin Sleziak Aug 12 '15 at 12:40

3 Answers3

2

Your derivation is correct if you have proven that the series is in the first place convergent. If not, then $S_\infty$ does not even exist and you cannot reason about its value. For now, let us ignore this issue.

To get the sum of the first $n$ terms, just do exactly the same technique.

$S_n = \frac{1}{a} + \frac{2}{a^2} + \cdots + \frac{n}{a^n}$.

$\frac{1}{a} S_n = \frac{1}{a^2} + \frac{2}{a^3} + \cdots + \frac{n}{a^{n+1}}$.

$S_n - \frac{1}{a} S_n = ( \frac{1}{a} + \frac{1}{a^2} + \cdots + \frac{1}{a^n} ) - \frac{n}{a^{n+1}}$.

[You should know how to simplify the right-hand side and hence get the answer.]

Note that this technique does not face the same convergence issues because it is a finite sum. You can use the result you get for the finite sum and see what is the limit as $n \to \infty$, in order to avoid convergence issues in your original method for the infinite sum.

user21820
  • 57,693
  • 9
  • 98
  • 256
1

For finite $N$, consider $$\sum_{n=1}^Nne^{sn} = \frac{\partial}{\partial s} \sum_{n=1}^N e^{sn} =\frac{\partial}{\partial s}e^s\frac{1-e^{sN}}{1-e^s} $$

by putting $s=-\ln a$, you will recover your series.

mastrok
  • 1,455
  • 8
  • 21
0

If I am understanding you correctly, you are wishing to find the closed form of the sum $$ \sum_{n=1}^\infty nx^n$$ Your derivation is incorrect for all $x \geq 1$. To see this in your notation note that $$ S_N = \sum_{n=1}^N nx^n \geq \sum_{n=1}^N n \to \infty, \ N \to \infty$$ Then the "computation" you have done is invalid, because you are multiplying by a number that does not exist! However with $|x| < 1$ your derivation is correct. If you are interested in a more rigorous analysis I suggest differentiating the geometric series $$ \sum_{n=1}^\infty x^n$$ and nothing that for each term $$ \frac{d}{dx} x^n = nx^{n-1}$$ I am sure you can google what I just suggested, as this question has been asked extensively on the internet and on mathstack in particular!

  • Your so-called more rigorous analysis is in fact not rigorous, since you didn't mention that you made use of a high-power theorem that allows termwise differentiation of a power series. There is completely no need to invoke any real analysis at all, which is not only redundant but also not general. See my answer which shows how to derive the formula for the finite sum that works in any field and not just for $\mathbb{R}$. – user21820 Aug 12 '15 at 11:29