Limits in Mathematics?

252 views

I only ever encountered the limit while learning derivation by first principles in calculus. I understood all the theory behind first principles, but we were never told what happens to the limit h -> 0. Our teacher just said that it goes away after we divide by h, and that’s all I got.

I understand that the limit h -> 0 represents the gap between x and (x + h) getting smaller and smaller. But how does this gap disappear at the end? From searching online I’ve learned that limits are not *equality*, h never *equals* zero, it just gets closer and closer to it. But then why does it equal zero at the end? How is h -> 0 no longer intrinsic to f'(x)? This might be a dumb question but it has stumped me for ages now.

In: 8

12 Answers

Anonymous 0 Comments

ELI5: imagine you have a cup of hot choclate and your mom says “when you finish your hot chocolate you have to go to bed”. Now, you are smart and you don’t want to go to bed, so everytime you take a sip, you make sure that you leave some hot chocolate in the cup. You can drag this out forever and never finish the hot chocolate, so the amount left is always more than nothing. Now imagine that mom gets annoyed and starts looking how much is left in the cup with a ruler. The longer you do it, the closer to 0 the lines of the ruler will become that stick out of the chocolate that’s left. Eventually she could draw new lines of the ruler, ever closer to 0 and be sure that at some point the amount of hot chocolate is less than that. In fact, she could pick or add any line to the ruler, anywhere, and be sure that after you play this game for some time this line on the ruler will forever stick out of the hot chocolate left. So in short: The hot chocolate will never be empty, because you always leave some in the cup. But you can pick any level, however close to empty, and you know that after some sip the hot chocolate will always be less than that. So the limit of the hot chocolate is empty but it will still never be empty.

Anonymous 0 Comments

The formal way of thinking about limits is called the epsilon-delta construction. The idea is that, even if we can’t define the behaviour exactly at the point, we can look at its behaviour as we get closer and closer. More specifically, when we say that the limit as x approaches some point c of some function f(x) approaches some value L (or lim x->c f(x) = L), what we mean is that for any small positive value (which we call ε, or epsilon) we can find another small positive value (which we call δ, or delta) such that for all the x-values closer than δ to c (i.e. 0 < |x – c| < δ), f(x) is closer than ε to L (i.e. |f(x) – L| < ε). We say that 0 < |x – c| because if it were *equal* to 0, we’d be at the point c, and that might not give a well-defined value for f(x).

The way you’d actually do this in practice is to pick δ to be some appropriate function of ε and then find f(x) for 0 < |x – c| < δ, and see whether those are within ε of L. For example, let’s take the derivative of x^(2). We know that this is lim h->0 ((x+h)^2 – x^(2))/h and we can expand brackets and rearrange to get lim h->0 (2xh + h^(2))/h.

Now, we can’t just put in h = 0, because that would get us 0/0, which is undefined, and we also can’t cancel the h out and then set it to 0, because when you cancel out a variable you intrinsically assume it’s not 0, and if we cancelled h out and then set h to 0 we’d be contradicting ourselves. Let’s use the ε-δ approach. Now, we know that the limit here should be 2x, so that’s our value of L, and we’re approaching 0, so that’s our value of c, so we want to find some small positive value δ such that for 0 < |h| < δ, |f(h) – 2x| < ε for all small positive values ε.

First, let’s look at what f(h) is. We have f(h) = (2xh + h^(2))/h. Now, and this is the clever bit, because we said that |h| is greater than 0, that means h is not 0, which means it’s totally ok to cancel it out. That gives us f(h) = 2x + h, so |f(h) – 2x| = |2x + h – 2x| = |h|. If |h| < δ, then we have |f(h) – 2x| < δ, and we want this to be less than ε, so we just have to choose something like δ = ε/2. ε/2 is always smaller than ε for positive ε, so we’ve successfully found a δ-value that guarantees we’ll be within ε of 2x. Therefore, the limit is 2x, and at no point did we do anything illegal like dividing by 0 or getting an undefined expression like 0/0.