Derivatives as rates in context — where the units carry the meaning, and where an indeterminate limit finally becomes easy.
By the end of this chapter you can
Interpret a derivative in context, with units
Analyse rectilinear motion from a position function
Distinguish displacement from total distance
Apply L'Hôpital's rule and know when it does not apply
A derivative is a rate of change, and in context the units say what kind. That
sounds like a triviality and is worth most of a chapter, because “interpret this
derivative” is asked on every exam and is marked on the sentence, not the number.
Units carry the meaning
If V(t) is volume in litres and t is time in minutes, then V′(t) is in
litres per minute — a rate of filling. The unit is not decoration; it is the
interpretation.
f measures
x measures
f′ means
position (m)
time (s)
velocity (m/s)
cost ($)
items
marginal cost ($/item)
population
years
growth rate (people/year)
temperature (°C)
time (min)
rate of cooling (°C/min)
An answer that says “V′(5)=−3” earns less than one saying “at 5 minutes the
tank is draining at 3 litres per minute”. The second states the sign’s
meaning and the units, which is what the rubric asks for.
Rectilinear motion
Position s(t), and everything else follows:
v(t)=s′(t)a(t)=v′(t)=s′′(t)
dtd(t3−6t2+9t)=3t2−12t+9
dtd(3t2−12t+9)=6t−12
checked by the build
For s(t)=t3−6t2+9t: velocity 3t2−12t+9=3(t−1)(t−3), zero at
t=1 and t=3; acceleration 6t−12, zero at t=2.
Three questions the exam asks from exactly this setup:
When is it at rest?v=0, so t=1 and t=3.
When does it change direction? When v changes sign — which it does at
both, since each is a simple root. A double root would touch zero without
crossing, and the object would not turn.
When is it speeding up? When v and a share a sign. Between t=1 and
t=2, v is negative and a is negative, so it is speeding up while moving
backwards — the case that catches people, and the same point PhysTB’s chapter
1.1 makes.
Displacement is not distance
displacement=∫abvdttotal distance=∫ab∣v∣dt
Displacement is net change in position and can be zero for a long journey.
Total distance never decreases.
∫(3t2−12t+9)dt=t3−6t2+9t
checked by the build
To compute total distance, split at every time the velocity changes sign and
add the magnitudes. Integrating v straight through lets the backwards stretch
cancel the forwards one — which is the right answer to a different question.
L’Hôpital’s rule
Chapter 1.2 resolved 00 by factoring, rationalising, or recognising a
standard limit. L’Hôpital handles the cases none of those reach.
If limgf is 00 or ∞∞, then
limg(x)f(x)=limg′(x)f′(x)
provided the second limit exists.
x→0lim(xsin(x))=1
x→0lim(xex−1)=1
x→∞lim(xe−x)=0
x→0lim(x21−cos(x))=21
checked by the build
All four verified, and all four are one or two applications of the rule. The
last needs it twice: x21−cosx→2xsinx→2cosx=21.
Differentiate top and bottom separately — this is not the quotient rule, and
using the quotient rule here is the other standard error.
Other indeterminate forms — 0⋅∞, ∞−∞, 1∞ — must
be algebraically rearranged into a quotient before the rule applies.
{
"question": "A particle has v(t) = t² − 4. Over 0 ≤ t ≤ 3, how does total distance compare with displacement?",
"options": [
{
"text": "Total distance is larger, because v changes sign at t = 2",
"correct": true,
"why": "v is negative on [0,2) and positive on (2,3]. Displacement lets the backwards stretch cancel part of the forwards one; total distance adds their magnitudes, so it is strictly larger."
},
{
"text": "They are equal, since the particle ends up ahead of where it started",
"correct": false,
"why": "Where it ends up is irrelevant. They are equal only when v never changes sign, and here it does at t = 2."
},
{
"text": "Displacement is larger, since it integrates v rather than |v|",
"correct": false,
"why": "|v| ≥ v everywhere, so the distance integral can never be smaller. Displacement is at most equal and here strictly less."
},
{
"text": "It cannot be determined without the starting position",
"correct": false,
"why": "Both are computed from velocity alone. The starting position shifts where the particle is, not how far it goes."
}
]
}