0

Let $\{{f_n}\}$ a Cauchy sequence. Then by definition $$\forall k\in\mathbb{N},\quad\exists n(k)\in\mathbb{N}\quad|\quad\forall m,n>n(k)\quad \|f_m-f_n\|<\frac{1}{2^k}$$

I must prove that we can choose a increasing sequence of natural numbers $\{n_k\}$ for which

$$\|f_{n_{k+1}}-f_{n_k}\|< \frac{1}{2^k}\;\text{for all}\;k\in\mathbb{N}$$

If I choose $n_k> n(k)$ for all $k\in\mathbb{N}$ and then I can suppose without loss of generality that the sequence $\{n_k\}$ is increasing.

Is this formally correct or should we add more?

Thanks!

Let's see if I understand: Let $n_1=n(1)+1$ and $n_2=\max\{n(2)+1,n_1+1\}$. Now $n_2> n_1>n(1)$, then $$\|f_{n_2}-f_{n_1}\|<\frac{1}{2}.$$

Now, let $n_3=\max\{n(3)+1,n_2+1\}$, then $n_3>n_2$ and $$\|f_{n_3}-f_{n_2}\|<\frac{1}{4},$$ since $n_3>n_2\ge n(2)+1>n(2)$

We can proceed in this way for every $k$, right?

Jack J.
  • 920

1 Answers1

2

You should probably explain why you can assume "without loss of generality" that the $n_k$ are decreasing.

If you want to be formal, you can do a "proper" recursive construction:

E.g. let $n_1 = n(1)+1$. Then having defined $n_k$ for some $k$ such that $$\forall 1 \le l < k: \|f_{n_{l+1}} - f_{n_l}\| < \frac{1}{2^l}\tag{k}$$

(which is voidly obeyed for $k=1$ now) we define $n_{k+1}=\max(n(k+1) + 1, n_k+1))$ and so both ensure the "recursion condition" $(k+1)$ from $(k)$ and the definition of $n(k+1)$, and the strict increasingness of the $n_k$.

Henno Brandsma
  • 242,131