3.1 The Derivative Definition and Rates of Change

Key Takeaways

  • The average rate of change is the secant line slope [f(b) - f(a)] / (b - a), whereas the derivative f'(x) is the instantaneous rate of change given by the tangent line slope.
  • The difference quotient limit definition is f'(x) = lim_{h -> 0} [f(x+h) - f(x)] / h, with the alternate point form f'(c) = lim_{x -> c} [f(x) - f(c)] / (x - c).
  • Differentiability implies continuity: if f is differentiable at x = c, then f must be continuous at x = c. The converse is false.
  • A function fails to be differentiable at sharp corners, cusps, vertical tangents, and any point of discontinuity.
  • Numerical table estimates of derivatives use symmetric difference quotients [f(x+h) - f(x-h)] / (2h) across the closest symmetric data points.
Last updated: August 2026

3.1 The Derivative Definition and Rates of Change

Quick Answer: The derivative of a function $f(x)$ represents its instantaneous rate of change and the exact slope of the tangent line to the curve at any point. Formally defined as the limit of the difference quotient f(x)=limh0f(x+h)f(x)hf'(x) = \lim_{h \to 0} \frac{f(x+h) - f(x)}{h}, differentiability requires the function to be locally linear and continuous. While differentiability guarantees continuity, continuity does not guarantee differentiability: functions fail to be differentiable at corners, cusps, vertical tangents, and discontinuities.


1. Average vs. Instantaneous Rate of Change

Differential calculus bridges the gap between static averages over an extended interval and instantaneous dynamics at a single moment in time.

The Secant Line and Average Rate of Change

Given a function $y = f(x)$ defined on a closed interval $[a, b]$, the average rate of change is defined as the change in the dependent variable $\Delta y$ divided by the change in the independent variable $\Delta x$:

Average Rate of Change=ΔyΔx=f(b)f(a)ba\text{Average Rate of Change} = \frac{\Delta y}{\Delta x} = \frac{f(b) - f(a)}{b - a}

Geometrically, this quotient is the slope of the secant line connecting the two distinct points $(a, f(a))$ and $(b, f(b))$ on the curve.

The Tangent Line and Instantaneous Rate of Change

To determine how fast $f(x)$ is changing at an exact instant $x = a$, we choose a neighboring point $x = a + h$ (where $h \neq 0$) and compute the secant slope:

msec=f(a+h)f(a)hm_{\text{sec}} = \frac{f(a+h) - f(a)}{h}

As $h$ approaches zero ($h \to 0$), the second point slides along the curve toward $(a, f(a))$. If this limit exists as a finite real number, it defines the slope of the tangent line at $x = a$, denoted $f'(a)$:

mtan=f(a)=limh0f(a+h)f(a)hm_{\text{tan}} = f'(a) = \lim_{h \to 0} \frac{f(a+h) - f(a)}{h}

ConceptGeometric MeaningAlgebraic FormulaPhysical Interpretation
Average Rate of ChangeSlope of secant line across $[a, b]$$\frac{f(b)-f(a)}{b-a}$Average trip velocity $\frac{\Delta s}{\Delta t}$
Instantaneous Rate of ChangeSlope of tangent line at $x = a$$\lim_{h \to 0} \frac{f(a+h)-f(a)}{h}$Exact speedometer reading $v(t)$

2. Formal Limit Definitions of the Derivative

The CLEP Calculus exam tests two equivalent formulations of the derivative limit definition.

