A preview of limits

Stage 8 · Precalculus Free lesson ≈ 13 min read The doorway to calculus

Every idea in calculus — slopes of curves, areas under them, instantaneous speed — rests on one quiet question: as \( x \) creeps toward some point, what value does \( f(x) \) head for? Notice the word head for, not reach. That gap is the whole story.

The question a graph can't quite answer

Consider the function

\[ f(x) = \frac{x^2 - 1}{x - 1}. \]

At \( x = 1 \) this is \( \tfrac{0}{0} \) — undefined; the calculator refuses. But for every other \( x \), the top factors as \( (x-1)(x+1) \), and the \( (x-1) \) cancels with the bottom, so \( f(x) = x + 1 \). The graph is simply the line \( y = x+1 \) with a single hole punched out at \( (1, 2) \). So even though \( f(1) \) doesn't exist, the function clearly wants to be \( 2 \) there.

Don't take that on faith — creep up on \( x = 1 \) from each side with the widget below and watch where the outputs are heading.

From the left (\( 0.9, 0.99, 0.999, \dots \)) and from the right (\( 1.1, 1.01, 1.001, \dots \)) the outputs both home in on \( 2 \). We write

\[ \lim_{x \to 1} \frac{x^2-1}{x-1} = 2, \]

read "the limit of \( f(x) \) as \( x \) approaches 1 is 2" — a statement about the journey, not the destination point itself.

One-sided limits

Sometimes the two approaches don't tell the same story, so we give each direction its own name. The left-hand limit, written

\[ \lim_{x\to a^-} f(x), \]

is the value \( f(x) \) heads for as \( x \) slides toward \( a \) from below (the minus sign means "from the smaller side"). The right-hand limit,

\[ \lim_{x\to a^+} f(x), \]

is the value it heads for as \( x \) comes down toward \( a \) from above. The full, two-sided limit exists only when both sides agree — when the left-hand and right-hand limits are equal. If the two approaches disagree, there is no single number for \( f(x) \) to head toward, and we say the limit does not exist. This is exactly what the widget's "from the left / from the right" buttons are showing: two journeys that, in the hole example, happen to arrive at the same place.

When a limit fails

A limit can fail to exist, and each way it fails is worth recognising on sight. There are three classics.

  • A jump. The left and right limits are both perfectly fine numbers — they just disagree, like a single step in a staircase. The function leaps from one level to another with no value in between, so there's no common destination and the two-sided limit doesn't exist.
  • A blow-up. Take \( \lim_{x\to 0} \tfrac{1}{x} \). As \( x \to 0^- \) the output races to \( -\infty \); as \( x \to 0^+ \) it races to \( +\infty \). Neither side settles on a finite number, and the two sides even disagree about their sign — so there is no limit.
  • Wild oscillation. Some functions wiggle faster and faster as they near a point, sweeping through every value over and over without ever settling down. With no value being approached, the limit again fails to exist.

A limit failing is information, not an error. It is the function telling you, honestly, that nothing single and definite is waiting at that point.

Continuity: no holes, no jumps

A function is continuous at \( a \) when nothing dramatic happens there — no hole, no jump, no blow-up. Made precise, that means

\[ \lim_{x\to a} f(x) = f(a) \]

— three conditions rolled into one short line: the limit exists, the value \( f(a) \) exists, and the two match. Intuitively, you can draw the graph through \( x = a \) without lifting your pen.

This is wonderfully convenient, because for continuous functions — polynomials, \( \sqrt{x} \), \( \sin x \), and so on — you can find a limit by direct substitution: just plug \( a \) in. Our hole example fails continuity at \( x = 1 \) only because \( f(1) \) is missing — the limit itself is perfectly well-behaved and equals \( 2 \). One absent point, and an otherwise smooth line stops being continuous there.

Why this is the doorway

Here is the payoff that limits unlock. The slope of a curve at a single point is the limit of the slopes of secant lines drawn through two nearby points, as those two points shrink toward one. The instantaneous speed of a moving object is the limit of its average speeds over shorter and shorter time intervals, as the interval shrinks toward an instant. In both cases the thing you actually want lives at a single point — where the naive calculation collapses to \( \tfrac{0}{0} \), just like our opening example. Limits are how mathematics finally pins down "at a single instant," turning the impossible into the routine. That is the threshold of calculus, and you are now standing on it.

Example Find \( \lim_{x\to 3} \dfrac{x^2 - 9}{x - 3} \).
  1. Try direct substitution first: at \( x = 3 \) we get \( \dfrac{9 - 9}{3 - 3} = \dfrac{0}{0} \), which is undefined — so we can't just plug in.
  2. Factor the top. The numerator is a difference of squares: \( x^2 - 9 = (x-3)(x+3) \).
  3. For every \( x \neq 3 \) the \( (x-3) \) cancels: \( \dfrac{(x-3)(x+3)}{x-3} = x + 3 \).
  4. Now the function heads for \( x + 3 \) near \( x = 3 \), so the limit is \( 3 + 3 = 6 \).

The limit is \( \mathbf{6} \) — even though the original expression is undefined at \( x = 3 \) itself.

Example Find \( \lim_{x\to 2} (3x + 1) \).
  1. This is a polynomial, and polynomials are continuous everywhere.
  2. For a continuous function the limit is just the value, so we substitute directly: \( 3(2) + 1 \).
  3. That gives \( 6 + 1 = 7 \).

The limit is \( \mathbf{7} \). No factoring needed — continuity does the work.

Practice

Try each one yourself, then reveal the full solution.

1. Evaluate \( \lim_{x\to 1} \dfrac{x^2 + 2x - 3}{x - 1} \).

Substituting \( x = 1 \) gives \( \tfrac{0}{0} \), so factor the top. We need two numbers multiplying to \( -3 \) and adding to \( 2 \): that's \( +3 \) and \( -1 \), so \( x^2 + 2x - 3 = (x+3)(x-1) \).

Cancel the \( (x-1) \): \( \dfrac{(x+3)(x-1)}{x-1} = x + 3 \) for \( x \neq 1 \).

So the limit is \( 1 + 3 = \mathbf{4} \).

2. Does \( \lim_{x\to 0} \dfrac{1}{x} \) exist?

Check each side separately. From the right, as \( x \to 0^+ \), \( \tfrac{1}{x} \to +\infty \). From the left, as \( x \to 0^- \), \( \tfrac{1}{x} \to -\infty \).

The two sides disagree — one races to \( +\infty \), the other to \( -\infty \) — so there is no single value being approached.

The limit does not exist. This is the classic blow-up.

3. Evaluate \( \lim_{x\to 4} \sqrt{x} \).

The square-root function \( \sqrt{x} \) is continuous for \( x \ge 0 \), so we can find the limit by direct substitution.

Substitute \( x = 4 \): \( \sqrt{4} = 2 \).

The limit is \( \mathbf{2} \).

You've reached the threshold

With limits in hand, the next stage — Calculus — is finally within reach. Everything that follows is built on this one quiet question. When you're ready, step back onto the full path and keep climbing.