There is a couple of limits that I failed to find:
$$\lim_{n\to\infty}\frac 1 2 + \frac 1 4 + \frac 1 {8} + \cdots + \frac {1}{2^{n}}$$
and
$$\lim_{n\to\infty}1 - \frac 1 3 + \frac 1 9 - \frac 1 {27} + \cdots + \frac {(-1)^{n-1}}{3^{n-1}}$$
There is no problem to calculate a limit using Wolfram Alfa or something like that. But what I am interested in is the method, not just a concrete result.
So my questions are:
- What should I do when I need a limit of infinite sum? (are there any rules of thumb?)
- What theorems or topics from calculus should I know to solve these problems better?
I am new to math and will appreciate any help. Thank you!
$$\color{red}{1+}\frac 1 2 + \frac 1 4 + \frac 1 {8} + \ldots + \frac {1}{2^{n}}$$ Is an example of $$1+x+x^2+x^3+\ldots+x^n$$ Where the ratio between a number $a_n$ and the previous $a_{n-1}$ is constant and is $x$. This is the sum of a geometric progression and it's quite easy to see that its value is $$\frac{1-x^{n+1}}{1-x}$$ When $n\to\infty$ the sum converges only if $|x|<1$ because if so $x^{n+1}\to 0$ and the sum is $$\sum_{n=0}^{\infty}x^n=\frac{1}{1-x}$$ In your first example $x=\frac12$ and index $n$ starts from $n=1$ so the sum is $$\sum_{n=1}^{\infty}\left(\frac12\right)^n=\frac{1}{1-\frac12}-1=\color{red}{1}$$ The second one is $$\lim_{n\to\infty}1 - \frac 1 3 + \frac 1 9 - \frac 1 {27} + \cdots + \frac {(-1)^{n}}{3^{n}}=\sum_{n=0}^{\infty}\left(-\frac13\right)^n=\frac{1}{1-\left(-\frac13\right)}=\color{red}{\frac34}$$
Hope this is useful