Defining Average and Instantaneous Rates of Change at a Point
Why this matters
Imagine you're driving from Dallas to Austin for a weekend trip. The whole drive takes about 3 hours to cover 200 miles. If your friend asks, "How fast were you going?" you might say, "About 67 miles per hour." That's your average speed. But you know that's not the whole story. You weren't going exactly 67 mph the entire time. You were stopped in traffic near Waco, and you were probably going faster than 67 on the open highway.
When you glanced at your speedometer, you saw your speed at that exact instant. That might have been 75 mph, 45 mph, or even 0 mph.
Calculus gives us the tools to move from the "average speed" of a function over an interval to the "speedometer reading" at a single, precise moment. We'll start by defining that average rate of change mathematically, and then make a crucial leap to find the rate of change at one instant.
Concept overview
flowchart TD
A[Question: What is the rate of change?] --> B{Over an interval or at a point?};
B -->|Over an Interval| C[Average Rate of Change];
C --> D["Secant Line Slope<br>(f(b) - f(a)) / (b - a)"];
B -->|At a Single Point| E[Instantaneous Rate of Change];
E --> F["Limit of Average Rate of Change<br>lim (f(a+h) - f(a)) / h as h->0"];
F --> G[The Derivative, f'(a)];
G --> H[Tangent Line Slope];
Core explanation
Hello there. I'm Saavi, and it's great to have you here. Let's break down one of the most important ideas in all of calculus.
Average Rate of Change: The Secant Line
You already have the intuition for average rate of change. It's the good old slope formula from algebra:
slope = (change in y) / (change in x) = (y₂ - y₁) / (x₂ - x₁)
When we talk about functions, we just write it a little differently. For a function f(x) between two points, x = a and x = b, the "y" values are f(a) and f(b). So the average rate of change is:
Average Rate of Change = (f(b) - f(a)) / (b - a)
Geometrically, this is the slope of the secant line—a line that cuts through a curve at two points.
Imagine a simple parabola, like f(x) = x². The average rate of change between x=1 and x=3 is the slope of the line connecting the points (1, 1) and (3, 9).
Avg. Rate = (f(3) - f(1)) / (3 - 1) = (9 - 1) / 2 = 8 / 2 = 4
The College Board gives you two standard ways to write this, and you need to know both. They look different, but they represent the exact same idea.
-
The
(f(x) - f(a)) / (x - a)form: This is just like our(f(b) - f(a)) / (b - a)example. We're finding the slope between a general pointxand a fixed pointa. -
The
(f(a+h) - f(a)) / hform: This one can look a little strange at first, but it's clever. Here,ais our starting point. Instead of calling the second pointx, we call ita + h. The variablehjust represents the distance, or the gap, between our two x-values.If our points are
aanda+h, then the change in x is(a+h) - a = h. The change in y isf(a+h) - f(a). So the slope is(f(a+h) - f(a)) / h.
Both of these formulas are called difference quotients, and they both calculate the average rate of change of a function over an interval.
Instantaneous Rate of Change: The Tangent Line
Now for the main event. How do we find the rate of change at a single point? This is the speedometer question. What is the speed at the exact instant t = 2 hours?
If we try to use our slope formula at a single point, say x = a, we get:
(f(a) - f(a)) / (a - a) = 0 / 0
That's an indeterminate form, which doesn't help us. We can't find slope with only one point. So, we're going to use a brilliant workaround.
Let's go back to our secant line connecting two points, a and a+h. We know its slope is (f(a+h) - f(a)) / h. What if we could make that second point slide along the curve, getting closer and closer to our first point?
Imagine the gap, h, getting incredibly small. h=0.1, then h=0.01, then h=0.00001. As h shrinks towards zero, the secant line starts to look less like a line cutting through the curve and more like a line that just kisses the curve at that one single point, x=a.
This "kissing" line is called the tangent line, and its slope represents the instantaneous rate of change at that point.
The tool we use to describe this "getting closer and closer" process is the limit.
The instantaneous rate of change at x=a is the limit of the average rate of change as the interval shrinks to zero. We write it like this:
Instantaneous Rate of Change = lim (f(a+h) - f(a)) / h as h → 0
Or, using the other form of the difference quotient:
Instantaneous Rate of Change = lim (f(x) - f(a)) / (x - a) as x → a
This is the definition of the derivative.
If this limit exists, it is called the derivative of f at a, and we denote it as f'(a) (read "f prime of a").
f'(a) = lim (f(a+h) - f(a)) / h as h → 0
This concept—finding the slope at a single point by taking the limit of the slope between two points as they get infinitely close—is the jump from pre-calculus to calculus.
Worked examples
Let's make this concrete. Seeing it in action is the best way to learn.
Average Rate of Change
Problem: Let g(t) = 16t² represent the distance in feet an object has fallen after t seconds. Find the average velocity of the object from t=1 to t=2 seconds.
Solution:
"Average velocity" is just a physical application of "average rate of change." We need to find the slope of the secant line between t=1 and t=2.
- 1Identify the formulaWe need the average rate of change, so we'll use the formula
(g(b) - g(a)) / (b - a). Here,a=1andb=2. - 2Calculate the function values
g(1) = 16(1)² = 16feet.g(2) = 16(2)² = 16 * 4 = 64feet.
- 3Plug the values into the formula
Average Velocity = (g(2) - g(1)) / (2 - 1)= (64 - 16) / 1= 48 / 1= 48 - 4Include unitsThe units for
g(t)are feet and the units fortare seconds. So the rate of change is in feet per second.
Instantaneous Rate of Change (The Derivative)
Problem: For the function f(x) = 3x² - 5, find the instantaneous rate of change at x = 2.
Solution:
"Instantaneous rate of change" means we need to find the derivative, f'(2), using the limit definition. Let's use the h form, as it's the most common.
f'(2) = lim (f(2+h) - f(2)) / h as h → 0
- 1Find the piecesWe need
f(2)andf(2+h).f(2) = 3(2)² - 5 = 3(4) - 5 = 12 - 5 = 7.f(2+h) = 3(2+h)² - 5. This is a critical step. Be very careful with the algebra here. Expand(2+h)²first.f(2+h) = 3(4 + 4h + h²) - 5= 12 + 12h + 3h² - 5= 7 + 12h + 3h²
- 2Substitute into the limit definition
f'(2) = lim ( (7 + 12h + 3h²) - 7 ) / hash → 0 - 3Simplify the numerator
f'(2) = lim (12h + 3h²) / hash → 0Notice if we plug inh=0now, we get0/0. We must simplify further. - 4
Factor out
hand cancel: This is the key algebraic step.f'(2) = lim ( h(12 + 3h) ) / hash → 0Thehin the numerator and denominator cancel out.f'(2) = lim (12 + 3h)ash → 0 - 5Evaluate the limitNow that the
hin the denominator is gone, we can safely lethgo to 0.f'(2) = 12 + 3(0) = 12
Try it yourself
Ready to try on your own? Don't worry about getting it perfect the first time. The goal is to practice the process.
-
Priya is tracking the growth of her startup. The total number of users is modeled by the function
U(m) = m³ + 50, wheremis the number of months since she launched.- Find the average rate of growth in users per month between month 1 (
m=1) and month 3 (m=3).
- Find the average rate of growth in users per month between month 1 (
-
Consider the function
f(x) = 5x + 2.- Set up the limit expression to find the instantaneous rate of change at
x = 4. - Then, solve the limit to find the value of
f'(4).
- Set up the limit expression to find the instantaneous rate of change at
In simple terms, this topic is about the difference between your average speed over a whole trip and your exact speed at one specific moment on the speedometer.
- CHA-2.A: Determine average rates of change using difference quotients.
- CHA-2.B: Represent the derivative of a function as the limit of a difference quotient.
- CHA-2.A.1
- The difference quotients (f(a+h) - f(a))/h and (f(x) - f(a))/(x-a) express the average rate of change of a function over an interval.
- CHA-2.B.1
- The instantaneous rate of change of a function at x = a can be expressed by lim (f(a+h) - f(a))/h as h approaches 0 or lim (f(x) - f(a))/(x-a) as x approaches a, provided the limit exists. These are equivalent forms of the definition of the derivative and are denoted f'(a).
flowchart TD
A[Question: What is the rate of change?] --> B{Over an interval or at a point?};
B -->|Over an Interval| C[Average Rate of Change];
C --> D["Secant Line Slope<br>(f(b) - f(a)) / (b - a)"];
B -->|At a Single Point| E[Instantaneous Rate of Change];
E --> F["Limit of Average Rate of Change<br>lim (f(a+h) - f(a)) / h as h->0"];
F --> G[The Derivative, f'(a)];
G --> H[Tangent Line Slope];
Read what Saavi narrates
Hi everyone, it's Saavi. I'm so glad you're here to tackle one of the biggest ideas in calculus.
Think about this: you're on a road trip from Dallas to Austin. Your average speed for the whole trip might be 67 miles per hour. But if you glance at your speedometer, it might say 75, or 45, or zero if you're stuck in traffic. Calculus is what lets us find that exact, instantaneous, speedometer-reading speed, for any function.
We start with the average speed, which is just the slope between two points. But the magic happens when we try to find the speed at one single moment. That's the instantaneous rate of change.
Let's work through an example. Imagine a function `f(x) = 3x² - 5`. We want to find the instantaneous rate of change right at the point where `x` equals 2. This is asking for the derivative, or `f'(2)`.
The definition is a limit: the limit as `h` approaches zero, of `(f(2+h) - f(2)) / h`.
First, let's find the pieces. `f(2)` is `3 times 2 squared, minus 5`, which is `12 minus 5`, or 7.
Next, `f(2+h)`. This is where you have to be careful. We plug `2+h` into the function: `3 times (2+h) squared, minus 5`. After expanding and simplifying, we get `7 + 12h + 3h²`.
Now, plug those back into our limit formula. In the numerator, we have `(7 + 12h + 3h²) - 7`. The sevens cancel out, leaving us with `12h + 3h²`.
So now we have the limit of `(12h + 3h²) / h`. Here's the most common mistake: trying to plug in `h=0` right now. You'd get zero over zero. Instead, we do algebra first. We can factor an `h` out of the top to get `h times (12 + 3h)`. Now, the `h` on top and the `h` on the bottom cancel out.
We're left with the limit of `12 + 3h` as `h` approaches zero. Finally, we can let `h` be zero. We get `12 + 3 times 0`, which is just 12.
So, `f'(2) = 12`. That's the instantaneous rate of change. It's the slope of the tangent line to the graph at `x=2`.
It seems like a lot of steps, but it's a process. And with practice, you will absolutely get the hang of it. You can do this. Keep going.
The expression `(f(a+h) - f(a)) / h` is not equal to the final answer. The *limit* of the expression is the answer. An AP grader will deduct points for this notational error.
Write `lim` on every line of your calculation until you actually substitute `h=0` (or whatever the limit is).
This will almost always give you the indeterminate form `0/0`. The entire point of the process is to algebraically rearrange the expression so you can find what it *approaches* as `h` gets close to zero.
Use algebra to expand, simplify, and cancel the `h` in the denominator *before* you evaluate the limit.
This is a fundamental algebra error. `f(a+h)` means you must replace *every* `x` in the original function with the entire quantity `(a+h)`.
For `f(x) = x²`, `f(a+h) = (a+h)² = a² + 2ah + h²`. Always use parentheses when you substitute.
Functions generally don't work this way. `f(a+h)` is not the same as adding the function values separately.
Always go back to the definition of the function. If `f(x) = 3x+1`, then `f(a+h) = 3(a+h)+1`.
The difference quotient is a fraction. Forgetting the denominator means you are no longer calculating a rate of change (a slope).
Keep your work neat and write out the full fraction on each line. It helps prevent you from dropping terms.
These are two different concepts. Average rate of change uses the simple slope formula over an interval. The derivative is the instantaneous rate at a single point.
Read the question carefully. "Average" means use the algebra slope formula. "Instantaneous" or "at a point" means use the limit definition of the derivative.