4.1.6 · D3Calculus I — Limits & Derivatives

Worked examples — Important limits — lim(sin x - x) = 1, lim((1+1 - n)ⁿ) = e

2,187 words10 min readBack to topic

The scenario matrix

Every problem built on these two limits falls into one of the cells below. The right column names the example that lands in that cell.

# Cell (what makes it different) Which limit Trap it hides Example
1 , plain rescale sin forgetting to match arguments A
2 Higher power , needs the helper sin splitting the power wrong B
3 Two-sided check: does the limit exist as too? (sign of ) sin assuming even/odd blindly C
4 Geometric / word problem (arc vs chord shrinking) sin reading the picture wrong D
5 Degrees, not radians (the " is a lie" case) sin using radian value in degrees E
6 with negative sign of the exponent F
7 Base doesn't shrink like (degenerate ) pattern-matching too fast G
8 Real-world compound growth (continuous interest) choosing the wrong H
9 Exam twist: mix both limits in one expression both evaluating pieces separately when you can't I

Rows 1–5 stress the sin limit across sign, power, dimension, and units. Rows 6–8 stress the limit across sign and degeneracy. Row 9 is the boss fight.

Before anything, the two engines we keep reusing. Everything below is one of these, disguised:


Example A — plain rescale (cell 1)


Example B — higher power, needs the cosine helper (cell 2)


Example C — the sign of : does the limit exist from both sides? (cell 3)


Example D — geometric word problem: arc vs chord (cell 4)


Example E — degrees, not radians (cell 5)


Example F — the limit with a negative constant (cell 6)


Example G — degenerate : base shrinks too fast (cell 7)


Example H — real-world continuous compounding (cell 8)


Example I — the boss fight: both limits at once (cell 9)


Recall

Recall Which cell is which — cover and name the trap
  • Example E's trap ::: using the radian value when the argument is in degrees; true answer .
  • Example G's trap ::: pattern-matching to when the base bump is , not ; answer is .
  • Example F's trap ::: dropping the sign of ; answer is , not .
  • Tool that makes Example B possible ::: the Taylor Series of , since alone can't reach an order limit.
  • Why Example C's limit is even ::: is odd, denominator flips too, minus signs cancel.

Connections