Maths I — Week 3: Limits and Continuity
1374 words
7 min read
View
Maths I — Week 3: Limits and Continuity
The Big Idea: A limit describes where a function is headed, not necessarily where it is. This distinction between "approaching" and "arriving" is the core conceptual leap into calculus. Continuity is simply the property that the function actually arrives where it's headed.
1. The Intuitive Limit
limx→af(x)=L
Means: As x gets arbitrarily close to a (from either side), f(x) gets arbitrarily close to L.
The limit only cares about the
approach to a, not what happens at a itself. A function can have a limit at a point even if it's undefined there.
1.1 One-Sided Limits
| Notation | Meaning |
|---|---|
| limx→a+f(x) | Right-Hand Limit (approaching from a+ϵ) |
| limx→a−f(x) | Left-Hand Limit (approaching from a−ϵ) |
The two-sided limit exists if and only if LHL = RHL.
2. The Formal (ϵ,δ) Definition
For every epsilon>0, there exists delta>0 such that:
0<∣x−a∣<δ⟹∣f(x)−L∣<ϵ
Plain English: "Give me any target tolerance ϵ around the output, and I'll find a corresponding input window δ around a that guarantees the output stays within that tolerance."
3. Limit Laws and Algebra
If limx→af(x)=L and limx→ag(x)=M:
| Law | Formula |
|---|---|
| Sum | lim[f+g]=L+M |
| Product | lim[f⋅g]=L⋅M |
| Quotient | lim[f/g]=L/M, provided M=0 |
| Power | lim[fn]=Ln |
4. Indeterminate Forms and Factoring
When direct substitution gives 00, factor and cancel.
Abstract Solution (Strategy) — 0/0 forms
- [Factor]: Factor numerator and denominator.
- [Cancel]: Cancel the common factor (x−a).
- [Substitute]: Now the plug-in works.
Worked Example:
limx→2x−2x2−4
- Direct sub: 0/0.
- Factor: (x−2)(x−2)(x+2)=x+2.
- Substitute: 2+2=4.
- Result: 4.
5. Standard Limits (Memorize These)
| Limit | Value |
|---|---|
| limx→0xsinx | 1 |
| limx→0x1−cosx | 0 |
| limx→0xex−1 | 1 |
| limx→0xln(1+x) | 1 |
| limx→∞(1+n1)n | e |
| limx→∞nn!n | e |
The standard limit
limu→0ueu−1=1 is extremely powerful. Any limit of the form n(e1/f(n)−1) as n→∞ can be resolved by substituting u=1/f(n)→0 and multiplying/dividing to match the form.
6. L'Hôpital's Rule
Used for: Indeterminate forms 00 or ∞∞ that can't be factored.
limx→cg(x)f(x)=limx→cg′(x)f′(x)
Critical Note: You differentiate the numerator and denominator separately — do NOT use the Quotient Rule.
L'Hôpital only applies when the original limit gives
0/0 or ∞/∞. Don't apply it to limits that already have a finite value after direct substitution.
7. Continuity — The Three Conditions
A function f is continuous at x=a if and only if all three hold:
- f(a) is defined.
- limx→af(x) exists (LHL = RHL).
- limx→af(x)=f(a) — the limit equals the function value.
All three conditions must hold simultaneously. A function failing even one is discontinuous at
a.
7.1 Types of Discontinuity
| Type | What fails | Example |
|---|---|---|
| Removable | f(a) ≠ limit, or f(a) undefined | x−1x2−1 at x=1 (a "hole") |
| Jump | LHL ≠ RHL (both finite) | Floor function ⌊x⌋ at integers |
| Infinite | Limit = ±∞ | x1 at x=0 (vertical asymptote) |
8. Pattern — Piecewise Continuity Check
What to recognize: A piecewise function asking for the value of a constant k that makes it continuous.
Abstract Solution (Strategy)
- [Identify the break point]: Usually the x-value where the formula changes.
- [Compute LHL and RHL]: Evaluate from each piece.
- [Equate to f(a)]: Set LHL = RHL = f(a) and solve for k.
Worked Example:
Find m+n if f(x)=⎩⎨⎧3mx+n115mx+2nx<1x=1x>1 is continuous at x=1.
- LHL: 3m+n=11.
- RHL: 5m+2n=11.
- Solve: From (1), n=11−3m. Sub into (2): 5m+22−6m=11⟹m=11.
- n=11−33=−22.
- m+n=11−22=−11.
- Result: −11.
9. The Intermediate Value Theorem (IVT)
Statement: If f is continuous on [a,b] and k is any value between f(a) and f(b), then there exists at least one c∈(a,b) such that f(c)=k.
Power Move: To prove a root exists in [a,b]:
- Show f is continuous on [a,b].
- Show f(a)<0 and f(b)>0 (or vice versa).
- By IVT, f(c)=0 for some c in between.
10. Floor Function Limits (⌊x⌋)
| Direction | Example | Value |
|---|---|---|
| Right-hand (a+) | limx→4+⌊x⌋ | 4 (just above 4) |
| Left-hand (a−) | limx→4−⌊x⌋ | 3 (just below 4 is still 3) |
Key rule: At any integer n, the floor function has a jump discontinuity: LHL = n−1, RHL = n.
11. Common Mistakes
| Mistake | Why it happens | Correct approach |
|---|---|---|
| Applying L'Hôpital to non-indeterminate forms | Habit of always differentiating. | Check: does direct substitution give 0/0 or ∞/∞? If not, don't use L'Hôpital. |
| Treating ⌊a−rfloor=a | Forgetting that "just below an integer" rounds down. | limx→n−⌊xrfloor=n−1 always. |
| Using the Quotient Rule in L'Hôpital | The idea is to differentiate numerator and denominator separately. | Compute f′(x) and g′(x) individually, then form the new fraction. |
| Confirming continuity without all 3 checks | Checking only that the limit exists. | All three: defined, limit exists, limit = value. |
12. Flashcards
<Flashcard front="What are the three conditions for continuity at x = a?" back="1. f(a) is defined. 2. lim f(x) as x→a exists. 3. The limit equals f(a)." /> <Flashcard front="What is the limit of (sin x)/x as x→0?" back="1. This is a standard limit — memorize it." /> <Flashcard front="What is a removable discontinuity?" back="The limit exists but f(a) is either undefined or doesn't equal the limit. Appears as a 'hole' in the graph." /> <Flashcard front="State the Intermediate Value Theorem." back="If f is continuous on [a,b], then for any value k between f(a) and f(b), there exists c in (a,b) with f(c) = k." /> <Flashcard front="Why does lim[x→4⁻] floor(x) = 3, not 4?" back="Approaching 4 from the left means x is like 3.999..., and the floor of 3.999 is 3, not 4." />13. Practice Targets
- Evaluate limx→0xe3x−1 using the standard limit identity.
- Determine continuity at every integer for g(x)=⌊2x⌋.
- Verify a root exists for h(x)=x3−x−1 in [1,2] using IVT.
- Attempt Week 3 Questions 11–13 (all limit/continuity based).
14. Connections
| Connects to | How |
|---|---|
| Week 4 — Derivatives | The derivative is defined as a limit. Mastering limits is prerequisite to differentiation. |
| Week 7 — Sequences | Sequence limits use the same degree-ratio and algebraic combination techniques. |
| Week 8 — L'Hôpital | Questions 8 explicitly applies L'Hôpital three times to a sin/polynomial expression. |