Form 1: The Difference Quotient Definition (General Function $f'(x)$)

f(x)=limh0f(x+h)f(x)hf'(x) = \lim_{h \to 0} \frac{f(x+h) - f(x)}{h}

Common notations for the derivative include:

  • Lagrange notation: $f'(x)$, $y'$
  • Leibniz notation: $\frac{df}{dx}$, $\frac{dy}{dx}$, $\frac{d}{dx}[f(x)]$
  • Euler / Operator notation: $D_x[f(x)]$

Form 2: The Point-Specific Alternate Definition ($f'(c)$)

Letting $x = c + h$, as $h \to 0$, $x \to c$. The derivative at the specific constant $x = c$ is:

f(c)=limxcf(x)f(c)xcf'(c) = \lim_{x \to c} \frac{f(x) - f(c)}{x - c}

Step-by-Step Limit Proof: Differentiating $f(x) = x^2 + 3x$

  1. Write the difference quotient: f(x)=limh0[(x+h)2+3(x+h)][x2+3x]hf'(x) = \lim_{h \to 0} \frac{[(x+h)^2 + 3(x+h)] - [x^2 + 3x]}{h}
  2. Expand the algebraic terms in the numerator: f(x)=limh0x2+2xh+h2+3x+3hx23xhf'(x) = \lim_{h \to 0} \frac{x^2 + 2xh + h^2 + 3x + 3h - x^2 - 3x}{h}
  3. Cancel common terms ($x^2 - x^2 = 0$ and $3x - 3x = 0$): f(x)=limh02xh+h2+3hhf'(x) = \lim_{h \to 0} \frac{2xh + h^2 + 3h}{h}
  4. Factor out $h$ from the numerator and simplify ($h \neq 0$): f(x)=limh0h(2x+h+3)h=limh0(2x+h+3)f'(x) = \lim_{h \to 0} \frac{h(2x + h + 3)}{h} = \lim_{h \to 0} (2x + h + 3)
  5. Evaluate by direct substitution ($h = 0$): f(x)=2x+3f'(x) = 2x + 3

Step-by-Step Limit Proof: Differentiating $f(x) = \sqrt{x}$ (Rationalization)

f(x)=limh0x+hxh=limh0(x+hx)(x+h+x)h(x+h+x)f'(x) = \lim_{h \to 0} \frac{\sqrt{x+h} - \sqrt{x}}{h} = \lim_{h \to 0} \frac{(\sqrt{x+h} - \sqrt{x})(\sqrt{x+h} + \sqrt{x})}{h(\sqrt{x+h} + \sqrt{x})} f(x)=limh0(x+h)xh(x+h+x)=limh0hh(x+h+x)=limh01x+h+x=12xf'(x) = \lim_{h \to 0} \frac{(x+h) - x}{h(\sqrt{x+h} + \sqrt{x})} = \lim_{h \to 0} \frac{h}{h(\sqrt{x+h} + \sqrt{x})} = \lim_{h \to 0} \frac{1}{\sqrt{x+h} + \sqrt{x}} = \frac{1}{2\sqrt{x}}


3. Differentiability and Continuity

A fundamental theorem of differential calculus establishes the exact directional relationship between differentiability and continuity.

Theorem (Differentiability Implies Continuity): If a function $f$ is differentiable at $x = c$, then $f$ is continuous at $x = c$.

Formal Proof

To prove that $f$ is continuous at $x = c$, we must prove that $\lim_{x \to c} f(x) = f(c)$, which is equivalent to showing that $\lim_{x \to c} [f(x) - f(c)] = 0$.

limxc[f(x)f(c)]=limxc[f(x)f(c)xc(xc)]\lim_{x \to c} [f(x) - f(c)] = \lim_{x \to c} \left[ \frac{f(x) - f(c)}{x - c} \cdot (x - c) \right] Using the limit product law: limxc[f(x)f(c)]=(limxcf(x)f(c)xc)(limxc(xc))=f(c)0=0\lim_{x \to c} [f(x) - f(c)] = \left( \lim_{x \to c} \frac{f(x) - f(c)}{x - c} \right) \cdot \left( \lim_{x \to c} (x - c) \right) = f'(c) \cdot 0 = 0 Therefore, $\lim_{x \to c} f(x) = f(c)$, proving continuity at $x = c$. $\blacksquare$

The Converse is FALSE: Continuity Does NOT Imply Differentiability

A function can be perfectly continuous at a point while completely failing to have a derivative at that point. The classic counterexample is $f(x) = |x|$ at $x = 0$:

  • $f(x)$ is continuous at $x = 0$ because $\lim_{x \to 0} |x| = 0 = f(0)$.
  • Left-hand difference quotient: $\lim_{h \to 0^-} \frac{|0+h| - |0|}{h} = \lim_{h \to 0^-} \frac{-h}{h} = -1$.
  • Right-hand difference quotient: $\lim_{h \to 0^+} \frac{|0+h| - |0|}{h} = \lim_{h \to 0^+} \frac{h}{h} = +1$.
  • Since $-1 \neq 1$, the two-sided limit does not exist. Hence, $f'(0)$ does not exist.

4. The Four Classes of Non-Differentiability

On the CLEP exam, you must instantly recognize the four geometric causes for the failure of a derivative at $x = c$:

                    Failure of Differentiability at x = c
                                      │
     ┌────────────────────┬───────────┴───────────┬────────────────────┐
     ▼                    ▼                       ▼                    ▼
  Corner                Cusp               Vertical Tangent      Discontinuity
Left/Right slopes    Left/Right slopes     Both one-sided       Function not continuous
finite but unequal   diverge to ±∞         slopes approach +∞   (Jump, Removable, or
(e.g., f(x) = |x|)   (e.g., f(x) = x^(2/3)) or -∞ (e.g., x^(1/3)) Infinite)
Non-Differentiable TypeAnalytical ConditionArchetypal ExampleGeometric Appearance
Corner (Sharp Turn)$\lim_{x \to c^-} \frac{f(x)-f(c)}{x-c} \neq \lim_{x \to c^+} \frac{f(x)-f(c)}{x-c}$ (both finite)$f(x) =x
CuspOne side $\to +\infty$, other side $\to -\infty$$f(x) = x^{2/3}$ at $x=0$Sharp "beak" pointing up or down
Vertical Tangent$\lim_{x \to c} \frac{f(x)-f(c)}{x-c} = +\infty$ or $-\infty$$f(x) = x^{1/3}$ at $x=0$Curve becomes infinitely steep
Discontinuity$\lim_{x \to c} f(x) \neq f(c)$ or limit does not exist$f(x) = \text{sgn}(x)$ at $x=0$Break, jump, hole, or asymptote

5. Estimating Derivatives from Numerical Tables and Graphs

When a function is presented only as discrete data points or a graphical sketch without an explicit formula, use secant approximations.

The Symmetric Difference Quotient (Best Table Estimate)

Given equally spaced table entries with spacing $h$, the most accurate approximation for $f'(x)$ is the symmetric difference quotient:

f(x)f(x+h)f(xh)2hf'(x) \approx \frac{f(x+h) - f(x-h)}{2h}

If the data points are not symmetrically spaced around $x$, compute the average rate of change across the narrowest available surrounding interval $[x_1, x_2]$ containing $x$:

f(x)f(x2)f(x1)x2x1f'(x) \approx \frac{f(x_2) - f(x_1)}{x_2 - x_1}

Graphical Estimation of Derivatives

To estimate $f'(c)$ from a curve:

  1. Locate the point $(c, f(c))$ on the graph.
  2. Place a straightedge tangent to the curve at that point.
  3. Identify two easily readable coordinate points $(x_1, y_1)$ and $(x_2, y_2)$ along the drawn tangent line.
  4. Compute the slope $m = \frac{y_2 - y_1}{x_2 - x_1}$.

6. CLEP Traps and Exam Strategies

  • Trap 1: Confusing average rate of change with instantaneous rate of change. If the question asks for the "average rate of change over $[1, 4]$", do NOT take the derivative. Calculate $\frac{f(4)-f(1)}{4-1}$. If it asks for the "rate of change at $t = 4$", evaluate $f'(4)$.
  • Trap 2: Piecewise boundary testing without checking continuity. For a piecewise function $f(x) = \begin{cases} g(x), & x \le c \ h(x), & x > c \end{cases}$, you must verify two conditions for differentiability at $x = c$:
    1. $g(c) = h(c)$ (continuity check)
    2. $g'(c) = h'(c)$ (smooth matching slope check) If $g'(c) = h'(c)$ but $g(c) \neq h(c)$, the function has a jump discontinuity and is not differentiable.
  • Trap 3: Identifying the derivative from a limit question. On the CLEP exam, limits like $\lim_{h \to 0} \frac{(2+h)^5 - 32}{h}$ are frequently presented. Do not expand the binomial $(2+h)^5$. Recognize this as $f'(2)$ for $f(x) = x^5$. Since $f'(x) = 5x^4$, the limit equals $5(2)^4 = 80$.
Test Your Knowledge

Which of the following expressions is the correct difference quotient limit representing f'(3) for the function f(x) = x^2 - 4x?

A
B
C
D
Test Your Knowledge

Which of the following statements regarding differentiability and continuity at x = c is mathematically true?

A
B
C
D
Test Your Knowledge

Consider the function f(x) = (x - 2)^(2/3) + 1. What geometric feature causes f'(2) to fail to exist?

A
B
C
D
Test Your Knowledge

The table below lists values for a differentiable function g(x):

x1.01.82.02.23.0
g(x)5.08.29.09.813.0
What is the best estimate of g'(2.0) using the symmetric difference quotient across the nearest neighboring data points?

A
B
C
D