The limit of f(x) as x approaches a is the value f(x) gets closer and closer to as x gets closer and closer to a — without x actually being a. That last clause matters. The limit is about the approach, not the arrival. The function might not even be defined at x=a, yet the limit can still exist and equal a specific number.

The Intuition — Approaching Without Arriving

Imagine standing 10 metres from a wall. You walk halfway to the wall — now you are 5 metres away. Then halfway again: 2.5 metres. Then 1.25, then 0.625… You keep halving the distance forever. In this thought experiment, you get arbitrarily close to the wall but never actually reach it. A limit asks: what are you approaching? The answer — the wall — is the limit.

This is the core idea. In mathematics, a limit describes the value a function is approaching as its input approaches some target — regardless of whether the function ever actually reaches that value at the target. The journey matters more than the arrival.

Key Idea

A limit does not ask "what is f(a)?" It asks "what value does f(x) get close to as x gets close to a?" The function may be undefined at a, or may have a different value there — the limit only cares about the behaviour in the neighbourhood of a.

Informal Definition of a Limit

The informal definition is: we say the limit of f(x) as x approaches a equals L if f(x) gets arbitrarily close to L whenever x is sufficiently close to a (but not equal to a).

limx→a f(x) = L
Read: "The limit of f(x) as x approaches a equals L"

Three things to notice about this notation:

Three Classic Examples

Example 1 A Limit That Equals the Function Value

Find lim (x→3) [x² + 1]

ThinkAs x gets close to 3, what does x² + 1 get close to? Try x = 2.9: (2.9)² + 1 = 9.41. x = 2.99: 9.9401. x = 2.999: 9.994...
AnswerThe values clearly approach 10. Direct substitution confirms: lim (x→3) [x² + 1] = (3)² + 1 = 10.
NoteHere the limit equals f(3) = 10. This means f is continuous at x = 3.
Example 2 A Limit Where the Function Has a Hole

Find lim (x→2) [(x² − 4) / (x − 2)]

ProblemDirect substitution gives (4 − 4)/(2 − 2) = 0/0 — undefined! But the limit can still exist.
Step 1Factor: (x² − 4) = (x − 2)(x + 2). Cancel: (x−2)(x+2)/(x−2) = x + 2, for x ≠ 2.
Step 2Now take the limit: lim (x→2) [x + 2] = 2 + 2 = 4.
Key Pointf(2) is undefined — there is a hole in the graph. Yet the limit exists and equals 4. This is a removable discontinuity.
Example 2 Visualised — Limit Exists Despite the Hole
x=2 y=4 hole: f(2) undefined y = x+2 x
Example 3 A Limit That Does Not Exist

Find lim (x→0) [1/x]

From rightAs x → 0⁺ (positive side): 1/0.1 = 10, 1/0.01 = 100, 1/0.001 = 1000 → grows to +∞
From leftAs x → 0⁻ (negative side): 1/(−0.1) = −10, 1/(−0.01) = −100 → grows to −∞
VerdictLeft and right limits disagree (one is +∞, other is −∞). The two-sided limit does not exist (DNE).

The Formal ε-δ Definition

The informal definition works for building intuition, but mathematics demands precision. The formal ε-δ (epsilon-delta) definition, given by Cauchy and Weierstrass in the 19th century, makes the idea of "approaching" completely rigorous.

limx→a f(x) = L means:

For every ε > 0, there exists δ > 0 such that:
if 0 < |x − a| < δ then |f(x) − L| < ε
ε (epsilon) controls how close f(x) must be to L. δ (delta) controls how close x must be to a.

In plain English: you name any target tolerance ε around L — no matter how small — and I can find a radius δ around a such that every x within that radius (except a itself) maps to an f(x) within your tolerance. If I can always do this, the limit equals L.

Why ε-δ Matters

The ε-δ definition is what makes calculus a proof — not just an intuition. You need it to rigorously prove derivative rules, justify integration, and verify theorems. In a first calculus course you may only need the intuition; in analysis, ε-δ is everything.

Limit Laws and Properties

You do not need to use the ε-δ definition every time. Limit laws let you break complex limits into simpler pieces:

Limit vs. Function Value — The Critical Distinction

There are three possible relationships between a limit and a function value at x = a:

"A limit is not about where you are — it is about where you are headed. It is calculus's way of making the infinite and the infinitesimal precise."
Frequently Asked Questions
Why can't we just plug in x = a to find the limit?
Often we can — this is called direct substitution, and it works whenever f is continuous at a. But many important limits involve cases where f(a) is undefined (0/0 forms), or where f(a) exists but we still need the limit's behaviour for theoretical reasons. The limit is a separate, more general concept than evaluation.
What is the difference between a two-sided limit and a one-sided limit?
A two-sided limit lim (x→a) f(x) requires x to approach a from both sides (left and right) and both approaches must agree. A one-sided limit only considers approach from one direction: lim (x→a⁻) is the left-hand limit, lim (x→a⁺) is the right-hand limit. The two-sided limit exists if and only if both one-sided limits exist and are equal.
Does lim f(x) = ∞ mean the limit exists?
Technically no — infinity is not a real number, so we say the limit "does not exist" in the strict sense but we write lim f(x) = ∞ as a useful shorthand to describe how the function behaves (it grows without bound). This is called an infinite limit. Some textbooks are more lenient about this terminology.
How does the Squeeze Theorem work?
The Squeeze Theorem says: if g(x) ≤ f(x) ≤ h(x) for all x near a, and both g and h approach the same limit L as x → a, then f must also approach L — it is "squeezed" between them. The classic use is proving lim (x→0) [x·sin(1/x)] = 0, by noting |x·sin(1/x)| ≤ |x| → 0.
← Basics Series
What are Limits? Easy Explanation
Next in Limits →
How to Solve Limits Step-by-Step
References & Further Reading
  • Stewart, J. (2015). Calculus, §2.2. Cengage.
  • Spivak, M. (2006). Calculus, Ch. 5. Publish or Perish.
  • Courant, R. & John, F. (1989). Introduction to Calculus and Analysis. Springer.
AM
Dr. Aisha Malik, PhD Mathematics
Senior Lecturer in Applied Mathematics · 12 years teaching calculus at university level

Dr. Malik holds a PhD in Applied Mathematics from the University of Edinburgh and has taught calculus to over 4,000 students at both undergraduate and postgraduate level. Her research focuses on numerical methods for differential equations. She has reviewed this article for mathematical accuracy and pedagogical clarity.

Technically reviewed by: Prof. James Chen, Stanford Mathematics Department