I was given a problem of testing sequence convergence. The sequence is defined as:
$$x_n= (1+\frac{1}{2})(1+\frac{1}{4})\cdots(1+\frac{1}{2^n})$$ My first idea was to define $y_n$ as follows: $$y_n = \log{x_n} = \log{(1+\frac{1}{2})}+\log{(1+\frac{1}{4})}+\cdots+\log{(1+\frac{1}{2^n})} $$ Then, out of few methods i know for proving convergence, i decided to use the Cauchy's criteria i.e. for some sufficiently large natural numbers $n$ and $p$ such that $p \gt n$, we have (from triangle inequality $|y+x| \le |y|+|x| $):
$$| y_{n+p} - y_n |= | \log{(1+\frac{1}{2^{n+1}})} |+ | \log{(1+\frac{1}{2^{n+2}})} |+\cdots+ |\log{(1+\frac{1}{2^{n+p}})}| $$ Since the argument logarithm in every term has to be greater than $1$, we can ignore the absolute values on the right side and write the following:
$$| y_{n+p} - y_n |= \log{\bigg{(} (1+\frac{1}{2^{n+1}})(1+\frac{1}{2^{n+2}}) \cdots (1+\frac{1}{2^{n+p}})} \bigg{)} $$
This is where I get stuck, since the idea here is to prove the term in brackets is less than $e$, but I fear that's as difficult as solving the task. Is this a good approach? If not, what would be a better one?
We will prove a more general statement:
Proof: We have $$\log\left(\prod (1+a_i)\right) = \sum \log(1+a_i) \leq \sum a_i$$
where we have used $\log(1+x)\leq x$ which is valid for all $x > -1$. The reversed implication is proven here.
Now take $a_n = \frac{1}{2^n}$. Since $\sum \frac{1}{2^n} = 1$ it follows that $\prod\left(1+\frac{1}{2^n}\right) = \left(1 + \frac{1}{2}\right)\left(1 + \frac{1}{4}\right)\left(1 + \frac{1}{8}\right)\cdots$ converges.
If you really want to use Cauchy's criterion then by using $\log(1+x)\leq x$ we get
$$|y_{n+p} - y_n| \leq \sum_{k=1}^p \frac{1}{2^{n+k}} = \frac{1}{2^n}(1-2^{-(p+1)}) < \frac{1}{2^{n}}$$
Given $\epsilon>0$ then if $n>\log_2(1/\epsilon)$ we get $|y_{n+p} - y_n| < \epsilon$ for all $p>0$.