Navigation: Wiki Home > Skills > Secant Lines and the Difference Quotient
You already know how to find the slope of a line through two points. But what if you want to know the slope of a curved graph at a single point? A curve doesn't have a constant slope; it's steeper in some places and flatter in others.
Here's the key insight: if you zoom in far enough on any smooth curve, it starts to look like a straight line. The secant line is our tool for approximating that "zoomed-in" slope before we take the limit.
Think of it like this: if you're driving and want to know your exact speed at 2:00 PM, you could check how far you traveled between 1:00 PM and 3:00 PM and divide by 2 hours. That gives an average speed. But if you check between 1:59 PM and 2:01 PM, your average gets much closer to your actual speed at exactly 2:00 PM.
| Property | Value |
|---|---|
| Concept | Tangent and Velocity Problems |
| Chapter | 1.4 |
| Difficulty | Beginner |
| Time | ~15 minutes |
A secant line is a line that passes through two distinct points on a curve.
y
│ · curve
│ ·
│ Q·─────────── secant line
│ · ╲
│ · ╲
│P──────╲────────
│ ╲
└────────────────── x
If the curve is the graph of $y = f(x)$, and we pick two points:
Then the secant line connects $P$ and $Q$.
The slope of the secant line through $P$ and $Q$ is:
$$m_{PQ} = \frac{f(x) - f(a)}{x - a}$$
This expression is called the difference quotient. It measures the average rate of change of $f$ between $x = a$ and $x = x$.
Breaking it down:
Sometimes we write the second point as $x = a + h$ instead of just $x$. Then:
$$m_{PQ} = \frac{f(a+h) - f(a)}{h}$$
This is the same formula! Here $h$ represents how far the second point is from the first.
| Notation | Second Point | Difference Quotient |
|---|---|---|
| Using $x$ | $(x, f(x))$ | $\displaystyle\frac{f(x) - f(a)}{x - a}$ |
| Using $h$ | $(a+h, f(a+h))$ | $\displaystyle\frac{f(a+h) - f(a)}{h}$ |
The difference quotient is the foundation for:
As $Q$ gets closer to $P$ (i.e., as $x \to a$ or $h \to 0$), the secant line "pivots" toward the tangent line.
y
│ ·
│ · Q₁ (far)
│ · Q₂ (closer)
│ · Q₃ (very close)
P·─────────tangent
│
└────────────────── x
As Q approaches P, the secant
approaches the tangent.
For the function $f(x) = x^2$ and the points $P(1, 1)$ and $Q(3, 9)$:
(a) What is the value of $a$?
(b) What is the value of $x$ (or equivalently, $a + h$)?
(c) What is $f(a)$?
(d) What is $f(x)$?
Find the slope of the secant line through the points $(2, 4)$ and $(5, 25)$ on the parabola $y = x^2$.
For $f(x) = x^2 - 3x$, find the difference quotient $\displaystyle\frac{f(x) - f(2)}{x - 2}$ and simplify as much as possible.
For $f(x) = x^3$, compute the slope of the secant line from $(1, 1)$ to $(x, x^3)$ for:
(a) $x = 2$ (b) $x = 1.5$ (c) $x = 1.1$ (d) $x = 1.01$
What value does the secant slope seem to approach as $x$ gets closer to $1$?
For $f(x) = \dfrac{1}{x}$:
(a) Find the difference quotient $\displaystyle\frac{f(a+h) - f(a)}{h}$ in terms of $a$ and $h$.
(b) Simplify your answer completely.
(c) What happens to your expression as $h \to 0$? (Don't compute the limit formally, just substitute $h = 0$ into your simplified expression.)
The Zoom-In Camera:
Imagine pointing a camera at a curvy road and zooming in on one spot. From far away, you see all the curves and turns. But as you zoom in more and more, the road starts to look straighter and straighter.
The secant line is like measuring the slope with a wide-angle lens (using two separated points). As you zoom in (bringing the points closer), you get a better approximation of the road's direction at exactly that spot, which is the tangent line.
Looking back:
Looking ahead:
| Previous | Up | Next |
|---|---|---|
| Functions Review | Skills Index | Tangent Slope via Limits |
Last updated: 2026-01-22