# Can change occur at an instant?

> AP Calculus AB · Limits and Continuity
> Source: https://www.owlsprep.com/study/ap-calculus-ab-u1-can-change-occur-at-an/

This foundational AP Calculus AB topic resolves the contradiction of measuring change at a single instant using limits. You will learn to distinguish average vs instantaneous rate of change, interpret secant/tangent slopes, and evaluate IROC via the limit definition.

**Prerequisites:** Basic limit evaluation; Calculating difference quotients; Slope of a line between two points

## Learning objectives

- Explain how instantaneous change can be defined using limits
- Distinguish between average and instantaneous rate of change
- Calculate AROC and IROC using difference quotients and limits
- Interpret secant vs tangent line slopes geometrically
- Estimate IROC from tabular data correctly

## Average vs. Instantaneous Rate of Change

**Average Rate of Change (AROC)** — The rate of change of a function over a finite, non-zero interval $[a, a+h]$. It equals the total change in the function divided by the change in the input.

*Notation:* \text{AROC} = \frac{f(a+h) - f(a)}{h}

*Example:* Average speed over an entire road trip

Instantaneous Rate of Change (IROC) describes the rate of change at a single input value $x=a$. It is defined as the limit of AROC as the interval width $h$ approaches 0: the interval gets arbitrarily small, but never actually reaches 0, avoiding division by zero.

Intuitively, AROC is like your average speed for a full trip, while IROC is the speed displayed on your speedometer at a specific moment. For non-linear functions, these two values will almost always differ, since the rate of change itself varies across the interval.

**Worked example:** Given $f(x) = x^2 - 3x$, find (a) the average rate of change over $[1, 4]$, and (b) the instantaneous rate of change at $x=2$.

1. Calculate function values at the endpoints of the interval for AROC:

   $$f(1) = 1^2 - 3(1) = -2, \quad f(4) = 4^2 - 3(4) = 4$$
2. Apply the AROC formula:

   $$\frac{f(4) - f(1)}{4 - 1} = \frac{4 - (-2)}{3} = 2$$
3. So the average rate of change over $[1,4]$ is 2. For IROC at $x=2$, set up the limit definition:

   $$\text{IROC} = \lim_{h \to 0} \frac{f(2+h) - f(2)}{h}$$
4. Calculate $f(2)$ and expand $f(2+h)$:

   $$f(2) = 2^2 - 3(2) = -2, \quad f(2+h) = (2+h)^2 - 3(2+h) = h^2 + h - 2$$
5. Substitute into the limit and simplify, canceling $h$ (valid since $h \neq 0$ when taking the limit):

   $$\lim_{h \to 0} \frac{(h^2 + h - 2) - (-2)}{h} = \lim_{h \to 0} (h + 1) = 1$$
6. The instantaneous rate of change at $x=2$ is 1.

> **Exam tip:** On AP MCQs comparing AROC and IROC, always confirm the order of subtraction: the change in the numerator must match the order of the change in the denominator to avoid getting the wrong sign.

## Geometric Interpretation: Secant vs. Tangent Lines

Every rate of change has a direct geometric equivalent on the graph of a function: AROC is the slope of a secant line, which crosses the graph at two distinct points. IROC is the slope of the tangent line, which touches the graph at exactly one local point near the location of interest (it may cross the graph elsewhere, but not near the point we are analyzing).

As the second point on the secant line gets closer and closer to the fixed point $x=a$, the slope of the secant approaches the slope of the tangent at $x=a$, which is the IROC. When estimating IROC from tabular data, the most accurate estimate uses a symmetric interval: points equally spaced on both sides of the point of interest.

**Worked example:** The table below gives values of a differentiable function $g(x)$. What is the best estimate of the slope of the tangent line to $g(x)$ at $x=2$?

| $x$  | 1.5  | 2 | 2.5  |
|------|------|---|------|
| $g(x)$ | 3.25 | 5 | 7.25 |

1. The slope of the tangent line at $x=2$ equals the IROC at $x=2$. The best estimate uses the closest available points on both sides of $x=2$, which are $x=1.5$ and $x=2.5$.
2. This symmetric centered interval gives the most accurate approximation of the tangent slope.
3. Calculate the slope of the secant between these two points:

   $$\frac{g(2.5) - g(1.5)}{2.5 - 1.5} = \frac{7.25 - 3.25}{1} = 4$$
4. A one-sided interval from $x=2$ to $x=2.5$ would give $\frac{7.25 - 5}{0.5} = 4.5$, which is less accurate than the symmetric estimate.
5. The best estimate of the tangent slope at $x=2$ is 4.

