← back to calculus

Limits and Continuity

Active Calculus (CC BY-SA) · activecalculus.org

A limit captures what f(x) approaches as x approaches a, even if f(a) is undefined. The epsilon-delta definition makes "approaches" precise. Continuity means the limit equals the function value. The Intermediate Value Theorem is the payoff.

L a lim f(x) = L x→a

Intuitive limits

The limit of f(x) as x approaches a is L if f(x) gets arbitrarily close to L whenever x is sufficiently close to a (but not equal to a). We can test this numerically by plugging in values closer and closer to a.

Scheme

Epsilon-delta definition

For every ε > 0, there exists a δ > 0 such that |f(x) - L| < ε whenever 0 < |x - a| < δ. This replaces "approaches" with a checkable inequality. ε is the tolerance on the output; δ is the tolerance on the input.

Scheme

Squeeze theorem

If g(x) ≤ f(x) ≤ h(x) near a, and lim g(x) = lim h(x) = L, then lim f(x) = L. The classic example: -1 ≤ sin(x) ≤ 1, so -|x| ≤ x sin(1/x) ≤ |x|. As x approaches 0, both bounds go to 0, so x sin(1/x) goes to 0.

Scheme

Continuity

f is continuous at a if three things hold: f(a) exists, lim f(x) as x approaches a exists, and the limit equals f(a). Polynomials, sin, cos, exp are continuous everywhere on their domains. Rational functions are continuous except where the denominator is zero.

Scheme

Intermediate Value Theorem

If f is continuous on [a,b] and f(a) < c < f(b), then there exists some x in (a,b) where f(x) = c. Geometrically: a continuous curve that goes from below c to above c must cross c somewhere. This is how we prove roots exist.

Scheme

Notation reference

Math Scheme Meaning
limx→a f(x)(f (+ a 0.0001))Limit: value f approaches
ε, δepsilon, deltaOutput and input tolerances
|x - a| < δ(< (abs (- x a)) delta)x is within delta of a
IVTbisectionIntermediate Value Theorem
Neighbors