Free for students · Ad-free · WCAG 2.1 AA Compliant · Accessibility

Defining Average and Instantaneous Rates of Change at a Point

Lesson ~10 min read

In simple terms: 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.

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];
This diagram is a flowchart that helps decide how to calculate a rate of change. It starts with a question, "What is the rate of change?" and branches into two paths: "Over an Interval" leads to "Average Rate of Change" and the secant line slope formula. "At a Single Point" leads to "Instantaneous Rate of Change," the limit definition of the derivative, and finally, "The Derivative, f'(a)," which is the 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.

  1. 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 point x and a fixed point a.

  2. The (f(a+h) - f(a)) / h form: This one can look a little strange at first, but it's clever. Here, a is our starting point. Instead of calling the second point x, we call it a + h. The variable h just represents the distance, or the gap, between our two x-values.

    If our points are a and a+h, then the change in x is (a+h) - a = h. The change in y is f(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.

Example 1

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.

  1. 1
    Identify the formula
    We need the average rate of change, so we'll use the formula (g(b) - g(a)) / (b - a). Here, a=1 and b=2.
  2. 2
    Calculate the function values
    • g(1) = 16(1)² = 16 feet.
    • g(2) = 16(2)² = 16 * 4 = 64 feet.
  3. 3
    Plug the values into the formula
    Average Velocity = (g(2) - g(1)) / (2 - 1) = (64 - 16) / 1 = 48 / 1 = 48
  4. 4
    Include units
    The units for g(t) are feet and the units for t are seconds. So the rate of change is in feet per second.
Example 2

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

  1. 1
    Find the pieces
    We need f(2) and f(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²
  2. 2
    Substitute into the limit definition
    f'(2) = lim ( (7 + 12h + 3h²) - 7 ) / h as h → 0
  3. 3
    Simplify the numerator
    f'(2) = lim (12h + 3h²) / h as h → 0 Notice if we plug in h=0 now, we get 0/0. We must simplify further.
  4. 4

    Factor out h and cancel: This is the key algebraic step. f'(2) = lim ( h(12 + 3h) ) / h as h → 0 The h in the numerator and denominator cancel out. f'(2) = lim (12 + 3h) as h → 0

  5. 5
    Evaluate the limit
    Now that the h in the denominator is gone, we can safely let h go 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.

  1. Priya is tracking the growth of her startup. The total number of users is modeled by the function U(m) = m³ + 50, where m is 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).
  2. 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).