IMOClass 11 › Limits

Limits

Concept and Algebra of Limits

A limit describes the value a function approaches as its input creeps towards some number $a$ — not the value at $a$, which the function may never actually reach (or may not even be defined there). We write $\lim_{x \to a} f(x) = L$ to mean: as $x$ gets arbitrarily close to $a$, the output $f(x)$ gets arbitrarily close to $L$.

One-sided limits. Because $x$ can approach $a$ from two directions, we distinguish the left-hand limit (LHL), approaching through values smaller than $a$, and the right-hand limit (RHL), approaching through larger values:

$$\text{LHL} = \lim_{x \to a^-} f(x), \qquad \text{RHL} = \lim_{x \to a^+} f(x)$$

Existence of a limit. The limit at $a$ exists if and only if both one-sided limits exist and agree. This is the single most-tested idea of the topic:

$$\lim_{x \to a} f(x) \text{ exists} \iff \lim_{x \to a^-} f(x) = \lim_{x \to a^+} f(x)$$

If the two sides disagree — as happens at a jump — the limit simply does not exist, no matter how nicely the function behaves elsewhere.

Algebra of limits. Provided $\lim_{x \to a} f(x)$ and $\lim_{x \to a} g(x)$ both exist, limits respect the basic operations. Let $\lim f = L$ and $\lim g = M$:

LawStatement
Sum / Difference$\lim (f \pm g) = L \pm M$
Constant multiple$\lim (k\,f) = kL$
Product$\lim (f \cdot g) = L \cdot M$
Quotient$\lim \dfrac{f}{g} = \dfrac{L}{M}, \;\; M \ne 0$
Power$\lim \big(f\big)^{n} = L^{n}$

Polynomials and rational functions. Polynomials are continuous everywhere, so for any polynomial $p(x)$ you get the limit by direct substitution: $\lim_{x \to a} p(x) = p(a)$. For a rational function $\dfrac{p(x)}{q(x)}$, substitution works as long as $q(a) \ne 0$.

The $\dfrac{0}{0}$ form. When both numerator and denominator vanish at $a$, substitution gives the meaningless symbol $\dfrac{0}{0}$ — an indeterminate form. The cure is to factorise and cancel the common factor $(x - a)$ that is causing both to vanish, then substitute into what remains:

$$\lim_{x \to 2}\dfrac{x^2 - 4}{x - 2} = \lim_{x \to 2}\dfrac{(x-2)(x+2)}{x-2} = \lim_{x \to 2}(x+2) = 4$$

Deeper Insight — a limit is about the journey, not the destination: The whole power of the limit concept comes from a deliberate separation between what a function does near a point and what it is at that point. In the example above, $\dfrac{x^2-4}{x-2}$ is genuinely undefined at $x = 2$ — there is a hole in the graph — yet the limit is a perfectly definite $4$, because every nearby value of the function is close to $4$. This is exactly why cancelling the factor $(x-2)$ is legitimate: for all $x \ne 2$ the two expressions are identical, and the limit only ever cares about $x \ne a$. The $\dfrac{0}{0}$ symbol is not an answer but a signal that a hidden common factor is masking the true behaviour, and learning to read that signal — factor, rationalise, or simplify — is the skill that the entire calculus syllabus is built upon.

Function approaching a limit value L from both sides A Limit: f(x) → L as x → a La from left →← from right LHL = RHL = L, even though f(a) may be undefined Removable hole created by a zero over zero form 0/0 form: a removable hole 42 y = (x²−4)/(x−2) undefined at x = 2, but limit = 4
Example 1: Evaluate $\lim_{x \to 3}\,(2x^2 - 5x + 1)$.
  1. A polynomial is continuous everywhere, so use direct substitution.
  2. $2(3)^2 - 5(3) + 1 = 18 - 15 + 1 = 4$.

Answer: $\lim_{x \to 3}\,(2x^2 - 5x + 1) = 4$.

Example 2: Evaluate $\lim_{x \to 1}\dfrac{x^2 - 1}{x - 1}$.
  1. Substituting $x = 1$ gives $\dfrac{0}{0}$ — an indeterminate form.
  2. Factorise the numerator: $x^2 - 1 = (x - 1)(x + 1)$.
  3. Cancel the common factor $(x - 1)$: $\dfrac{(x-1)(x+1)}{x-1} = x + 1$ for $x \ne 1$.
  4. Now substitute: $\lim_{x \to 1}(x + 1) = 2$.

Answer: $\lim_{x \to 1}\dfrac{x^2 - 1}{x - 1} = 2$.

