Proof of sequence convergence via the "ε-N" definition

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
3 replies · 3K views
Euler2718
Messages
90
Reaction score
3

Homework Statement


Prove that [itex]\lim \frac{n+100}{n^{2}+1} = 0[/itex]

Homework Equations


[itex](x_{n})[/itex] converges to [itex]L[/itex] if
[tex]\forall \hspace{0.2cm} \epsilon > 0 \hspace{0.2cm} \exists \hspace{0.2cm} N\in \mathbb{N} \hspace{0.2cm} \text{such that} \hspace{0.2cm} \forall n\geq N \hspace{0.2cm} , |x_{n}-L|< \epsilon[/tex]

The Attempt at a Solution


I understand most of the workings behind the solution, however there's one step that I can't seem to make a connection with. The solution I am studying goes:

For all [itex]\epsilon >0[/itex], consider the following inequality:
[tex]\left| \frac{n+100}{n^{2}+1}-0\right| = \left| \frac{n+100}{n^{2}+1}\right| < \epsilon[/tex]
In fact, one has
[tex]\left| \frac{n+100}{n^{2}+1} \right| \leq \left| \frac{2}{n}\right|, \hspace{0.2cm} \forall \hspace{0.2cm}n \geq 100[/tex]

This [itex]\frac{2}{n}[/itex] is causing the problem. I understand how it is used thereafter in the solution, but how they determine this is my question. I think that, for large [itex]n[/itex], [itex]\frac{n+100}{n^{2}+1}[/itex] is kind of like [itex]\frac{n}{n^{2}} = \frac{1}{n}[/itex], which is almost correct, but not sufficient enough. I guess the question is, how can I be sure that quantity I deduce - in this case [itex]\frac{1}{n}[/itex], and in their case [itex]\frac{2}{n}[/itex] - will satisfy (or not satisfy) the inequality at hand. Sometimes it is easy, but I find with more complicated expressions it requires some sort of massaging. Note, I won't have access to a calculator/computer to check in the future.
 
Physics news on Phys.org
There is no need to take care of how big ##N=N(\varepsilon)## is or how close the inequalities are. All which matters is, that you have
$$
\left| \frac{n+100}{n^2+1} \right| < \ldots < \varepsilon
$$
So how to find ##N(\varepsilon)## is not the question. Be generous: ##\frac{n+100}{n^2+1} < \frac{2n}{n^2+1} < \frac{2n}{n^2} = \frac{2}{n} ## for ##n > 100##. So the ##2## comes in naturally as one substitutes the disturbing ##100## by the larger ##n##. So it's not especially tricky but rather especially sloppy.
 
  • Like
Likes   Reactions: Euler2718
Morgan Chafe said:

Homework Statement


Prove that [itex]\lim \frac{n+100}{n^{2}+1} = 0[/itex]

Homework Equations


[itex](x_{n})[/itex] converges to [itex]L[/itex] if
[tex]\forall \hspace{0.2cm} \epsilon > 0 \hspace{0.2cm} \exists \hspace{0.2cm} N\in \mathbb{N} \hspace{0.2cm} \text{such that} \hspace{0.2cm} \forall n\geq N \hspace{0.2cm} , |x_{n}-L|< \epsilon[/tex]

The Attempt at a Solution


I understand most of the workings behind the solution, however there's one step that I can't seem to make a connection with. The solution I am studying goes:

For all [itex]\epsilon >0[/itex], consider the following inequality:
[tex]\left| \frac{n+100}{n^{2}+1}-0\right| = \left| \frac{n+100}{n^{2}+1}\right| < \epsilon[/tex]
In fact, one has
[tex]\left| \frac{n+100}{n^{2}+1} \right| \leq \left| \frac{2}{n}\right|, \hspace{0.2cm} \forall \hspace{0.2cm}n \geq 100[/tex]

This [itex]\frac{2}{n}[/itex] is causing the problem. I understand how it is used thereafter in the solution, but how they determine this is my question.
It's a combination of trial and error along with experience. As you note, ##\frac{n + 100}{n^2 + 1}## is similar to ##\frac n {n^2}## in its long-term behavior, but that's not good enough. Someone made the realization that the first fraction could be made smaller than (or equal to) ##\frac 2 n##, and figured out what values of n would make this true.
Morgan Chafe said:
I think that, for large [itex]n[/itex], [itex]\frac{n+100}{n^{2}+1}[/itex] is kind of like [itex]\frac{n}{n^{2}} = \frac{1}{n}[/itex], which is almost correct, but not sufficient enough. I guess the question is, how can I be sure that quantity I deduce - in this case [itex]\frac{1}{n}[/itex], and in their case [itex]\frac{2}{n}[/itex] - will satisfy (or not satisfy) the inequality at hand. Sometimes it is easy, but I find with more complicated expressions it requires some sort of massaging. Note, I won't have access to a calculator/computer to check in the future.
 
  • Like
Likes   Reactions: Kiprotich and Euler2718
fresh_42 said:
There is no need to take care of how big ##N=N(\varepsilon)## is or how close the inequalities are. All which matters is, that you have
$$
\left| \frac{n+100}{n^2+1} \right| < \ldots < \varepsilon
$$
So how to find ##N(\varepsilon)## is not the question. Be generous: ##\frac{n+100}{n^2+1} < \frac{2n}{n^2+1} < \frac{2n}{n^2} = \frac{2}{n} ## for ##n > 100##. So the ##2## comes in naturally as one substitutes the disturbing ##100## by the larger ##n##. So it's not especially tricky but rather especially sloppy.
Mark44 said:
It's a combination of trial and error along with experience. As you note, ##\frac{n + 100}{n^2 + 1}## is similar to ##\frac n {n^2}## in its long-term behavior, but that's not good enough. Someone made the realization that the first fraction could be made smaller than (or equal to) ##\frac 2 n##, and figured out what values of n would make this true.
Ah, I understand. Thank you for this insight.