> **Exam tip:** When the AP exam asks for the "best estimate" of IROC from a table, it almost always expects the symmetric difference quotient (centered interval), not a one-sided interval.

## The Limit Definition of Instantaneous Change

**Derivative of $f$ at $a$** — The formal name for the instantaneous rate of change of $f$ at $x=a$, which exists if and only if the limit of the difference quotient exists (the function is differentiable at $a$).

*Notation:* f'(a)

*Example:* The instantaneous velocity of an object at time $t=a$ is the derivative of the position function at $a$.

There are two common, equivalent forms of the limit definition that you must recognize for the AP exam: the standard form and the alternate form.

$$f'(a) = \lim_{h \to 0} \frac{f(a+h) - f(a)}{h}$$

$$f'(a) = \lim_{x \to a} \frac{f(x) - f(a)}{x - a}$$

The two forms are equivalent: substituting $x = a+h$ shows that as $x \to a$, $h \to 0$, so the expressions are identical. When you plug $h=0$ directly into the standard form, you get the indeterminate form $\frac{0}{0}$, which is undefined. To evaluate the limit, you must simplify the difference quotient to cancel the $h$ term before evaluating the limit.

**Worked example:** Evaluate the instantaneous rate of change of $f(x) = \sqrt{x}$ at $x=4$ using the limit definition.

1. Start with the standard limit definition:

   $$f'(4) = \lim_{h \to 0} \frac{\sqrt{4+h} - \sqrt{4}}{h} = \lim_{h \to 0} \frac{\sqrt{4+h} - 2}{h}$$
2. We have an indeterminate $\frac{0}{0}$ form, so rationalize the numerator by multiplying numerator and denominator by the conjugate $\sqrt{4+h} + 2$:

   $$\lim_{h \to 0} \frac{(\sqrt{4+h} - 2)(\sqrt{4+h} + 2)}{h(\sqrt{4+h} + 2)}$$
3. Simplify the numerator: $(4+h) - 4 = h$, so the expression becomes:

   $$\lim_{h \to 0} \frac{h}{h(\sqrt{4+h} + 2)}$$
4. Cancel the $h$ term (valid because $h \neq 0$ when taking the limit, so cancellation is allowed):

   $$\lim_{h \to 0} \frac{1}{\sqrt{4+h} + 2}$$
5. Substitute $h=0$ to evaluate the limit, giving a result of $\frac{1}{2 + 2} = \frac{1}{4}$.
6. The instantaneous rate of change at $x=4$ is $\frac{1}{4}$.

> **Exam tip:** Always remember to rationalize the numerator (not just the denominator) when working with square roots in the limit definition — this is the most common missed step on this type of problem.

## AP Style Concept Check

**Check your understanding**

Test your understanding of the limit definition of IROC:

1. Which of the following expressions represents the instantaneous rate of change of $h(t) = \ln(t)$ at $t=3$?

   - $\lim_{h \to 0} \frac{\ln(3+h) - \ln(3)}{h}$
   - $\lim_{h \to 0} \frac{\ln(3+h) - \ln(h)}{h}$
   - $\frac{\ln(4) - \ln(3)}{1}$
   - $\lim_{t \to 0} \frac{\ln(t) - \ln(3)}{t - 3}$

   *Answer:* $\lim_{h \to 0} \frac{\ln(3+h) - \ln(3)}{h}$

   *Why:* Correct! This matches the standard limit definition. Option B incorrectly substitutes $\ln(h)$ for $\ln(3)$, option C is AROC not IROC, and option D has the wrong limit bound.

**Worked example:** The height of a projectile launched straight upward from the ground is given by $h(t) = -16t^2 + 80t$, where $h(t)$ is measured in feet and $t$ is measured in seconds after launch. Find the instantaneous velocity (instantaneous rate of change of height with respect to time) of the projectile 2 seconds after launch, and interpret your result.

1. Calculate IROC of $h(t)$ at $t=2$ using the limit definition:

   $$v(2) = \lim_{h \to 0} \frac{h(2+h) - h(2)}{h}$$
2. Calculate $h(2)$ and expand $h(2+h)$:

   $$h(2) = -16(4) + 80(2) = 96, \quad h(2+h) = -16(2+h)^2 + 80(2+h) = -16h^2 + 16h + 96$$
3. Substitute and simplify, canceling $h$:

   $$\lim_{h \to 0} \frac{(-16h^2 + 16h + 96) - 96}{h} = \lim_{h \to 0} (-16h + 16) = 16$$
