Salick Academy

A limit describes what a function approaches, not what it equals. That distinction is why x24x2\dfrac{x^2-4}{x-2} has a perfectly good limit at x=2x = 2 even though the function is undefined there — and it is the idea the whole of calculus is built on.

The idea of a limit

limxaf(x)=L\lim_{x \to a} f(x) = L

means: as xx gets arbitrarily close to aa (from either side), f(x)f(x) gets arbitrarily close to LL.

The value f(a)f(a) is irrelevant to the limit. The function may be undefined at aa, or defined with a completely different value, and the limit is unaffected.

For f(x)=x24x2f(x) = \dfrac{x^2-4}{x-2}, substituting x=2x = 2 gives 00\frac00 — meaningless. But for every x2x \ne 2,

x24x2=(x2)(x+2)x2=x+2\frac{x^2-4}{x-2} = \frac{(x-2)(x+2)}{x-2} = x+2

so as x2x \to 2 the function approaches 44.

limx2x24x2=4\lim_{x\to2}\frac{x^2-4}{x-2} = 4

One-sided limits

limxa\lim_{x\to a^-} approaches from the left, limxa+\lim_{x\to a^+} from the right. The two-sided limit exists only if both agree.

For f(x)=xxf(x) = \dfrac{|x|}{x}, the left limit at 0 is 1-1 and the right limit is +1+1. They differ, so limx0f(x)\lim_{x\to0} f(x) does not exist.

Limit laws

Provided the individual limits exist:

lim(f±g)=limf±limg\lim(f \pm g) = \lim f \pm \lim g lim(fg)=(limf)(limg)\lim(fg) = (\lim f)(\lim g) limfg=limflimgprovided limg0\lim\frac{f}{g} = \frac{\lim f}{\lim g} \quad \text{provided } \lim g \ne 0 lim(kf)=klimf\lim(kf) = k\lim f

For a polynomial, or any function continuous at aa, the limit is simply the value:

limx2(3x+1)=7\lim_{x\to2}(3x+1) = 7

Evaluating limits

Step 1: substitute. If you get a number, that is the answer.

Step 2: if you get 00\frac00 — an indeterminate form — the expression must be simplified before substituting.

By factorising:

limx3x29x2x6=limx3(x3)(x+3)(x3)(x+2)=limx3x+3x+2=65\lim_{x\to3}\frac{x^2-9}{x^2-x-6} = \lim_{x\to3}\frac{(x-3)(x+3)}{(x-3)(x+2)} = \lim_{x\to3}\frac{x+3}{x+2} = \frac65

By rationalising, when roots are involved:

limx0x+42x=limx0(x+4)4x(x+4+2)=limx01x+4+2=14\lim_{x\to0}\frac{\sqrt{x+4}-2}{x} = \lim_{x\to0}\frac{(x+4)-4}{x\left(\sqrt{x+4}+2\right)} = \lim_{x\to0}\frac{1}{\sqrt{x+4}+2} = \frac14

Limits at infinity

Divide every term by the highest power of xx in the denominator, then use 1xn0\dfrac{1}{x^n} \to 0.

limx3x2+2xx25=limx3+2x15x2=31=3\lim_{x\to\infty}\frac{3x^2+2x}{x^2-5} = \lim_{x\to\infty}\frac{3 + \frac2x}{1 - \frac{5}{x^2}} = \frac{3}{1} = 3

limx2x+1x2+3=limx2x+1x21+3x2=0\lim_{x\to\infty}\frac{2x+1}{x^2+3} = \lim_{x\to\infty}\frac{\frac2x + \frac{1}{x^2}}{1 + \frac{3}{x^2}} = 0

The pattern for rational functions:

Degrees Limit
top < bottom 00
top = bottom ratio of leading coefficients
top > bottom does not exist (grows without bound)

Special trigonometric limits

limθ0sinθθ=1limθ01cosθθ=0\lim_{\theta\to0}\frac{\sin\theta}{\theta} = 1 \qquad \lim_{\theta\to0}\frac{1-\cos\theta}{\theta} = 0

with θ\theta in radians. The first says that for small angles sinθθ\sin\theta \approx \theta — which is why radians are the natural unit for calculus.

Adapting the first result:

limx0sin3xx=limx0 3sin3x3x=3(1)=3\lim_{x\to0}\frac{\sin 3x}{x} = \lim_{x\to0}\ 3 \cdot \frac{\sin 3x}{3x} = 3(1) = 3

limx0sin5xsin2x=limx0sin5x5x5xsin2x2x2x=52\lim_{x\to0}\frac{\sin 5x}{\sin 2x} = \lim_{x\to0}\frac{\frac{\sin 5x}{5x}\cdot 5x}{\frac{\sin 2x}{2x}\cdot 2x} = \frac{5}{2}

Continuity

ff is continuous at x=ax = a if all three of these hold:

  1. f(a)f(a) is defined;
  2. limxaf(x)\lim_{x\to a} f(x) exists;
  3. limxaf(x)=f(a)\lim_{x\to a} f(x) = f(a).

Informally: you can draw the graph through that point without lifting your pen.

x24x2\dfrac{x^2-4}{x-2} is not continuous at x=2x = 2 — the limit exists but f(2)f(2) does not. This is a removable discontinuity: defining f(2)=4f(2) = 4 repairs it.

Polynomials are continuous everywhere. Rational functions are continuous except where the denominator vanishes.

The derivative from first principles

Every derivative rule you will meet comes from one limit:

f(x)=limh0f(x+h)f(x)hf'(x) = \lim_{h\to0}\frac{f(x+h) - f(x)}{h}

This is the gradient of a chord as its width shrinks to zero.

Differentiate f(x)=x2f(x) = x^2 from first principles.

f(x)=limh0(x+h)2x2hf'(x) = \lim_{h\to0}\frac{(x+h)^2 - x^2}{h} =limh0x2+2xh+h2x2h= \lim_{h\to0}\frac{x^2 + 2xh + h^2 - x^2}{h} =limh02xh+h2h= \lim_{h\to0}\frac{2xh + h^2}{h} =limh0(2x+h)= \lim_{h\to0}(2x + h) =2x= 2x

And f(x)=x3f(x) = x^3:

(x+h)3x3h=3x2h+3xh2+h3h=3x2+3xh+h2  3x2\frac{(x+h)^3 - x^3}{h} = \frac{3x^2h + 3xh^2 + h^3}{h} = 3x^2 + 3xh + h^2 \ \longrightarrow \ 3x^2