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

Rates of Change in Linear and Quadratic Functions

Lesson ~11 min read 8 MCQs

In simple terms: In simple terms, this topic is about measuring how fast a function's values are changing—its "average speed"—and how that speed itself changes for straight lines (linear functions) and U-shaped curves (quadratic functions).

Why this matters

Imagine you're on a cross-country road trip from Boston to Seattle. For a long stretch through the plains of Montana, you set your cruise control to 70 mph. Your speed is constant. This is a linear relationship: for every hour that passes, you cover 70 miles. The rate of change is unchanging.

Now, picture yourself exiting the highway in Chicago. You slow down for the off-ramp, stop at a light, and then accelerate back onto a local road. Your speed is constantly changing—it's not a steady 70 mph anymore. This is more like a quadratic function. Your rate of change (your speed) is itself changing over time.

In this lesson, we'll learn how to precisely measure that "average speed" for any function, which we call the average rate of change. We'll see why it's simple for linear functions and uncover a surprising, predictable pattern for quadratic functions that will be essential for your AP exam.

Concept overview

flowchart TD
    A[Start with a function and equal-length intervals] --> B{Calculate Average Rates of Change (AROCs) for each interval};
    B --> C{Are the AROCs constant?};
    C -->|Yes| D[Function is LINEAR];
    D --> E[Change in AROCs is 0];
    C -->|No| F{Calculate the differences between consecutive AROCs};
    F --> G{Are these new differences constant?};
    G -->|Yes| H[Function is QUADRATIC];
    H --> I[Change in AROCs is a non-zero constant];
    G -->|No| J[Function is another type];
This flowchart shows a decision-making process for identifying function types based on rates of change. It starts with calculating Average Rates of Change (AROCs). If the AROCs are constant, the function is linear; if not, it proceeds to calculate the differences between the AROCs to determine if the function is quadratic.

Core explanation

Hello everyone, it's Saavi. Today we're diving into one of the most fundamental ideas in all of calculus: rates of change. It sounds fancy, but you've been working with it for years.

What is a Rate of Change?

Anytime you've calculated the slope of a line, you've found a rate of change. It's the ratio that tells you how much the vertical value (y) changes for every one-unit change in the horizontal value (x).

You know the slope formula: m = (y₂ - y₁) / (x₂ - x₁)

This is the blueprint for everything we'll do today.

Average Rate of Change (AROC) and the Secant Line

For a straight line, the slope is the same everywhere. But what about a curve, like a parabola? The "steepness" is constantly changing.

We can't find the slope at a single point yet (that's a calculus topic!), but we can find the average rate of change between two points.

Imagine picking two points on a curve, (a, f(a)) and (b, f(b)), and drawing a straight line through them. This line is called a secant line. The slope of that secant line is the average rate of change of the function between x=a and x=b.

The formula is the same as the slope formula, just with function notation:

Average Rate of Change (AROC) = (f(b) - f(a)) / (b - a)

Memorize this. It's non-negotiable. It represents the average "speed" of the function across the interval [a, b].

Rates of Change for Linear Functions

Let's start with something familiar: a linear function like f(x) = 3x + 5.

Let's find the AROC on the interval [1, 4]. Here, a=1 and b=4.

  • f(1) = 3(1) + 5 = 8
  • f(4) = 3(4) + 5 = 17

AROC = (f(4) - f(1)) / (4 - 1) = (17 - 8) / 3 = 9 / 3 = 3.

The AROC is 3. Notice anything? It's the slope of the line. For any linear function, the average rate of change over any interval will always be the same constant value: its slope. Because the rate of change is constant, the change in the rate of change is always zero.

The Big Idea: Rates of Change for Quadratic Functions

This is where it gets interesting. Let's analyze the simple quadratic function f(x) = x². We're going to look at the AROC over several consecutive intervals of equal length. Let's use intervals of length 1.

  • Interval [0, 1]
    AROC = (f(1) - f(0)) / (1 - 0) = (1² - 0²) / 1 = 1
  • Interval [1, 2]
    AROC = (f(2) - f(1)) / (2 - 1) = (2² - 1²) / 1 = (4 - 1) / 1 = 3
  • Interval [2, 3]
    AROC = (f(3) - f(2)) / (3 - 2) = (3² - 2²) / 1 = (9 - 4) / 1 = 5
  • Interval [3, 4]
    AROC = (f(4) - f(3)) / (4 - 3) = (4² - 3²) / 1 = (16 - 9) / 1 = 7

