A function f is continuous at a if we can force f(x) as close to f(a) as we like by keeping x close enough to a. Precisely, the ε–δ definition:
∀ε>0∃δ>0such that∣x−a∣<δ⇒∣f(x)−f(a)∣<ε. Again a challenge–response game: the adversary sets an output tolerance ε; you must supply an input window δ that keeps the output inside ε.
Worked example. Show f(x)=3x+1 is continuous at every a.
Given ε>0, notice ∣f(x)−f(a)∣=∣3x−3a∣=3∣x−a∣. Choose δ=3ε. Then ∣x−a∣<δ gives ∣f(x)−f(a)∣=3∣x−a∣<3δ=ε. Done — one clean choice of δ works for every a.