What are the essential points of continuity and limit in mathematics?

  • Context: Undergrad 
  • Thread starter Thread starter flora
  • Start date Start date
  • Tags Tags
    Definition Limit
Click For Summary

Discussion Overview

The discussion revolves around the concepts of continuity and limits in mathematics, particularly focusing on the definitions and implications of these concepts in the context of real functions and sequences. Participants explore various definitions, examples, and the relationships between limits and continuity.

Discussion Character

  • Exploratory
  • Technical explanation
  • Conceptual clarification
  • Debate/contested

Main Points Raised

  • Some participants seek clarification on the epsilon-delta definition of limits, expressing confusion about its components.
  • One participant explains the epsilon-delta definition, emphasizing the role of limit points and the irrelevance of function behavior at the limit point itself.
  • Another participant suggests starting with the definition of limits for sequences, describing epsilon as an error margin that indicates how close sequence terms must be to the limit.
  • Multiple participants assert that the limit of a function at a point is the value that would make the function continuous at that point if redefined.
  • There is a discussion about the definition of continuity, with one participant stating that continuity requires that as x approaches a, f(x) must approach f(a). This is framed in terms of epsilon and delta.
  • One participant argues that continuity is a more fundamental concept than limits, suggesting that the limit definition is often not practically useful in later applications.
  • Another participant mentions the use of the squeeze theorem in proving limits, particularly for functions like sin(x)/x as x approaches 0.

Areas of Agreement / Disagreement

Participants express varying levels of understanding and interpretation of limits and continuity. While there are some shared definitions, significant disagreement exists regarding the fundamental nature of limits versus continuity and the practical utility of the limit definition in mathematical applications.

Contextual Notes

Some participants note that the definitions and examples provided may depend on specific contexts or interpretations, and there are unresolved questions about the clarity and applicability of the epsilon-delta framework.

Who May Find This Useful

This discussion may be useful for students and educators in mathematics, particularly those interested in foundational concepts of calculus, limits, and continuity.

flora
Messages
4
Reaction score
0
What is the definition of limit? i read some documents but it was not clear. Could you explain what epsilon and delta is ?
 
Physics news on Phys.org
There are a few different, equivalent, ways of defining the limit of a real function. The first way taught is usually the epsilon-delta definition:

