2

I’m having problems with the definition of converging sequence. In my lecture note, the definition is: a real sequence $a_n$ converges to the limit a if for all $\epsilon>0$ there exist a natural number N such that $|a_n-a|<\epsilon$ for all n>N I notice that convergence needs to satisfy for all $\epsilon$, but my question is: if I change my $\epsilon$, can my N change accordingly? Or it has to be no matter how I choose my $\epsilon$, the N after which my sequence is infinitely close to a is always that same N?

I hope I make myself clear. Thank you!

Eileen
  • 87
  • You've got some great answers already, but I'll add that not only can you give a different $N$ when presented with a different $\epsilon$, it's pretty much expected. (The situation of an eventually constant sequence described in the answers generally doesn't happen.) – JonathanZ Aug 13 '23 at 22:42
  • @JonathanZ, yes, that's exactly why I wrote my answer. I first wanted to write it as a comment, but it really is an answer, not the best here by any stretch, but still an answer so I wrote it like that. – Ennar Aug 13 '23 at 22:46
  • @Ennar - Yeah, it's a great observation, and worthy of a full answer. Honestly, my comment was mostly made for the first part. If a student is hesitant to do something, it's one thing to be told that it is permitted, and another to be told that it is the regular practice. I wanted to reduce any discomfort the OP might be feeling. Sorry if it felt like I was throwing shade on your answer. – JonathanZ Aug 13 '23 at 22:51
  • 1
    @JonathanZ, I think your comment clarifies my answer :) – Ennar Aug 13 '23 at 22:54
  • We sometimes wrote the definition as $n>N_{\varepsilon}$ to emphasize the dependence of $N$ upon $\varepsilon$. – Dave Aug 14 '23 at 03:45

5 Answers5

4

There are already perfectly valid answers. However, I will add something which OP might find useful.

I find thinking about this in terms of agents much more intuitive. Imagine this as a game with two players: you and your opponent. You are tying to prove that the sequence converges to a limit $a$, your opponent would like this to be false. The game is played as follows: Your opponent gives you an $\epsilon$ and you try to find an $N$ such that for all sequence elements after that $N$ the absolute value of the difference between all sequence elements following $N$ and $a$ is smaller than the $\epsilon$ your opponent has given you. Note that this is indeed the definition of convergence.

Practically, it is in your opponent best interest to give you the smallest $\epsilon$ possible; e.g. $0.000000000001$. However, you are always allowed to find a new $N$ such that the absolute value of the difference between all following sequence elements and $a$ is smaller than $\epsilon$. And if you can do this, no matter what $\epsilon$ he gives you, than you have effectively proven that the sequence converges.

Therefore, to answer your question again. Yes, you can indeed change the $N$ if you change the $\epsilon$, that is literally the game your are playing.

2

Please don't write or think something like

the $N$ after which my sequence is infinitely close to $a$

The whole point of the fancy definition for "convergent" is to avoid saying " "infinitely close".

Think instead that

you can make the terms of the sequence as close as you like to $a$ as long as you look far enough out in the sequence.

How far out you have to look (that's beyond $N$) depends on how close you'd like to be (that's $\epsilon$). So $N$ will depend on $\epsilon$.

Ethan Bolker
  • 95,224
  • 7
  • 108
  • 199
1

Yes, the $N$ is allowed to change. That is why it comes ‘after’ the $\epsilon$ in that sentence. In general, things appearing later on in a sentence depend on the stuff before.

If I wanted to say the $N$ is not allowed to depend on the $\epsilon$, then I should write “there is an $N$ such that for all $\epsilon$…”


And while we’re talking about meanings of sentences, since we see that the order of description matters a lot, I would strongly suggest you get into the habit of writing all the quantifiers before the formulae. So rather than

“… such that $|a_n-a|<\epsilon$ for all $n>N$”,

write

… such that for all $n>N$, we have $|a_n-a|<\epsilon$

or

such that for all $n$, if $n>N$ then $|a_n-a|<\epsilon$.

In this very simple example, everyone knows the intended meaning regardless of which of these three you write. But, as sentences get longer, you’ll realize that ‘trailing’ quantifiers only serve to confuse. Also, many people write things as in the first example, because that’s how we usually speak in plain English, but still, I’d recommend resisting the temptation.

peek-a-boo
  • 55,725
  • 2
  • 45
  • 89
1

Generally, your $N$ might be a function of $\varepsilon$, and may change depending on the $\varepsilon$ used. (And this should make sense: if you want $\varepsilon$ to be smaller - and hence all future $a_n$ that much closer to the limiting value $L$ - you will often have to go out much further in the sequence.) Formally, this is because the definition,

"for all $\varepsilon>0$, there exists $N \in \mathbb{N}$ [...]"

begins by defining $N$ after it introduces $\varepsilon$.


As an example, this past MSE post discusses the example of proving $$ \lim_{n \to \infty} \frac{6n}{n^2+1} = 0 $$ and, concludes that $N > \frac 6 \varepsilon$. (This is a sufficiently narrow definition for $N$, though you could also choose more explicitly, say, $N = \lceil \frac 6 \varepsilon\rceil + 1 $ if it is your preference.)

This definition is dependent on $\varepsilon$, and that's totally fine.

PrincessEev
  • 43,815
1

Not only $N$ can change depending on $\epsilon$, the only convergent sequences where $N$ would be independent of $\epsilon$ are eventually constant, i.e. $a_n = a_m$, for all $m,n\geq N$.

To see that this is true, let $(a_n)$ be convergent with limit $a$ and assume that there exists $N$ such that $$(\forall \epsilon >0)\ n\geq N \implies |a_n-a|<\epsilon.\tag{1}$$

Take any $n$ such that $n\geq N$. If $|a_n-a| >0$, let $\epsilon = |a_n-a|$. Then $|a_n-a| \geq \epsilon$, contradicting $(1)$. Therefore, $|a_n-a| = 0$, i.e. $a_n = a$.


The point is that not only you can change $N$ depending on $\epsilon$, the chances that you won't have to do it given a random convergent sequence are effectively zero, as JonathanZ pointed out in the comments.

Ennar
  • 23,082