Average vs. Instantaneous Rate of Change
Average vs. Instantaneous Rate of Change
In calculus, one of the biggest ideas is understanding how a quantity changes. Sometimes we look at change over a whole interval, and sometimes we want the change at one exact moment. These two ideas are called the average rate of change and the instantaneous rate of change.
This lesson explains the difference between them, shows how they are connected, and teaches how to compute instantaneous rates of change using the limit definition. This is the foundation of differentiation.
1. What is a rate of change?
A rate of change compares how much one quantity changes compared to another. In functions, we usually compare the change in output to the change in input.
If a function is written as \(y=f(x)\), then the rate of change tells us how much \(f(x)\) changes when \(x\) changes.
For example, if distance depends on time, then the rate of change of distance with respect to time is speed.
2. Average rate of change
The average rate of change of a function over an interval \([a,b]\) is the slope of the secant line joining the points \((a,f(a))\) and \((b,f(b))\).
The formula is
$$\text{Average rate of change} = \frac{f(b)-f(a)}{b-a}$$This tells us the function's overall change over the interval, not what happens at a single point.
Geometrically:
- Choose two points on the graph.
- Draw the line through them.
- The slope of that line is the average rate of change.
3. Instantaneous rate of change
The instantaneous rate of change is the rate of change at one exact value of \(x\). It is the slope of the tangent line to the graph at that point.
This is more subtle, because one point by itself does not form a line. So we begin with average rate of change over a very small interval and then let that interval shrink toward zero.
That is why instantaneous rate of change is defined using a limit.
At \(x=a\), the instantaneous rate of change is
$$f'(a)=\lim_{h\to 0}\frac{f(a+h)-f(a)}{h}$$This is called the limit definition of the derivative.
Here:
- \(h\) is a very small change in \(x\),
- \(f(a+h)-f(a)\) is the corresponding change in the output,
- \(\frac{f(a+h)-f(a)}{h}\) is the average rate of change over the tiny interval,
- taking the limit as \(h\to 0\) gives the instantaneous rate of change.
4. Connecting average and instantaneous rate of change
The average rate of change uses two separate points. The instantaneous rate of change is what happens when the second point moves closer and closer to the first point.
So you can think of the instantaneous rate of change as the limiting value of the average rates of change.
In symbols, over the interval from \(a\) to \(a+h\), the average rate of change is
$$\frac{f(a+h)-f(a)}{h}$$Then the instantaneous rate of change at \(a\) is
$$\lim_{h\to 0}\frac{f(a+h)-f(a)}{h}$$This transition from interval-based slope to exact-point slope is one of the central ideas of calculus.
5. Physical meaning: average speed vs instantaneous speed
Suppose a car travels \(120\) km in \(2\) hours. Its average speed is
$$\frac{120}{2}=60\text{ km/h}$$But this does not mean the car was traveling exactly \(60\) km/h at every moment. It may have sped up or slowed down.
If we ask, “How fast was the car going at exactly 1.5 hours?” we are asking for the instantaneous speed. That is an instantaneous rate of change.
6. Notation for instantaneous rate of change
If \(y=f(x)\), then the instantaneous rate of change at \(x=a\) may be written as:
- \(f'(a)\)
- \(\left.\frac{dy}{dx}\right|_{x=a}\)
- the derivative of \(f\) at \(a\)
If we find a formula for the derivative for all \(x\), we write \(f'(x)\).
7. Worked Example 1: Average rate of change
Find the average rate of change of \(f(x)=x^2+1\) on the interval \([1,4]\).
Step 1: Use the formula
$$\frac{f(4)-f(1)}{4-1}$$Step 2: Evaluate the function values
$$f(4)=4^2+1=17$$ $$f(1)=1^2+1=2$$Step 3: Substitute
$$\frac{17-2}{3}=\frac{15}{3}=5$$Answer: The average rate of change is \(5\).
This means that over the interval from \(x=1\) to \(x=4\), the function increases on average by \(5\) units of \(y\) for each 1 unit increase in \(x\).
8. Worked Example 2: Instantaneous rate of change from the limit definition
Find the instantaneous rate of change of \(f(x)=x^2\) at \(x=3\) using the limit definition.
Step 1: Write the definition
$$f'(3)=\lim_{h\to 0}\frac{f(3+h)-f(3)}{h}$$Step 2: Compute each part
$$f(3+h)=(3+h)^2=9+6h+h^2$$ $$f(3)=9$$Step 3: Substitute into the quotient
$$f'(3)=\lim_{h\to 0}\frac{(9+6h+h^2)-9}{h}$$ $$=\lim_{h\to 0}\frac{6h+h^2}{h}$$Step 4: Simplify
$$=\lim_{h\to 0}(6+h)$$Step 5: Take the limit
$$f'(3)=6$$Answer: The instantaneous rate of change at \(x=3\) is \(6\).
This is the slope of the tangent line to \(y=x^2\) at \(x=3\).
9. Seeing the transition numerically
Before using the limit formally, it helps to see what happens numerically for \(f(x)=x^2\) at \(x=3\).
The average rate of change from \(x=3\) to \(x=3+h\) is
$$\frac{(3+h)^2-3^2}{h}=\frac{6h+h^2}{h}=6+h$$If \(h\) is small:
- if \(h=1\), rate \(=7\)
- if \(h=0.1\), rate \(=6.1\)
- if \(h=0.01\), rate \(=6.01\)
- if \(h=-0.1\), rate \(=5.9\)
- if \(h=-0.01\), rate \(=5.99\)
From both sides, the value gets closer to \(6\). That is why the instantaneous rate of change is \(6\).
10. Worked Example 3: Find the derivative formula using the limit definition
Use the limit definition to find \(f'(x)\) for \(f(x)=x^2+3x\).
Step 1: Write the definition
$$f'(x)=\lim_{h\to 0}\frac{f(x+h)-f(x)}{h}$$Step 2: Find \(f(x+h)\)
$$f(x+h)=(x+h)^2+3(x+h)$$ $$=x^2+2xh+h^2+3x+3h$$Step 3: Substitute into the difference quotient
$$f'(x)=\lim_{h\to 0}\frac{(x^2+2xh+h^2+3x+3h)-(x^2+3x)}{h}$$Step 4: Simplify the numerator
$$f'(x)=\lim_{h\to 0}\frac{2xh+h^2+3h}{h}$$Step 5: Factor out \(h\)
$$=\lim_{h\to 0}\frac{h(2x+h+3)}{h}$$ $$=\lim_{h\to 0}(2x+h+3)$$Step 6: Take the limit
$$f'(x)=2x+3$$Answer: The derivative is
$$f'(x)=2x+3$$This means the instantaneous rate of change of the function at any value of \(x\) is \(2x+3\).
For example, at \(x=2\), the instantaneous rate of change is
$$f'(2)=2(2)+3=7$$11. Worked Example 4: Comparing average and instantaneous rates
Let \(f(x)=x^3\). Compare the average rate of change on \([1,2]\) with the instantaneous rate of change at \(x=1\).
Part A: Average rate of change on \([1,2]\)
$$\frac{f(2)-f(1)}{2-1}$$ $$=\frac{8-1}{1}=7$$So the average rate of change is \(7\).
Part B: Instantaneous rate of change at \(x=1\)
Use the limit definition:
$$f'(1)=\lim_{h\to 0}\frac{(1+h)^3-1^3}{h}$$Expand:
$$ (1+h)^3=1+3h+3h^2+h^3 $$Substitute:
$$f'(1)=\lim_{h\to 0}\frac{1+3h+3h^2+h^3-1}{h}$$ $$=\lim_{h\to 0}\frac{3h+3h^2+h^3}{h}$$ $$=\lim_{h\to 0}(3+3h+h^2)$$ $$=3$$Answer:
- Average rate of change on \([1,2]\): \(7\)
- Instantaneous rate of change at \(x=1\): \(3\)
This example shows that the average rate over an interval can be very different from the rate at one exact point.
12. Differentiation rules and instantaneous rate of change
The limit definition is the foundation of the derivative, but once the idea is understood, we usually use differentiation rules to find instantaneous rates more efficiently.
Some common rules are:
- If \(f(x)=c\), then \(f'(x)=0\)
- If \(f(x)=x^n\), then \(f'(x)=nx^{n-1}\)
- If \(f(x)=af(x)+bg(x)\), then derivative is found term-by-term
For example, if \(f(x)=4x^3-2x+5\), then
$$f'(x)=12x^2-2$$This derivative gives the instantaneous rate of change at any value of \(x\).
At \(x=2\), the instantaneous rate of change is
$$f'(2)=12(2)^2-2=48-2=46$$13. Common mistakes to avoid
- Mixing up average and instantaneous rate of change. Average uses two endpoints. Instantaneous uses a limit at one point.
- Forgetting the formula. Average rate of change is \(\frac{f(b)-f(a)}{b-a}\), not just \(f(b)-f(a)\).
- Substituting too early in the limit definition. If you plug in \(h=0\) before simplifying, you often get \(\frac{0}{0}\), which is undefined.
- Making algebra errors when expanding. Be careful with brackets, especially in expressions like \((x+h)^2\) or \((x+h)^3\).
- Thinking the derivative is only a formula. It also has meaning: slope of the tangent line and instantaneous rate of change.
14. How to decide which method to use
If the question asks for change over an interval, use average rate of change:
$$\frac{f(b)-f(a)}{b-a}$$If the question asks for change at a point, use the instantaneous rate of change:
- either the limit definition, or
- a derivative rule if you already know the derivative.
Key words can help:
- Average, between, over the interval \(\rightarrow\) average rate of change
- At, exactly when, instantaneous, tangent \(\rightarrow\) instantaneous rate of change
15. Quick comparison table
- Average rate of change: over an interval
- Formula: \(\frac{f(b)-f(a)}{b-a}\)
- Graph meaning: slope of a secant line
- Instantaneous rate of change: at a single point
- Formula: \(f'(a)=\lim_{h\to 0}\frac{f(a+h)-f(a)}{h}\)
- Graph meaning: slope of a tangent line
16. Final summary
The average rate of change describes how a function changes across an interval, and it is found using the slope between two points. The instantaneous rate of change describes how a function changes at one exact point, and it is found by taking the limit of average rates of change as the interval becomes extremely small.
This idea leads directly to the derivative. The derivative is one of the most important tools in calculus because it lets us describe motion, slope, growth, and change precisely.
Once you understand that instantaneous rate of change comes from the limit of average rate of change, the whole idea of differentiation becomes much more meaningful.
Put what you read to the test
You've worked through Average vs. Instantaneous Rate of Change. Try answering a few questions to see what stuck — and what might deserve a quick reread before you move on.