[motivation]
### The naive notion: "getting closer"
A first attempt at defining convergence might be: a sequence $(a_n)$ converges to $L$ if each term is closer to $L$ than the previous one, that is, $|a_{n+1} - L| < |a_n - L|$ for all $n$. This captures something real about many convergent [sequences](/page/Sequence), but it is far too restrictive and simultaneously too permissive.
It is too restrictive because perfectly well-behaved sequences violate it. Define $a_n = 1/n + (-1)^n / n^2$. Then $a_n \to 0$, yet the terms do not decrease monotonically in distance from $0$ --- the odd-indexed terms are slightly closer than the "getting closer" pattern would predict, while the even-indexed terms overshoot slightly, so consecutive distances oscillate.
It is too permissive in spirit because "getting closer" does not guarantee arrival. The sequence $a_n = 1 + 1/n$ has $|a_{n+1} - 2| < |a_n - 2|$ for all $n$, so it is "getting closer" to $2$, yet it converges to $1$, not to $2$. Being attracted toward a value is not the same as being eventually trapped near it.
### The need for epsilon-N
The correct intuition is not "getting closer" but "eventually staying close, no matter how close you demand." For any tolerance $\varepsilon > 0$, no matter how small, there should exist a stage $N$ beyond which every term $a_n$ satisfies $|a_n - L| < \varepsilon$. The universal quantifier on $\varepsilon$ prevents the sequence from being "close" in only a weak sense, and the existential quantifier on $N$ allows a finite number of initial terms to misbehave. This is the $\varepsilon$-$N$ definition, and its precision is what makes rigorous analysis possible.
### Completeness: why the field matters
Even with the correct definition in hand, convergence depends on the ambient number system. Consider the sequence of rational numbers
\begin{align*}
1, \; 1.4, \; 1.41, \; 1.414, \; 1.4142, \; \ldots
\end{align*}
obtained by truncating the decimal expansion of $\sqrt{2}$. Each term is rational, and the sequence is Cauchy in $\mathbb{Q}$ --- the terms cluster ever more tightly --- yet $\sqrt{2} \notin \mathbb{Q}$, so the sequence has no limit in $\mathbb{Q}$. In the rational numbers, the "gap" where $\sqrt{2}$ should be is genuinely empty, and the sequence, despite its best efforts, converges to nothing.
The real numbers $\mathbb{R}$ are constructed precisely to fill such gaps. The completeness axiom --- equivalently stated as every non-empty [set](/page/Set) bounded above having a supremum, or every Cauchy sequence converging --- ensures that [limits](/page/Limit) "exist when they should." Every major convergence theorem in this article relies, at some crucial point, on completeness.
[/motivation]