My usual way of tackling "prove that $\alpha$ is the limit to the sequence $f(n)$ where $n\in \mathbb N$" is as follows.
First, I establish the necessary condition.
$|f(n)-\alpha|<\epsilon$ where $\epsilon>0$
Now, I work my way through to get the condition $n>g(\epsilon)$ and set $N= ceiling( g(\epsilon))$. Now I can state the proof in the traditional manner and it's done.
However, this approach doesn't seem to work for some problems. For instance, if I want to prove that $1/2$ is the limit of the sequence $\sqrt{n^2+n}-n$,
$|\sqrt{n^2+n}-n-1/2| \leq \sqrt{n^2+n}+n+1/2 < \sqrt{n^2+n}+n+1= \sqrt{n+1}(\sqrt{n}+\sqrt{n+1})<(n+1)(n+n+1)=(n+1)(2n+1)<\epsilon$
Now, according to the strategy I use I must find $g(\epsilon)$ such that $n>g(\epsilon)$ from the above result. But, I can't seem to do it.
My questions are,
- Does the method I use always work?
- If so, How can I modify my example to fit that strategy?