← MathScape

Tangent Slope via Limits

MATH161
Reference: Stewart 2.1  •  Chapter: 1  •  Section: 1

Navigation: Wiki Home > Skills > Tangent Slope via Limits

Tangent Slope via Limits

The Question That Launched Calculus

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.

Prerequisite Map

This skill
Tangent Slope via Limits

Quick Reference

Property Value
Concept Tangent and Velocity Problems
Chapter 1.4
Difficulty Intermediate
Time ~20 minutes

Key Concepts

The Tangent Line Definition

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.

The Process: From Secant to Tangent

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)

Visual Understanding

        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

Why Simplification is Essential

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.

Common Algebraic Techniques

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

Practice Problems

Level 1 Recognize the Setup

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$

Thought Process

The tangent slope requires a limit of the difference quotient.

  • (A) is just a secant slope (no limit)
  • (B) has the correct limit structure
  • (C) would give $\frac{0}{0}$ (undefined)
  • (D) is not related to the definition
Show Answer

(B) $\displaystyle\lim_{x \to 2} \frac{x^3 - 8}{x - 2}$

This is the definition of tangent slope with $f(x) = x^3$, $a = 2$, and $f(a) = f(2) = 8$.

Level 2 Compute a Tangent Slope

Find the slope of the tangent line to $y = x^2$ at the point $(3, 9)$.

Thought Process
  1. Set up the limit: $\displaystyle\lim_{x \to 3} \frac{x^2 - 9}{x - 3}$
  2. Factor the numerator: $x^2 - 9 = (x-3)(x+3)$
  3. Cancel $(x-3)$ from numerator and denominator
  4. Evaluate the limit by substitution
Show Answer

$$m = \lim_{x \to 3} \frac{x^2 - 9}{x - 3} = \lim_{x \to 3} \frac{(x-3)(x+3)}{x-3} = \lim_{x \to 3} (x + 3) = 6$$

The tangent slope at $(3, 9)$ is $\boxed{6}$.

Level 3 Tangent Line Equation

Find the equation of the tangent line to $f(x) = x^2 + 2x$ at $x = 1$.

Thought Process

Two things are needed for a line equation:

  1. A point: $(1, f(1))$
  2. A slope: $m = \lim_{x \to 1} \frac{f(x) - f(1)}{x - 1}$

Compute $f(1) = 1 + 2 = 3$, so the point is $(1, 3)$.

For the limit:

  • $f(x) - f(1) = (x^2 + 2x) - 3 = x^2 + 2x - 3$
  • Factor: $x^2 + 2x - 3 = (x+3)(x-1)$
  • Cancel and evaluate

Then use point-slope form: $y - 3 = m(x - 1)$

Show Answer

Step 1: Find the point. $f(1) = 1^2 + 2(1) = 3$, so the point is $(1, 3)$.

Step 2: Find the slope. $$m = \lim_{x \to 1} \frac{(x^2 + 2x) - 3}{x - 1} = \lim_{x \to 1} \frac{x^2 + 2x - 3}{x - 1}$$

Factor: $x^2 + 2x - 3 = (x + 3)(x - 1)$

$$m = \lim_{x \to 1} \frac{(x+3)(x-1)}{x-1} = \lim_{x \to 1} (x + 3) = 4$$

Step 3: Write the equation. $$y - 3 = 4(x - 1) \implies y = 4x - 1$$

The tangent line is $\boxed{y = 4x - 1}$.

Level 4 Tangent to a Rational Function

Find the slope of the tangent line to $\displaystyle f(x) = \frac{1}{x}$ at the point $(2, \frac{1}{2})$.

Thought Process

Set up: $\displaystyle m = \lim_{x \to 2} \frac{\frac{1}{x} - \frac{1}{2}}{x - 2}$

The numerator involves subtracting fractions. Find a common denominator: $$\frac{1}{x} - \frac{1}{2} = \frac{2 - x}{2x}$$

So the difference quotient becomes: $$\frac{\frac{2-x}{2x}}{x-2}$$

Note that $2 - x = -(x - 2)$, which will allow cancellation.

Show Answer

$$m = \lim_{x \to 2} \frac{\frac{1}{x} - \frac{1}{2}}{x - 2}$$

Combine fractions in numerator: $$\frac{1}{x} - \frac{1}{2} = \frac{2 - x}{2x}$$

So: $$m = \lim_{x \to 2} \frac{\frac{2-x}{2x}}{x-2} = \lim_{x \to 2} \frac{2-x}{2x(x-2)}$$

Since $2 - x = -(x - 2)$: $$m = \lim_{x \to 2} \frac{-(x-2)}{2x(x-2)} = \lim_{x \to 2} \frac{-1}{2x} = \frac{-1}{4}$$

The tangent slope is $\boxed{-\frac{1}{4}}$.

Level 5 Tangent with a Square Root

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.

Thought Process

The difference quotient is: $$\frac{\sqrt{x} - 2}{x - 4}$$

Direct substitution gives $\frac{0}{0}$. We can't factor $\sqrt{x} - 2$ directly.

The trick: multiply top and bottom by the conjugate $\sqrt{x} + 2$: $$\frac{\sqrt{x} - 2}{x - 4} \cdot \frac{\sqrt{x} + 2}{\sqrt{x} + 2}$$

The numerator becomes $(\sqrt{x})^2 - 4 = x - 4$, which cancels with the denominator.

Show Answer

Step 1: Set up the limit. $$m = \lim_{x \to 4} \frac{\sqrt{x} - 2}{x - 4}$$

Step 2: Rationalize the numerator. Multiply by $\frac{\sqrt{x} + 2}{\sqrt{x} + 2}$: $$m = \lim_{x \to 4} \frac{(\sqrt{x} - 2)(\sqrt{x} + 2)}{(x - 4)(\sqrt{x} + 2)} = \lim_{x \to 4} \frac{x - 4}{(x - 4)(\sqrt{x} + 2)}$$

Step 3: Cancel and evaluate. $$m = \lim_{x \to 4} \frac{1}{\sqrt{x} + 2} = \frac{1}{\sqrt{4} + 2} = \frac{1}{4}$$

Step 4: Write the equation. Point: $(4, 2)$, Slope: $\frac{1}{4}$ $$y - 2 = \frac{1}{4}(x - 4) \implies y = \frac{1}{4}x + 1$$

The tangent line is $\boxed{y = \frac{1}{4}x + 1}$.

Mastery Checklist

Mental Model

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.


Connections

Looking back:

Looking ahead:

Common Errors:


Previous Up Next
Secant Lines Skills Index Instantaneous Velocity

Last updated: 2026-01-22