How do you find the slope of a curve at a single point? This sounds impossible—slope requires two points, but a tangent line "touches" the curve at just one point.
The answer is elegant: use two points, but bring them infinitely close together. The secant line's slope approaches the tangent line's slope as the second point slides toward the first. This "approaching" is made precise with a limit.
This single idea—the limit of a difference quotient—is the foundation of differential calculus. Every derivative you'll ever compute uses this concept.
| Property | Value |
|---|---|
| Concept | Tangent and Velocity Problems |
| Chapter | 1.4 |
| Difficulty | Intermediate |
| Time | ~20 minutes |
The tangent line to the curve $y = f(x)$ at the point $P(a, f(a))$ is the line through $P$ with slope:
$$\boxed{m = \lim_{x \to a} \frac{f(x) - f(a)}{x - a}}$$
provided this limit exists.
Alternative form using $h$:
$$\boxed{m = \lim_{h \to 0} \frac{f(a+h) - f(a)}{h}}$$
Both formulas say the same thing: take the difference quotient (secant slope) and let the two points merge.
Step 1: Identify the point P(a, f(a))
Step 2: Write the difference quotient
f(x) - f(a)
───────────
x - a
Step 3: Simplify algebraically
(Usually factor and cancel)
Step 4: Take the limit as x → a
(Now you can substitute x = a)
Step 5: Write the tangent line equation
y - f(a) = m(x - a)
y
│ · curve
│ ·
│ Q₁·───────── secant 1 (slope far from m)
│ Q₂·────── secant 2 (slope closer to m)
│ Q₃·───── secant 3 (slope very close to m)
│ P·───────────── tangent (slope = m exactly)
│·
└────────────────────── x
As Q → P, the secant slopes → tangent slope
You cannot just plug $x = a$ into $\frac{f(x)-f(a)}{x-a}$ directly—you'd get $\frac{0}{0}$, which is undefined.
The key insight: for most functions, the numerator contains a factor of $(x - a)$ that cancels with the denominator. After canceling, you can safely substitute.
Example: For $f(x) = x^2$ at $a = 1$: $$\frac{x^2 - 1}{x - 1} = \frac{(x-1)(x+1)}{x-1} = x + 1$$
Now taking $\lim_{x \to 1}(x + 1) = 2$ works fine.
| Expression Type | Simplification Strategy |
|---|---|
| Polynomial $f(x)$ | Factor numerator, cancel $(x-a)$ |
| $\sqrt{\text{something}}$ | Multiply by conjugate |
| $\frac{1}{\text{something}}$ | Find common denominator |
| Trig functions | Use trig identities |
Which of the following represents the slope of the tangent line to $f(x) = x^3$ at $x = 2$?
(A) $\displaystyle\frac{f(3) - f(2)}{3 - 2}$
(B) $\displaystyle\lim_{x \to 2} \frac{x^3 - 8}{x - 2}$
(C) $\displaystyle\frac{x^3 - 8}{x - 2}$ evaluated at $x = 2$
(D) $f(2) \cdot 2$
Find the slope of the tangent line to $y = x^2$ at the point $(3, 9)$.
Find the equation of the tangent line to $f(x) = x^2 + 2x$ at $x = 1$.
Find the slope of the tangent line to $\displaystyle f(x) = \frac{1}{x}$ at the point $(2, \frac{1}{2})$.
Find the equation of the tangent line to $f(x) = \sqrt{x}$ at the point $(4, 2)$.
Hint: Multiply numerator and denominator by the conjugate.
The Slow-Motion Collision:
Imagine two cars on a curve, one at point $P$ and one at point $Q$. As $Q$ drives toward $P$ in slow motion, the line connecting them rotates smoothly. At the exact moment of "collision" (when $Q$ reaches $P$), the line's direction is the tangent direction.
The limit captures this moment of contact—not the before, not the after, but the exact instant.
Looking back:
Looking ahead:
Common Errors:
| Previous | Up | Next |
|---|---|---|
| Secant Lines | Skills Index | Instantaneous Velocity |
Last updated: 2026-01-22