Using the definition of a limit to prove 1/n converges to zero.

Let's try and fit your definition into the example you mentioned, first. The sequence $a_n$ you gave is $a_n = \frac{1}{n}$, and the limit $\alpha$ is $\alpha = 0$. Therefore, we wish to prove that for any $\varepsilon > 0$ there is a positive integer $N$ such that if $n \geq N$, then $|\frac{1}{n} - 0| = \frac{1}{n} < \varepsilon$.

Let's think about that definition for a moment. What this says is that eventually, every term of the sequence $\frac{1}{n}$ is close to $0$, no matter how arbitrarily close we want to be. And really, that's all we mean by convergence: eventually, the terms of the sequence get "close" to the limit. We are just making that notion of closeness precise.

Now, let's prove the result. Let $\varepsilon > 0$ be given. Then there is a positive integer N such that $\frac{1}{N} < \varepsilon$ (this is the Archimedean Property). Of course, when $n \geq N$, we have that $\frac{1}{n} \leq \frac{1}{N}$ by dividing both sides by $n$ and $N$. This same procedure works for any $\varepsilon$; there is nothing special here about the one we chose (though $N$ might be different in each case; that's not a problem). Therefore, given any $\varepsilon > 0$, we can find a positive integer $N$ such that for $n \geq N$, $|\frac{1}{n} - 0| < \varepsilon$. That is, we showed that $a_n = \frac{1}{n}$ converges to $0$ by definition, as desired.


Often, it helps to work backwards. So for this, you must choose $N$ such that $|\frac{1}{n} - 0| = \frac{1}{n} \lt \epsilon$ whenever $n \geq N$ for any fixed $\epsilon$. Shuffling the first inequality around says $\frac{1}{\epsilon} \lt n$. So, simply pick $N \gt \frac{1}{\epsilon}$. This gives you the result, i.e. $n \geq N \Rightarrow \frac{1}{n} \leq \frac{1}{N} \lt \epsilon$


Stated loosely, the definition reads as: "The sequence $\{a_n\}$ converges to $a$ if terms of the sequence get arbitrarily close to $a$ in absolute value."

So, how close is "close"?

Give me any positive distance (this is your $\varepsilon > 0$). If $a_{n} \to a$, then after some point in the sequence (this is your $N$), all of the terms $a_{n}$ should be close (within $\varepsilon$) to $a$.

Now: if you want to show $\frac1n \to 0$, then you should be able to do this. How close do you want to be to $0$? Let's say you want to be "precise": you want to get within $0.0001$ of $0$. But you know $0.0001 = \frac{1}{10000}$, and so any term further along in the sequence than $a_{10000}$ will be closer to $0$ than $0.0001$. But you can always do better! For any arbitrarily small number $\varepsilon >0$, just make sure $N$ is larger than $\frac{1}{\varepsilon}$!

This was the more informal discussion of the argument -- the formal solution will more closely resemble what others have posted.