Example 3: Test whether $\lim_{x \to 0} f(x)$ exists for $f(x) = \begin{cases} x + 2, & x < 0 \\ 3 - x, & x \ge 0 \end{cases}$.
  1. Left-hand limit: $\lim_{x \to 0^-}(x + 2) = 0 + 2 = 2$.
  2. Right-hand limit: $\lim_{x \to 0^+}(3 - x) = 3 - 0 = 3$.
  3. Since LHL $= 2 \ne 3 = $ RHL, the one-sided limits disagree.

Answer: The limit does not exist at $x = 0$ (a jump).

Example 4: Evaluate $\lim_{x \to 2}\dfrac{x^2 - 5x + 6}{x^2 - 4}$.
  1. Substituting $x = 2$ gives $\dfrac{0}{0}$, so factorise both parts.
  2. Numerator: $x^2 - 5x + 6 = (x - 2)(x - 3)$.
  3. Denominator: $x^2 - 4 = (x - 2)(x + 2)$.
  4. Cancel $(x - 2)$: $\dfrac{x - 3}{x + 2}$, then substitute: $\dfrac{2 - 3}{2 + 2} = -\dfrac{1}{4}$.

Answer: $\lim_{x \to 2}\dfrac{x^2 - 5x + 6}{x^2 - 4} = -\dfrac{1}{4}$.

Example 5: Evaluate $\lim_{x \to 0}\dfrac{\sqrt{1 + x} - 1}{x}$.
  1. Direct substitution gives $\dfrac{0}{0}$; rationalise by multiplying by the conjugate $\sqrt{1+x}+1$.
  2. $\dfrac{(\sqrt{1+x}-1)(\sqrt{1+x}+1)}{x(\sqrt{1+x}+1)} = \dfrac{(1+x) - 1}{x(\sqrt{1+x}+1)} = \dfrac{x}{x(\sqrt{1+x}+1)}$.
  3. Cancel $x$: $\dfrac{1}{\sqrt{1+x}+1}$, then substitute $x = 0$: $\dfrac{1}{1 + 1} = \dfrac{1}{2}$.

Answer: $\lim_{x \to 0}\dfrac{\sqrt{1 + x} - 1}{x} = \dfrac{1}{2}$.

Example 6: Given $\lim_{x \to a} f(x) = 4$ and $\lim_{x \to a} g(x) = -2$, find $\lim_{x \to a}\dfrac{3f(x) + g(x)}{f(x)\,g(x)}$.
  1. Apply the algebra of limits term by term.
  2. Numerator: $3(4) + (-2) = 12 - 2 = 10$.
  3. Denominator: $f \cdot g \to (4)(-2) = -8$, which is non-zero, so the quotient law applies.
  4. Divide: $\dfrac{10}{-8} = -\dfrac{5}{4}$.

Answer: $\lim_{x \to a}\dfrac{3f(x) + g(x)}{f(x)\,g(x)} = -\dfrac{5}{4}$.

Quick recap
  • A limit captures what $f(x)$ approaches near $a$, not its value at $a$.
  • $\lim_{x \to a} f(x)$ exists only if LHL $=$ RHL.
  • For polynomials and well-defined rational functions, use direct substitution.
  • The $\dfrac{0}{0}$ form is indeterminate — factorise and cancel (or rationalise) the common factor.
  • Limits distribute over sums, products and quotients provided each piece exists (denominator $\ne 0$).
✓ Quick check
Find lim(x→3) [ x² − 5x + 6 ] / [ x² − 8x + 15 ].
Factor both polynomials. Numerator: (x − 2)(x − 3). Denominator: (x − 5)(x − 3). Cancel (x − 3) to get (x − 2) / (x − 5). Substitute x = 3: (3 − 2) / (3 − 5) = 1 / (−2) = −1/2.
Calculate lim(x→0) (sin 2x + sin 3x) / (2x).
Separate the fractions: [ (sin 2x)/(2x) ] + [ (sin 3x)/(2x) ]. First limit is 1. Second can be written as (3/2) × [ (sin 3x)/(3x) ] = (3/2) × 1. Sum = 1 + 3/2 = 5/2.

Standard Limits

Some limits arise so often that they are worth committing to memory as standard results. Each is itself a $\dfrac{0}{0}$ form that cannot be cracked by simple cancellation, yet each settles to a clean value. Knowing them turns long derivations into one-line substitutions.

The trigonometric limit. The cornerstone of calculus with angles — valid only when $x$ is measured in radians:

