I need to prove that $\lim_\limits{n\to \infty}$$\sqrt{\frac{n^2+3}{2n+1}} = \infty$ (series) by using the definition:
"A sequence $a_n$ converges to $\infty$ if, for every number $M$, there exists $N∈N$ such that whenever $n≥N$ it follows that $a_n>M$."
I came with a proof which I'm not sure is valid, because I just learned the definition and maybe I didn't grasp it yet.
Please let me know what do you think of the following proof:
I'll find an $N$ such that whenever $n≥N$ it follows that $a_n>M$ for every $M$:
$M < \sqrt{\frac{n^2+3}{2n+1}} \Rightarrow M^2 < \frac{n^2+3}{2n+1} < \frac{n^2+n^2}{2n} = \frac{2n^2}{2n} = n$
Hence, we got $n > M^2$, therefore we can say that when $N = M^2$ then $a_n>M$ for every $n > M$. End of proof.
Do you think it is valid or am I missing something? Any suggestion for a better proof using the definition?
Thanks!
The proof isn't right. What you proved is that
$\frac{n^2+3}{2n+1}>N \implies n>M^2$ for $N=M^2$
This strategy would have worked if you had double implication type deductions... so then your reasoning would work backwards as well as forwards... but your implications are one way.
What you want to prove is that
$n>N \implies \frac{n^2+3}{2n+1}>M^2$, for some $N$
Also $n^2+3<2n^2$ requires $n \ge 2$ in the integers.
A way to check your proof is wrong is to try to go from $n>M^2$ to $\frac{n^2+3}{2n+1}>M^2$
You should do this at the end anyway. That is really your proof. The rest of the work is preliminary.
What you want to do is find an expression which is some constant times n which is less than $\frac{n^2+3}{2n+1}$ and force that expression to be greater than $M^2$
First I'm going to assume $n \ge 1$,
So then
$\frac{n^2+3}{2n+1}>\frac{n^2}{2n+1} \ge \frac{n^2}{2n+n} =\frac{n}{3}$ call this eqn.(1)
So given an $M$ we want $\frac{n}{3}>M^2$ so we want $n > 3M^2$
So here's the proof,
given an $M>0$, we choose $N = \max \{1,3M^2+1\}$
$\begin{aligned}&n \ge N \\ \\ \implies &n \ge 3M^2+1 > 3M^2 \\ \\ \implies &\frac{n}{3} > M^2 \end{aligned}$
Since we know $n \ge 1$ we can use eqn. (1), so we know that
$\begin{aligned} &\frac{n^2+3}{2n+1}>M^2 \\ \\ \implies &\sqrt{\frac{n^2+3}{2n+1}}>M \\ \\ \implies &a_n>M\end{aligned}$
EDIT: Note that I incorrectly had "min" before and fixed it to "max".