Limits and Convergence

Part 2, Chapter 2: Single-Variable Real Analysis

Learning objectives

  • State the ϵ-δ\epsilon\text{-}\delta definition of a limit and read it as a challenge-response game
  • Prove simple limits (linear, quadratic, constant) using the ϵ-δ\epsilon\text{-}\delta machinery
  • Recognise why a single function can have different one-sided limits or no limit at all
  • Identify where rigorous limits appear in numerical analysis, signal processing, and physics

The limit is the foundational object of real analysis. Newton and Leibniz built calculus in the 1670s on an intuition of "infinitely small" quantities, but for nearly two centuries the logical foundation was a mess: tangent lines were slopes between two points that were "almost" the same point, and integrals were sums of rectangles with "infinitesimal" width. Cauchy (1820s) and Weierstrass (1850s) finally replaced this mysticism with a precise definition built entirely from inequalities. Once you understand the epsilontextdelta\epsilon\text{-}\delta definition, every later concept in analysis, continuity, the derivative, the Riemann integral, uniform convergence, becomes a clean variation on the same theme.

The epsilontextdelta\epsilon\text{-}\delta definition

We say limxtoaf(x)=L\lim_{x\to a}f(x)=Lxtoaf(x)=L if for every epsilon>0\epsilon>0 there exists delta>0\delta>0 such that whenever 0<xa<delta0<|x-a|<\delta, we have f(x)L<epsilon|f(x)-L|<\epsilon. Read this as a challenge-response game: an opponent picks any tolerance epsilon\epsilon (no matter how tiny), and you must respond with a window delta\delta around aa that keeps f(x)f(x) within epsilon\epsilon of LL. If you can always win, the limit exists and equals LL.

Notice three subtleties: (i) the input is required to satisfy 0<xa0<|x-a|, so the value f(a)f(a) itself is irrelevant, we only care about the behaviour near aa. (ii) The order of quantifiers matters: delta\delta may depend on epsilon\epsilon but not on xx. (iii) The conclusion is a strict inequality, but the proof technique still works with leq\leq.

A worked proof: limxto3(2x+1)=7\lim_{x\to 3}(2x+1)=7xto3(2x+1)=7

Given epsilon>0\epsilon>0, choose delta=epsilon/2\delta=\epsilon/2. Then x3<delta|x-3|<\delta implies 2x+17=2x6=2x3<2delta=epsilon|2x+1-7|=|2x-6|=2|x-3|<2\delta=\epsilon. The key trick: we computed f(x)L|f(x)-L| in terms of xa|x-a| first, then solved for the delta\delta that forces this expression below epsilon\epsilon.

One-sided limits and non-existence

The two-sided limit limxtoaf(x)\lim_{x\to a}f(x)xtoaf(x) exists only if both one-sided limits limxtoaf\lim_{x\to a^-}fxtoaf and limxtoa+f\lim_{x\to a^+}fxtoa+f exist and are equal. The function f(x)=x/xf(x)=|x|/x has limxto0=1\lim_{x\to 0^-}=-1xto0=1 and limxto0+=+1\lim_{x\to 0^+}=+1xto0+=+1, so limxto0f\lim_{x\to 0}fxto0f does not exist. The function sin(1/x)\sin(1/x) near x=0x=0 fails even worse, it has no one-sided limit because it oscillates infinitely fast.

Use the function-grapher above to plot f(x)=(x21)/(x1)f(x)=(x^2-1)/(x-1) near x=1x=1. The graph looks like the line y=x+1y=x+1 with a hole at the point (1,2)(1,2). Even though f(1)f(1) is undefined (division by zero), the limit limxto1f(x)=2\lim_{x\to 1}f(x)=2xto1f(x)=2 exists because the epsilontextdelta\epsilon\text{-}\delta definition only cares about 0<x10<|x-1|. Try also plotting sin(1/x)\sin(1/x) on a tiny window like [-0.1, 0.1] to see why that limit does not exist.

Where this shows up
  • Numerical analysis & floating-point error bounds: Every theorem about how close a finite-precision answer is to the exact answer is an epsilontextdelta\epsilon\text{-}\delta statement, "to get error below epsilon\epsilon, use mesh size delta\delta." IEEE 754 error analysis, condition numbers, and convergence proofs for iterative solvers (Newton, conjugate gradient) all reduce to limit definitions.
  • Signal processing & Fourier analysis: Convolutions, low-pass filters, and frequency-response calculations all assume signals are continuous, which is itself an epsilontextdelta\epsilon\text{-}\delta statement. Sampling theorems (Nyquist-Shannon) hinge on limits of sinc series.
  • Physics & instantaneous quantities: Instantaneous velocity, acceleration, current, and power are all defined as limits of average quantities, the epsilontextdelta\epsilon\text{-}\delta idea is what makes Newton's second law F=maF=ma unambiguous at a single instant.

Pause and think: Why does the definition use 0<xa<delta0<|x-a|<\delta instead of xa<delta|x-a|<\delta? Construct a function where these two phrasings would disagree about whether the limit exists.

Try it

  • Predict first: for limxto5(4x3)=17\lim_{x\to 5}(4x-3)=17xto5(4x3)=17, which delta\delta works in terms of epsilon\epsilon? Then verify by computing 4x317|4x-3-17| explicitly.
  • For f(x)=x2f(x)=x^2 near x=2x=2 with epsilon=0.01\epsilon=0.01, find a concrete numerical delta\delta. Hint: factor x24=x2x+2|x^2-4|=|x-2||x+2| and bound x+2|x+2| on a small interval.
  • True or false: if limxtoaf(x)=L\lim_{x\to a}f(x)=Lxtoaf(x)=L exists, then f(a)f(a) must equal LL. Justify with one sentence and an example.
  • Show that limxto0sin(1/x)\lim_{x\to 0}\sin(1/x)xto0sin(1/x) does not exist by exhibiting two sequences xn,ynto0x_n,y_n\to 0to0 along which f(xn)to0f(x_n)\to 0n)to0 but f(yn)to1f(y_n)\to 1n)to1.

    A trap to watch for

    Beginners often pick delta\delta that depends on xx. That is illegal: delta\delta must be chosen once for the given epsilon\epsilon, before xx is revealed. Concretely, in a quadratic-limit proof you may need a preliminary bound like "first require xa<1|x-a|<1", then choose delta=min(1,epsilon/M)\delta=\min(1,\epsilon/M) where MM is the supremum of the relevant factor over that pre-bounded region. The min\min trick is the universal escape hatch for non-linear functions.

    What you now know

    You can state the epsilontextdelta\epsilon\text{-}\delta definition, prove linear and simple non-linear limits, diagnose failed limits via one-sided limits or oscillating subsequences, and recognise the same machinery in error analysis and physics. The next section §2.2 builds continuity directly on this foundation: a function is continuous at aa precisely when its limit at aa equals its value f(a)f(a).

    Mark section complete →

    References

    • Garrity, T. (2002). All the Mathematics You Missed: But Need to Know for Graduate School. Cambridge University Press, ch. 2.
    • Rudin, W. (1976). Principles of Mathematical Analysis (3rd ed.). McGraw-Hill, ch. 4.
    • Abbott, S. (2015). Understanding Analysis (2nd ed.). Springer, ch. 4.
    • Bartle, R. G., Sherbert, D. R. (2011). Introduction to Real Analysis (4th ed.). Wiley, ch. 4.
    • Spivak, M. (2008). Calculus (4th ed.). Publish or Perish, ch. 5.

    This page is prerendered for SEO and accessibility. The interactive widgets above hydrate on JavaScript load.