Look at our average rates of change: 1, 3, 5, 7. They aren't constant! They are increasing. This tells us the graph is getting steeper.

Now, let's take the next step. Let's look at the change in the average rates of change.

  • From 1 to 3, the change is +2.
  • From 3 to 5, the change is +2.
  • From 5 to 7, the change is +2.

The change is constant!

This is the big reveal for this topic:

  • For a linear function, the rate of change is constant.
  • For a quadratic function, the rate of change is not constant, but the change in the rate of change is constant over equal-length intervals.

This is how you can identify a quadratic function from a table of data. If the first differences are not constant but the second differences are, the data likely models a quadratic function.

AROC and Concavity

This pattern has a name in the visual language of graphs: concavity.

  • When the average rates of change are increasing (like 1, 3, 5, 7), the function's slope is getting steeper. The graph bends upward, like a bowl. We call this concave up.

  • If the average rates of change were decreasing (e.g., 7, 5, 3, 1), the function's slope would be getting less steep. The graph would bend downward, like a dome. We call this concave down. This happens with parabolas that open downward, like f(x) = -x².

So, by analyzing how the AROC changes, we can describe the curvature of the graph itself.

The average rate of change is the slope of the secant line between two points on a curve.
Comparing average rates of change for a linear function f(x) = 3x + 5.

Worked examples

Let's walk through a couple of problems you might see on a test. The key is to be slow, methodical, and write out each step.


Problem 1: Calculating AROC for a Quadratic

Find the average rate of change of the function g(x) = 2x² - 3x + 1 on the interval [-1, 3].

Solution:

  1. 1
    Identify the formula and your inputs
    The formula is AROC = (g(b) - g(a)) / (b - a). Here, a = -1 and b = 3.
  2. 2

    Calculate g(a) and g(b) separately. This is where most students make calculation errors. Take your time.

    • g(b) = g(3) = 2(3)² - 3(3) + 1 = 2(9) - 9 + 1 = 18 - 9 + 1 = 10
    • g(a) = g(-1) = 2(-1)² - 3(-1) + 1 = 2(1) + 3 + 1 = 2 + 3 + 1 = 6
  3. 3
    Plug the values into the AROC formula
    AROC = (10 - 6) / (3 - (-1))
  4. 4
    Simplify carefully
    Watch your signs in the denominator! AROC = 4 / (3 + 1) = 4 / 4 = 1

Problem 2: Using a Table to Identify a Function Type

A function h(x) is defined by the table below. Is h(x) linear or quadratic?

x h(x)
0 5
2 11
4 21
6 35
8 53

Solution:

  1. Check for a constant rate of change (Linear). The x values are increasing by a constant amount (+2), so we can compare the rates of change. We'll calculate the AROC for each interval.

    • Interval [0, 2]: AROC = (11 - 5) / (2 - 0) = 6 / 2 = 3
    • Interval [2, 4]: AROC = (21 - 11) / (4 - 2) = 10 / 2 = 5
    • Interval [4, 6]: AROC = (35 - 21) / (6 - 4) = 14 / 2 = 7
    • Interval [6, 8]: AROC = (53 - 35) / (8 - 6) = 18 / 2 = 9

    The average rates of change are 3, 5, 7, 9. They are not constant, so the function is not linear.

  2. Check for a constant change in the rate of change (Quadratic). Now we look at the list of AROCs we just calculated: 3, 5, 7, 9. Let's find the difference between consecutive terms.

    • 5 - 3 = 2
    • 7 - 5 = 2
    • 9 - 7 = 2

    The change is a constant 2.

Analyzing average rates of change for a quadratic function from a table.

Try it yourself

Time to get your hands dirty. Try these out, and remember to show your work.

Problem 1: A baseball is thrown upwards from the top of a building. Its height in feet after t seconds is given by the function h(t) = -16t² + 48t + 64. What is the average rate of change of the height (the average velocity) of the ball between t=1 second and t=3 seconds?

Hint: Your a is 1 and your b is 3. What does a negative AROC mean in the context of the ball's flight?

Problem 2: Consider the function f(x) represented by the values in the table. Calculate the constant rate of change of the average rates of change.

x f(x)
-2 22
-1 10
0 4
1 4
2 10

Hint: First, calculate the AROC for each interval: [-2, -1], [-1, 0], [0, 1], and [1, 2]. Then, find the difference between those resulting rates.