$$\lim_{x \to 0}\dfrac{\sin x}{x} = 1$$

An immediate companion follows from it: $\lim_{x \to 0}\dfrac{\tan x}{x} = 1$, since $\tan x = \dfrac{\sin x}{\cos x}$ and $\cos x \to 1$.

The exponential and logarithmic limits. These power the derivatives of $e^x$, $a^x$ and $\ln x$:

$$\lim_{x \to 0}\dfrac{e^x - 1}{x} = 1, \qquad \lim_{x \to 0}\dfrac{a^x - 1}{x} = \ln a \;\; (a > 0)$$

The power limit. A purely algebraic result that generalises difference-of-powers factorisation to any real index $n$:

$$\lim_{x \to a}\dfrac{x^n - a^n}{x - a} = n\,a^{\,n - 1}$$

Collected together for quick reference:

Standard limitValue
$\lim_{x \to 0}\dfrac{\sin x}{x}$$1$
$\lim_{x \to 0}\dfrac{\tan x}{x}$$1$
$\lim_{x \to 0}\dfrac{1 - \cos x}{x^2}$$\dfrac{1}{2}$
$\lim_{x \to 0}\dfrac{e^x - 1}{x}$$1$
$\lim_{x \to 0}\dfrac{a^x - 1}{x}$$\ln a$
$\lim_{x \to 0}\dfrac{\log(1 + x)}{x}$$1$
$\lim_{x \to a}\dfrac{x^n - a^n}{x - a}$$n\,a^{\,n-1}$

How to use them. The trick is to massage the expression until it matches a standard shape exactly. To evaluate $\lim_{x \to 0}\dfrac{\sin 5x}{x}$, write it as $5 \cdot \dfrac{\sin 5x}{5x}$; as $x \to 0$ the angle $5x \to 0$ too, so $\dfrac{\sin 5x}{5x} \to 1$ and the limit is $5$.

Deeper Insight — why radians, and why these limits are the seeds of differentiation: The result $\lim_{x \to 0}\tfrac{\sin x}{x}=1$ holds only in radians, and that is no accident: the radian is defined precisely so that, for tiny angles, the arc length and the vertical sine are practically equal, which is what makes the ratio tend to $1$. Switch to degrees and you would instead get $\tfrac{\pi}{180}$, contaminating every trigonometric derivative — this is the deep reason calculus always uses radians. More broadly, every standard limit here is really a derivative in disguise evaluated at a single point: $\lim_{x\to 0}\tfrac{e^x-1}{x}$ is the slope of $e^x$ at $x=0$, and $\lim_{x\to a}\tfrac{x^n-a^n}{x-a}$ is the slope of $x^n$ at $x=a$. Recognising them as building blocks, rather than isolated facts to memorise, is what lets you derive the rules of the next topic instead of merely recalling them.

Graph of sin x over x approaching 1 at the origin y = (sin x)/x → 1 as x → 0 1 0 hole at x = 0, but both sides rise to 1 (radians) Slope of exponential curve at the origin equals one (eˣ − 1)/x → 1: slope of eˣ at 0 (0, 1) y = eˣ tangent has slope 1
Example 1: Evaluate $\lim_{x \to 0}\dfrac{\sin 5x}{x}$.
  1. Reshape to match $\dfrac{\sin(\cdot)}{(\cdot)}$: multiply and divide by $5$.
  2. $\dfrac{\sin 5x}{x} = 5 \cdot \dfrac{\sin 5x}{5x}$.
  3. As $x \to 0$, the angle $5x \to 0$, so $\dfrac{\sin 5x}{5x} \to 1$.
  4. Therefore the limit is $5 \times 1 = 5$.

Answer: $\lim_{x \to 0}\dfrac{\sin 5x}{x} = 5$.

Example 2: Evaluate $\lim_{x \to 0}\dfrac{\sin 3x}{\sin 7x}$.
  1. Force each sine over its own angle by inserting $3x$ and $7x$.
  2. $\dfrac{\sin 3x}{\sin 7x} = \dfrac{\sin 3x}{3x} \cdot \dfrac{7x}{\sin 7x} \cdot \dfrac{3x}{7x}$.
  3. As $x \to 0$: $\dfrac{\sin 3x}{3x} \to 1$ and $\dfrac{7x}{\sin 7x} \to 1$, leaving $\dfrac{3}{7}$.

Answer: $\lim_{x \to 0}\dfrac{\sin 3x}{\sin 7x} = \dfrac{3}{7}$.

