[Math] Decimal expansion of a Cauchy sequence

cauchy-sequencesdecimal-expansionreal numbers

In one of the construction of $\mathbb{R}$ we make each real number an equivalence class of Cauchy sequences in $\mathbb{Q}$. More precisely, two Cauchy sequences $a_n$ and $b_n$ are equivalent iff $|a_n-b_n|\to 0$.

Is there a general method of computing the decimal expansion of the limit of a Cauchy sequence? In other words, given a Cauchy sequence $a_n$ is there a way of determining an equivalent Cauchy sequence $b_n$ such for all $n\in\mathbb{N}$ it is true that $b_{n+1}$ and $b_n$ are identical for the first $n$ digits (making $b_n$ a sequence of decimal truncation of $\lim_{n\to\infty} a_n$). If there is no such algorithm, can we determine these decimal places up to $n$ digits? My problem is that different Cauchy sequences converge at various rates, and determining the nature of their convergence seems to be a case-by-case problem.

If there is no algorithm, how can one go about proving that every real number (as equivalence classes of Cauchy sequences) has a decimal expansion?

Best Answer

If you have constructive info about the Cauchy-ness of the sequence, i.e. you are able for any given $\epsilon>0$ to actually exhibit $N$ such that $|a_m-a_n|<\epsilon$ for all $n,m>N$, you may have a chance to algorithmically find the decimal (or binary or whatever) expansion of the limit. To find the first $n$ digits, you can start with some $\epsilon<10^{-n}$, determine the corresponding $N$, check how close $a_{N+1}$ is to adjacent $n$-digit numbers and retry with smaller $\epsilon$ if necessary. This is guaranteed to give you the desired $n$ digits after finite time - unless the limit actually happens to be precisely of the form $\frac m{10^n}$.

Related Question