Continuity
A function is continuous at a point when its limit there equals its value, so the graph has no break. Continuity fails in three geometric ways; it is closed under arithmetic and composition, so the elementary families and their combinations are continuous; and on a closed interval it forces the Intermediate Value Theorem, which locates roots.
╌╌╌╌
The Direct Substitution Property computes a limit of a polynomial or rational function by plugging in. The functions for which substitution works are the continuous ones: those whose graph has no holes, jumps, or breaks, so the curve can be drawn without lifting the pen.
Continuity at a point
The equation encodes three separate requirements; continuity fails if any one of them fails:
- is defined — that is, lies in the domain of .
- exists — the two-sided limit is a finite number.
- The two agree — the limit equals the value.
If is defined near but is not continuous there, is discontinuous at . Continuity captures the idea that a small change in produces only a small change in : the point slides toward with no jump.
The three ways continuity fails
Discontinuities come in three geometric types, distinguished by which requirement above breaks.
The types and their signatures:
- Removable. The limit exists, but is undefined or unequal to it, leaving a single-point hole. Redefining at that one point repairs continuity. The function has a removable discontinuity at , where it is undefined though .
- Jump. The one-sided limits both exist but differ, so the two-sided limit does not. The Heaviside function and every step function jump at their transitions.
- Infinite. A one-sided limit is or , so the graph runs off to a vertical asymptote. The function has one at .
| Type | Limit exists? | Repairable by one value? | Example |
|---|---|---|---|
| Removable | yes | yes | at |
| Jump | no (sides differ) | no | Heaviside at |
| Infinite | no () | no | at |
Deciding the type reduces to checking the three requirements in turn: whether is defined, whether the limit exists, and whether they match.
One-sided and interval continuity
At an endpoint of a domain, only one side is available, so continuity is defined by a one-sided limit.
For example, is continuous on : at interior points the limit equals the value, and at the endpoints it is continuous from the right at and from the left at , which is all the domain permits.
Building continuous functions
Verifying continuity from the definition every time would be tedious. A few theorems let complicated continuous functions be recognized at a glance.
This follows from the corresponding Limit Laws. Combined with the base cases and , it certifies whole families at once.
A continuous outer function commutes with a limit: it can be moved inside.
Composing two continuous functions keeps continuity, which makes nested expressions tractable.
With these theorems, a function such as is continuous everywhere because it is a composite of the continuous with the continuous polynomial ; no limit calculation is required. Likewise is continuous everywhere except , the lone zero of its denominator.
The domain of continuity is read off directly from the pieces and where the denominator vanishes.
A piecewise function joined at a boundary can be forced continuous by tuning a parameter so the two pieces meet.
The Intermediate Value Theorem
Continuity on a closed interval has a consequence that is obvious to the eye and indispensable in practice: a continuous curve cannot get from one height to another without passing through every height in between.
Continuity is essential; a function with a jump can step over without ever attaining it. The theorem is an existence result: it guarantees a solution without producing one.
Locating roots
Setting turns the theorem into a root-existence test: a continuous function that changes sign across an interval must have a root inside. Repeating the test on the half that still straddles zero — bisection — traps the root in ever-shorter intervals.
The same sign-change test works on equations that no algebra solves, once they are rearranged so one side is zero.
The sign-change-and-bisect idea is the seed of the numerical root-finding refined in Newton's Method.
Footnotes
- Stewart, §1.8 — continuity at a point and its three requirements, the discontinuity types, closure of continuity under arithmetic and composition, and the Intermediate Value Theorem with its application to root location. ↩
╌╌ END ╌╌