Limit of a sequence (explanation)

In summary: I was trying to explain the intuitive idea of a limit as a process of getting closer and closer to a specific value. But as you pointed out, the formal definition does not involve any kind of motion or process. It simply states that for any given distance epsilon, there exists a point n0 where all subsequent terms of the sequence are within that distance from the limit. It's important to understand this distinction between the intuitive concept and the formal definition when studying limits in mathematics.
  • #1
Korisnik
62
1
I kind of know what limits are, or at least believe I do: I think that a limit of a sequence is just an approximation/intuitive way to finding a number (if it exists) to which a sequence tends. For example, 1, 2, 3, 4... tends to +∞, while 1/10, 1/100, 1/1000... tends, "obviously/intuitively", to 0.

Now formal definition of a limit of a sequence in my book is:

A sequence of real numbers [itex]a_n[/itex] converges (tends) to a real number [itex]L[/itex] if for all [itex]\varepsilon>0[/itex] exists [itex]n_0\in\mathbb{N}[/itex] such that for all [itex]n\geq n_0[/itex] it's true [itex]|a_n-L|<\varepsilon[/itex]. Then [itex]L[/itex] is limit of a sequence [itex]a_n[/itex],
[tex]L=\lim_{n\to \infty} a_n.[/tex]
Or symbolically: [tex]\lim_{n\to\infty}a_n=L\Longleftrightarrow(\forall\varepsilon>0)(\exists n_0\in\mathbb{N})(\forall n\geq n_0)(|a_n-L|<\varepsilon).[/tex]

I understand the first part of the definition: for every [itex]\varepsilon>0[/itex] there is [itex]n_0\in\mathbb{N}[/itex] such that for every [itex]n\geq n_0[/itex] it's true...

This means that we first pick a epsilon bigger than 0, then there must be (if the limit exists) some [itex]n_0[/itex] from which (to infinity) all members will be of a greater ordinal number -- and they ([itex]\varepsilon[/itex] we picked and [itex]n_0[/itex] that corresponds) comply with the condition [itex]|a_n-L|<\varepsilon.[/itex]

Now this condition, the inequality with the absolute value represents a interval:
[tex]-\varepsilon<a_n-L<\varepsilon\Longleftrightarrow a_n\in(L-\varepsilon, L+\varepsilon).[/tex]

This, I think, means that [itex]a_n[/itex] (as [itex]n\to\infty[/itex]) is near the limit [itex]L[/itex] value, but in the range of left and right boundaries of [itex]\varepsilon[/itex].

Represented (poorly) by a number line:

-∞ · · · ------(-ε) a_n-L (ε)------ · · · +∞

