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

In summary, the definition of limit for a real function involves the concepts of limit points, epsilon, and delta. The limit point is a point in the domain of the function that is used to define the limit. Epsilon represents the desired closeness of the limit to the function, and delta represents the closeness of the input to the limit point. The aim is to find a delta that will ensure that the output is within the desired epsilon of the limit. This definition is important in understanding the behavior of a function at a given point and can also help determine if a function is continuous at that point.
  • #1
flora
4
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
  • #2
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.
 
  • #3
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.
 
  • #4
the limit of a function f at a, is the number such that redefining f(a) as that number, makes f continuous at a.
 
  • #5
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?
 
  • #6
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.
 
  • #7
stewart's calculus book... which edition should i have
 
  • #8
None, unless you have to owing a course you're taking.
 
  • #9
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:

1. What is the definition of limit?

The definition of limit is a mathematical concept that describes the behavior of a function as its input approaches a certain value. It is the value that a function approaches as the input gets closer and closer to a specific value, but may not necessarily reach.

2. How is the limit of a function calculated?

The limit of a function can be calculated by evaluating the function at values approaching the desired input value, and observing the behavior of the function as those values get closer and closer. This can be done algebraically, graphically, or using calculus techniques such as L'Hopital's rule.

3. What is the symbol used to represent limit?

The symbol used to represent limit is "lim". It is written as lim (f(x)) = L, where f(x) is the function being evaluated, and L is the limit value.

4. What does it mean if a function has no limit?

If a function has no limit, it means that as the input approaches a certain value, the function does not approach a single, finite value. This could indicate that the function is undefined at that input value, or that the limit does not exist due to oscillation or divergence of the function.

5. Can a function have more than one limit?

No, a function can only have one limit at a specific input value. This is because the limit represents the value that the function approaches as the input gets closer and closer to that value. If a function has more than one limit, it would mean that the function approaches different values as the input approaches the same value, which is not possible.

Similar threads

  • Calculus
Replies
2
Views
2K
Replies
9
Views
917
  • Calculus
Replies
2
Views
1K
Replies
25
Views
3K
Replies
3
Views
908
Replies
4
Views
2K
Replies
26
Views
2K
Replies
4
Views
1K
Replies
2
Views
1K
Back
Top