Example 3: Evaluate $\lim_{x \to 0}\dfrac{1 - \cos x}{x^2}$.
  1. Use the identity $1 - \cos x = 2\sin^2\dfrac{x}{2}$.
  2. $\dfrac{2\sin^2(x/2)}{x^2} = \dfrac{2\sin^2(x/2)}{4\,(x/2)^2} = \dfrac{1}{2}\left(\dfrac{\sin(x/2)}{x/2}\right)^2$.
  3. As $x \to 0$, $\dfrac{\sin(x/2)}{x/2} \to 1$, so the bracket squared $\to 1$.
  4. Limit $= \dfrac{1}{2} \times 1 = \dfrac{1}{2}$.

Answer: $\lim_{x \to 0}\dfrac{1 - \cos x}{x^2} = \dfrac{1}{2}$.

Example 4: Evaluate $\lim_{x \to 0}\dfrac{e^{2x} - 1}{x}$.
  1. Reshape to match $\dfrac{e^{(\cdot)} - 1}{(\cdot)}$ by inserting $2x$.
  2. $\dfrac{e^{2x} - 1}{x} = 2 \cdot \dfrac{e^{2x} - 1}{2x}$.
  3. As $x \to 0$, $2x \to 0$, so $\dfrac{e^{2x} - 1}{2x} \to 1$.
  4. Limit $= 2 \times 1 = 2$.

Answer: $\lim_{x \to 0}\dfrac{e^{2x} - 1}{x} = 2$.

Example 5: Evaluate $\lim_{x \to 2}\dfrac{x^5 - 32}{x - 2}$.
  1. This is the standard form $\lim_{x \to a}\dfrac{x^n - a^n}{x - a} = n\,a^{\,n-1}$ with $a = 2$ (since $32 = 2^5$).
  2. Here $n = 5$ and $a = 2$.
  3. Apply the formula: $n\,a^{\,n-1} = 5 \cdot 2^{4} = 5 \times 16 = 80$.

Answer: $\lim_{x \to 2}\dfrac{x^5 - 32}{x - 2} = 80$.

Example 6: Evaluate $\lim_{x \to 0}\dfrac{3^x - 1}{x}$.
  1. This is the standard exponential form $\lim_{x \to 0}\dfrac{a^x - 1}{x} = \ln a$.
  2. Here $a = 3$.
  3. So the limit equals $\ln 3$.

Answer: $\lim_{x \to 0}\dfrac{3^x - 1}{x} = \ln 3$.

Quick recap
  • $\lim_{x \to 0}\dfrac{\sin x}{x} = 1$ holds only in radians; $\lim_{x \to 0}\dfrac{\tan x}{x} = 1$ follows.
  • $\lim_{x \to 0}\dfrac{e^x - 1}{x} = 1$ and $\lim_{x \to 0}\dfrac{a^x - 1}{x} = \ln a$.
  • $\lim_{x \to a}\dfrac{x^n - a^n}{x - a} = n\,a^{\,n-1}$ for any real index $n$.
  • To use a standard limit, massage the expression so the angle (or exponent) and its denominator match exactly.
  • $\lim_{x \to 0}\dfrac{1 - \cos x}{x^2} = \dfrac{1}{2}$ is a frequent supporting result.
✓ Quick check
Evaluate lim(x→3) (x − 3)/(x² − 9).
x²−9=(x−3)(x+3). Limit = 1/(x+3) = 1/6.
lim(x→2) (x³ − 8)/(x − 2) equals:
x³−8=(x−2)(x²+2x+4). Substituting x=2 gives 4+4+4=12.

Infinity and Indeterminate Forms

For limits at infinity of rational functions, compare degrees (divide by the highest power). Forms like 0/0 and ∞/∞ need algebra first.

Example 1: lim(x→∞) (3x² + 1)/(x² + 5).
Ratio of leading coefficients = 3.
Example 2: lim(x→∞) 1/x.
0.
Quick recap
  • At infinity, compare degrees of numerator and denominator.
  • Resolve 0/0 by factor/rationalise before substituting.
✓ Quick check
The amount in a savings account with continuous compounding is A = P e^(rt). To find the rate of change of the multiplier over time near 0, evaluate lim(t→0) (e^(rt) − 1) / t.
Using standard limit lim(t→0) (e^(at) − 1)/t = a. Here, a = r, so the limit is the continuous interest rate r.
A shopkeeper's profit P(x)=x²+100. As sales variable x approaches 10, profit approaches:
As x → 10, P(x) → 10² + 100 = 200, so the limiting profit is ₹200.
Ready to test this chapter?
Take the Chapter Test →