First we need to define a limit point. A limit point [tex]c[/tex] of a set [tex]A[/tex] is a point such that for any natural number n, the interval [tex](c-1\n,c+1\n)[/tex] contains something in [tex]A[/tex] other than c. So If A=[0,1]u{2} then any number in [0,1] is a limit point of A, but 2 is not (because (2-1/2,2+1/2)=(3/2,5/2) doesn't contain anything in A other than 2).
If you don't get limit points don't worry about it for now, it's a bit of a technical thing and you can forget about it for the second, but we need it to give a precise definition of the limit (otherwise funny things can happen).

Let [tex]x_0[/tex] be a limit point of the domain of the real function [tex]f[/tex]. Then [tex]\lim_{x \rightarrow x_0}f(x)=L[/tex] if and only if: for every [tex]\epsilon>0[/tex] there exists a [tex]\delta>0[/tex] such that if
[tex]\left|a-x_0\right|<\delta|[/tex] and [tex]x\neqx_0[/tex] then [tex]\left|f(a)-L\right|<\epsilon[/tex].

Sound straight forward? No not really.
Intuitively speaking the idea is that if we look really close to the point [tex]x_0[/tex] we get really close to the limit [tex]L[/tex]. Epsilon tells you how close you want the limit L to be to the function f(x) around the point x0. Delta tells you how close you need x to be to x0 so that f(x) is within epsilon of L.
Note that the actual behaviour of the function at x0 is irrelevant.

So a brief example: Show [tex]\lim_{x\rightarrow 2}x^2=4[/tex]
So let's say we've got some epsilon greater than zero. The question is then how close to 2 do we need to be for x^2 to be within epsilon of 4?
Well let us have a look at:
[tex]\left|f(a)-L\right|=\left|a^2-4\right|<\epsilon[/tex]
What do we need for this to be true? Let's factorise the equation:
[tex]\left|a-2\right|\left|a+2\right|<\epsilon[/tex]

So to get a quick idea, suppose [tex]\epsilon=1[/tex], then we want to find [tex]a[/tex] such that
[tex]\left|a-2\right|\left|a+2\right|<1[/tex]
Well what if a was within .1 of 2 (that is delta=.1)? So [tex]1.9\leq a\leq 2.1[/tex] Is that close enough?
Well if that's true [tex]3.9\leq\left|a+2\right|\leq4.2[/tex] and [tex]\left|a-2\right|\leq.1[/tex]
So putting it all together [tex]\left|a^2-4\right|\leq 4.2*0.1=.42 < 1[/tex]

So it IS good enough (and so any number smaller than .1 would be good enough too). But what if we wanted epsilon=0.1? Or epsilon=.00000095? Or epsilon=2*10^-54? We could keep guessing but it would get time consuming - we want a prescription that automatically produces a delta for a given epsilon.

So what to we need [tex]\delta[/tex] to be such that if [tex]\left|a-2\right|<\delta[/tex] then
[tex]\left|a-2\right|\left|a+2\right|=\delta\left|a+2\right|<\epsilon[/tex]?
We need to do something about that a+2 term. Let's say delta is less than 1, ideally we want to make it small, so we'll start here. Then
[tex]\left|a-2\right|<1[/tex] implies [tex].9\leq a \leq 1.1[/tex] so [tex]2.9\leq\left|a+2\right|\leq3.1[/tex].
Then if [tex]\delta\left|a+2\right|<\epsilon[/tex]
[tex]\delta<\frac{\epsilon}{\left|a+2\right|}\leq\frac{\epsilon}{2.9}[/tex]

So if [tex]\frac{\epsilon}<1[/tex] then [tex]\delta=\frac{\epsilon}{3}<\frac{\epsilon}{2.9}[/tex] ensures that [tex]\left|a^2-4\right|<\epsilon[/tex] providing [tex]\left|a-2\right|<\delta[/tex].
If [tex]\epsilon\geq1[/tex] then you can see that [tex]\delta=1[/tex] is good enough. So we take [tex]\delta=\min(\frac{\epsilon}{3},1)[/tex].

Finally just to check that it works, look at epsilon=1 again. Our prescription tells us delta=1/3 should work. Then [tex]\left|a-2|<1/3[/tex] and [tex]\left|a+2|<2+1\3=5/3[/tex] hence [tex]\left|a^2-4\right|<5/9<1[/tex], so it works in this case.
So if you tell me you want to be within epsilon of 4, I can tell you that if you're within delta of 2, then x^2 is within epsilon of 4.

Finally note that since we ignore the behaviour of the function at x0 if we had chosen, [tex]f(x)=x^2[/tex] for [tex]x\neq2[/tex] and [tex]f(2)=1000000[/tex] we'd get the same result.
 
look at the definition of a limit of a sequence first.

take X(n) with limit x.
the epsilon here is is basically a 'error' so to speak. It says for any small-error, we can find a point in the sequence, after which, all points in the sequence are within that error of x (think of absolutevalue(x-y) as the distance between x and y, and that distance after a certain point in the sequence is ALWAYS less than epsilon).
Hope that helps, stewart's calculus book has a great illustration of this definition in his chapter on sequences and series. It's not easy so don't worry if you have to think about it for a while.

The definition for a limit of a function is much easier to understand once you have this down.
 
the limit of a function f at a, is the number such that redefining f(a) as that number, makes f continuous at a.
 
mathwonk said:
the limit of a function f at a, is the number such that redefining f(a) as that number, makes f continuous at a.

Great! And the defiition of continuous is?
 
HallsofIvy said:
Great! And the defiition of continuous is?


You define that with those delta's and epsilons: if x gets arbitrarily close to a, then f(x) gets arbitrarily close to f(a). So:

|x-a|<delta should mean that |f(x)-f(a)|<epsilon.

Like said, you demand that if you restrict x to a, then f(x) is restricted to f(a) ( so, if x is very close to a, then f(x) is very close to f(a) and can't make any funny jumps ) Ofcourse, epsilon is a function of delta, otherwise one couldn't make such a restriction. If you can manage to show this, then you say that f(x) is continuous at x=a.

Maybe it helps to draw a discontinuous function in a graph, and see that with x arbitrarily close to a, you can't get f(x) arbitrarily close to f(a), and so you can't make such a restriction.
 
stewart's calculus book... which edition should i have
 
None, unless you have to owing a course you're taking.
 
as halls well knows, f is continuous at a if given any open interval J containing f(a), there is some open interval I centered at a, such that for every x in I, if f is defined at x, then f(x) is in J.

but my opinion is that continuity is a more fundamental notion than limit. e.g. in most books, like stewart certainly, the definition of limit is esentially a sham, since it is not used afterwards to do anything.

the essential point is that two functions which agree away from a point a, at least in some interval centered at a, have the same limit at a.

so in stewart and others of that ilk, the limit of a function like (x^2-4)/(x-2) is computed by canceling a factor of (x-2), and then substituting x = 2 in the remaining factor x+2.

this is merely an invocation of my principle, since x+2 is continuous at 2.
the only case where a more complicated argument is used is in the "proof" that the klimit of sin(x)/x is 1 as x-->0.

here the argument uses the squeeze principle (applied to areas): i.e. if a function's graph lies between the graph of two continuous functions which agre at a, at least for x near a and different from a,. then the original function has limit at a equal to the value of either continuous function there.

these applications of continuoius functions are what are actually used in all standard texts, and hence should at least be stated by them.
 
Last edited:

Similar threads

  • · Replies 2 ·
Replies
2
Views
4K
  • · Replies 20 ·
Replies
20
Views
3K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 9 ·
Replies
9
Views
2K
  • · Replies 25 ·
Replies
25
Views
4K
  • · Replies 26 ·
Replies
26
Views
3K
  • · Replies 4 ·
Replies
4
Views
3K
  • · Replies 2 ·
Replies
2
Views
3K
  • · Replies 4 ·
Replies
4
Views
3K
  • · Replies 4 ·
Replies
4
Views
2K