Navigation: Wiki Home > Skills > Finding Tangent Lines Using the Derivative
A tangent line to a curve at a point has a special property: it touches the curve at that point and has the same "steepness" as the curve. If you zoom in far enough on the point, the curve and the tangent line become indistinguishable.
But how do we actually find the equation of this tangent line? We need two things:
Once we have these, the point-slope form gives us the tangent line equation.
| Property | Value |
|---|---|
| Section | Stewart 2.1 |
| Course | MATH161 |
| Difficulty | Intermediate |
| Time | ~15 minutes |
The tangent line to $y = f(x)$ at the point $(a, f(a))$ has equation:
$$\boxed{y - f(a) = f'(a)(x - a)}$$
or equivalently:
$$y = f(a) + f'(a)(x - a)$$
The ingredients:
Tangent line: y - f(a) = f'(a)(x - a)
↗
/
/ slope = f'(a)
───●───────────── curve y = f(x)
/
/ Point of tangency: (a, f(a))
/
As you zoom in on the point $(a, f(a))$, the curve looks more and more like the tangent line.
Step 1: Identify the point of tangency $(a, f(a))$
Step 2: Compute $f'(a)$ using the limit definition
Step 3: Write the tangent line equation: $y - f(a) = f'(a)(x - a)$
Step 4: Simplify to slope-intercept form if requested
Step 1: Find the point of tangency.
At $x = 1$: $f(1) = 1 + 2 = 3$
Point: $(1, 3)$
Step 2: Compute $f'(1)$.
$$f'(1) = \lim_{h \to 0} \frac{f(1+h) - f(1)}{h} = \lim_{h \to 0} \frac{[(1+h)^2 + 2(1+h)] - 3}{h}$$
Expand: $$= \lim_{h \to 0} \frac{1 + 2h + h^2 + 2 + 2h - 3}{h} = \lim_{h \to 0} \frac{4h + h^2}{h} = \lim_{h \to 0}(4 + h) = 4$$
Step 3: Write the tangent line.
$$y - 3 = 4(x - 1)$$
Step 4: Simplify.
$$y = 4x - 4 + 3 = 4x - 1$$
The tangent line is $y = 4x - 1$.
If $f(3) = 7$ and $f'(3) = -2$, write an equation for the tangent line to $y = f(x)$ at $x = 3$.
Find an equation of the tangent line to the curve $y = x^2 - 4x + 3$ at the point $(2, -1)$.
Find an equation of the tangent line to the curve $y = \dfrac{2}{x+1}$ at the point where $x = 1$.
The tangent line to $y = f(x)$ at the point $(4, 3)$ passes through the point $(0, 1)$. Find $f(4)$ and $f'(4)$.
For the function $f(x) = x^3 - 6x^2 + 9x + 2$:
(a) Use the limit definition to find a formula for $f'(a)$.
(b) Find all points on the curve where the tangent line is horizontal.
(c) Find the equations of these horizontal tangent lines.
Which statement is TRUE about the tangent line to a curve at a point?
(A) The tangent line crosses the curve exactly once
(B) The tangent line never crosses the curve
(C) The tangent line touches the curve at the point of tangency and has the same slope as the curve there
(D) The tangent line is always horizontal
The Best Approximation: The tangent line is the "best straight-line approximation" to a curve near a point. If you can only use a straight line to estimate the curve, the tangent line gives the smallest error near the point of tangency.
This is why tangent lines matter for applications: near $x = a$, we have $f(x) \approx f(a) + f'(a)(x - a)$, which is just the tangent line!
Looking back:
Looking ahead:
| Previous | Up | Next |
|---|---|---|
| Derivative Definition | Skills Index | Instantaneous Velocity |
Last updated: 2026-01-22