From the equations I now think that as [itex]n[/itex] approaches infinity, the [itex]a_n[/itex] approaches limit (obviously), and that makes sense -- and it agrees with the equation (because if [itex]a_n[/itex] reaches [itex]L[/itex], they will subtract to a 0, and since epsilon basically tends to a 0, that's the definition of a zero [itex](-0.0000...1 < 0 < 0.0000...1)[/itex]).

Finally, limit of a sequence is just an approximation of the "infinitieth" member of a sequence.

Tell me if I have understood anything wrongly. Thanks in advance.
 
Mathematics news on Phys.org
  • #2
Yes, seems to me you nailed it. Someone might make problem about your last sentence about "infinitieth member", but don't pay much attention to them :).
There are few other corollaries involving "all but finitely many members of sequence being out of interval" which will help solidify your understanding.
 
  • #3
Korisnik said:
I kind of know what limits are, or at least believe I do: I think that a limit of a sequence is just an approximation/intuitive way to finding a number (if it exists) to which a sequence tends. For example, 1, 2, 3, 4... tends to +∞, while 1/10, 1/100, 1/1000... tends, "obviously/intuitively", to 0.
[...]
Finally, limit of a sequence is just an approximation of the "infinitieth" member of a sequence.
Intuitively, this is a decent way to think about limits. However the term "approximation" is not apt. A limit is not an approximation. It is an exact number.

The "infinitieth" member, if it were to exist and if the sequence were to be continuous at infinity would have to be exactly equal to the limit.
 
  • #4
xAxis said:
Yes, seems to me you nailed it. Someone might make problem about your last sentence about "infinitieth member", but don't pay much attention to them :).

.. unless it's your professor marking you down for it :)
 
  • #5
Korisnik said:
and since epsilon basically tends to a 0.

It's tempting to introduce some idea of motion into the intuitive idea of a limit since the formal definition uses the word "approaches". But in the formal definition, there isn't any motion or dynamic process. Epsilon isn't going anywhere. It isn't "tending" to anything. The freedom of choice guarnteed by the phrase "for each epsilon greater than 0" mean's you could pick a sequence of epsilons that "tended" to zero, but doing this is not specified in the definition.

Understanding the formal definition of limit involves comprehending how it avoids using concepts of dynamic motion ("tending", "approaching") by clever use of the logical quantifiers "for each" and "there exists".
 
  • Like
Likes 1 person
  • #6
OP, everything you put looks basically right to me.

A bit of terminology that might be helpful for phrasing this stuff with less notation: the word "eventually". Given a property "blahblahblah", say a sequence ##(x_n)_{n=1}^\infty## is eventually blahblahblah if there exists a number ##n_0\in\mathbb N## such that for every ##n\in\mathbb N## with ##n\geq n_0##, the number ##x_n## is blahblahblah.

For example, the sequence with ##x_n = n - 72304551## is eventually positive, as we can see by setting ##n_0 = 72304552##. The sequence of integers with ##x_n= \begin{cases}
12 & \text{ if $n$ is a power of } 10, \\
7 & \text{ otherwise}
\end{cases}## isn't eventually odd, because there are arbitrarily late members of the sequence that fail to be odd.

Now limits become even easier to describe:
- ##(x_n)_n## converges to ##x\in\mathbb R## if for every ##\epsilon>0,## the sequence is eventually in ##(x-\epsilon, x+\epsilon)##.
- ##(x_n)_n## converges to ##\infty## if for every ##K\in\mathbb R## the sequence is eventually bigger than ##K##.
 
  • #7
jbriggs444 said:
Intuitively, this is a decent way to think about limits. However the term "approximation" is not apt. A limit is not an approximation. It is an exact number.
Yes, I expressed myself badly (english isn't my mother tongue), what I meant was -- a focus of a better and better approximation?

economicsnerd, thank You for the tips.

Stephen Tashi said:
It's tempting to introduce some idea of motion into the intuitive idea of a limit since the formal definition uses the word "approaches". But in the formal definition, there isn't any motion or dynamic process. Epsilon isn't going anywhere. It isn't "tending" to anything. The freedom of choice guarnteed by the phrase "for each epsilon greater than 0" mean's you could pick a sequence of epsilons that "tended" to zero, but doing this is not specified in the definition.

Understanding the formal definition of limit involves comprehending how it avoids using concepts of dynamic motion ("tending", "approaching") by clever use of the logical quantifiers "for each" and "there exists".
Thank You very much for this post, you have a really good point!

When I wrote the sentence you quoted, I myself didn't agree with it. Somehow I realized I could've written that at the beginning and then everything would be easier to explain; but I didn't, because I wasn't sure in it, it wasn't "my original idea"... Though it made more sense, it was just so simple... like an oversimplification of something and abstraction to a broader concept so it basically lost it's meaning (my meaning, my thinking of the problem). Your post made me at the beginning again. Thank You for that.

I think I'll have to sleep on the idea you mentioned and to think through it. But I'll write down my first thoughts of the definition for now: first it defines [itex]L[/itex] as a number, so one number, not an interval. This will be very important... Now they could've just made this condition [itex]|a_n-L|=0[/itex] but then that could be any number, what exactly are we looking for? We are looking for one number. By clever use of: for all [itex]\varepsilon[/itex] exist all [itex]n[/itex] that satisfy the condition -- mentally plugging in all possible numbers for [itex]\varepsilon[/itex] and [itex]a_n[/itex] -- it's obvious that all choices of [itex]\varepsilon[/itex] result in a range of [itex]a_n[/itex] members (there is always a [itex]n_0[/itex], such that [itex]n\geq n_0[/itex]), except for the smallest [itex]\varepsilon[/itex] possible (a number "next to" [itex]0[/itex]), for which exists only one member of [itex]a_n[/itex]: the last one. This last member is just [itex]n_0[/itex], one number, because if there were a next number, it would be smaller than [itex]0[/itex] and would add to [itex]L[/itex], that would be bigger than [itex]0[/itex] which is impossible by the condition. Now that we've eliminated all other members of the sequence, we are left with a number that is in this range [itex]-0.0...1 < a_n-L < 0.0...1[/itex]. And what number is between these infinitely small numbers? It's [itex]0[/itex]. This is where the definition ends. Because now we can say that [itex]a_{n=last}=L[/itex], because if [itex]a-b=0[/itex] then [itex]a=b[/itex].
 
Last edited:

Question 1: What is a limit of a sequence?

A limit of a sequence is the value that the terms of a sequence approach as the index approaches infinity. Essentially, it is the value that the terms of a sequence get closer and closer to, but may never actually reach.

Question 2: How is the limit of a sequence calculated?

The limit of a sequence is typically calculated by finding the pattern in the sequence and using it to determine the value that the terms are approaching. This can be done algebraically or by graphing the sequence.

Question 3: What does it mean if a sequence has no limit?

If a sequence has no limit, it means that the terms of the sequence do not approach a specific value as the index approaches infinity. This can happen if the terms oscillate or if they approach different values as the index increases, resulting in no overall limit.

Question 4: How is the limit of a sequence related to the concept of convergence?

The limit of a sequence is closely related to the concept of convergence. A sequence is said to converge if its terms approach a specific value as the index approaches infinity, which is the limit of the sequence. If a sequence does not converge, it is said to diverge.

Question 5: Can a sequence have more than one limit?

No, a sequence can only have one limit. If a sequence has more than one limit, it means that the terms do not approach a specific value and the sequence does not converge.

Similar threads

Replies
1
Views
709
Replies
16
Views
2K
Replies
5
Views
1K
  • Calculus and Beyond Homework Help
Replies
1
Views
713
  • Math Proof Training and Practice
Replies
1
Views
904
Replies
2
Views
777
  • General Math
Replies
1
Views
1K
  • Calculus and Beyond Homework Help
Replies
2
Views
184
  • Calculus and Beyond Homework Help
Replies
8
Views
815
Replies
1
Views
1K
Back
Top