4. Interpretation: The instantaneous velocity 2 seconds after launch is 16 feet per second. At exactly 2 seconds after launch, the height of the projectile is increasing at a rate of 16 feet per second.

## Common pitfalls

- **Wrong:** Calculating IROC as $\frac{f(a) - f(a)}{a - a} = \frac{0}{0}$ and concluding IROC is 0 or undefined when the limit actually exists.
  - Why it fails: Students confuse "h approaches 0" with "h equals 0", forgetting the limit describes behavior near 0, not at 0.
  - Correct: Always simplify the difference quotient to cancel $h$ before evaluating the limit, never plug in $h=0$ before cancellation.
- **Wrong:** When estimating IROC from a table, using a one-sided interval $[a, a+h]$ instead of a symmetric interval $[a-h, a+h]$, even when points on both sides are available.
  - Why it fails: Students are used to starting intervals at the point of interest, not centering them on it.
  - Correct: When asked for the best estimate of IROC, always use the closest available points on both sides of $a$ if they exist.
- **Wrong:** Writing AROC over $[a,b]$ as $\frac{f(a) - f(b)}{b - a}$, resulting in the negative of the correct value.
  - Why it fails: Students mix up the order of differences in the numerator and denominator.
  - Correct: Always match the order of change: $\frac{\Delta f}{\Delta x} = \frac{f(\text{right endpoint}) - f(\text{left endpoint})}{\text{right } x - \text{left } x}$.
- **Wrong:** Interpreting $\lim_{h \to 0} \frac{f(5+h) - f(5)}{h}$ as the IROC at $h=0$ instead of at $x=5$.
  - Why it fails: Students focus on the variable $h$ instead of the constant that marks the point of interest.
  - Correct: In the standard difference quotient, $f(a+h) - f(a)$ always means IROC at $x=a$, not at $h=0$.
- **Wrong:** Concluding instantaneous change cannot exist because it requires change over an interval of length zero, which causes division by zero.
  - Why it fails: Students misinterpret the limit definition, thinking we evaluate at $h=0$ instead of taking the limit as $h$ approaches 0.
  - Correct: Remember IROC is defined as the limit of AROC over shrinking intervals; the limit can exist even if change over zero interval is undefined.

## Cheatsheet

| Category | Formula | Notes |
| --- | --- | --- |
| Average Rate of Change (AROC) | $\frac{f(b) - f(a)}{b - a}$ | Over interval $[a,b]$, equals slope of secant line between $(a,f(a))$ and $(b,f(b))$ |
| Instantaneous Rate of Change (IROC, standard form) | $\lim_{h \to 0} \frac{f(a+h) - f(a)}{h}$ | Also called derivative $f'(a)$, equals slope of tangent line at $x=a$ |
| IROC (alternate form) | $\lim_{x \to a} \frac{f(x) - f(a)}{x - a}$ | Equivalent to standard form, common on AP limit identification questions |
| Best IROC Estimate from Table | $\frac{f(a+h) - f(a-h)}{2h}$ | Symmetric difference quotient, most accurate when points exist on both sides of $a$ |
| AROC Geometric Interpretation | Secant line slope | Crosses function at two points; slope approaches tangent slope as interval shrinks |
| IROC Geometric Interpretation | Tangent line slope | Only touches function locally at the point of interest |

## What's next

This topic is the conceptual and algebraic foundation of all derivative work for the rest of the AP Calculus AB course. Immediately after this topic in Unit 1, you will connect the existence of IROC to continuity of functions, then in Unit 2 you will use the limit definition of instantaneous change to develop shortcut differentiation rules that let you compute IROC quickly without evaluating limits every time. Without mastering this content, you will not be able to correctly interpret derivative results in applied problems that make up a large portion of the AP exam FRQ section, and it also connects to later work on the Mean Value Theorem that formalizes the relationship between average and instantaneous change.

- [Defining limits and using limit notation](https://www.owlsprep.com/study/ap-calculus-ab-u1-defining-limits-and-using-limit/)
- [Estimating limit values from graphs](https://www.owlsprep.com/study/ap-calculus-ab-u1-estimating-limit-values-from-graphs/)
- [Estimating limit values from tables](https://www.owlsprep.com/study/ap-calculus-ab-u1-estimating-limit-values-from-tables/)

---

From [OwlsPrep](https://www.owlsprep.com) — free study guides for A-Level, IB, AP and IGCSE, written against the official syllabus. Canonical page: https://www.owlsprep.com/study/ap-calculus-ab-u1-can-change-occur-at-an/
