Navigation: Wiki Home > Skills > Displacement vs. Total Distance
Imagine you walk 5 blocks east, then 3 blocks west. Where did you end up? 2 blocks east of where you started. That's your displacement—the net change in position.
But how far did you walk? 8 blocks total. That's your total distance traveled—it counts every step regardless of direction.
Calculus captures this distinction perfectly:
| Property | Value |
|---|---|
| Concept | Integration |
| Course | MATH161 |
| Difficulty | Intermediate |
| Time | ~15 minutes |
Let $s(t)$ be position and $v(t) = s'(t)$ be velocity. Then:
$$\boxed{\text{Displacement} = \int_{t_1}^{t_2} v(t)\,dt = s(t_2) - s(t_1)}$$
$$\boxed{\text{Total Distance} = \int_{t_1}^{t_2} \vert v(t)\vert \,dt}$$
When $v(t) \geq 0$: Object moves in positive direction (e.g., right or up) When $v(t) < 0$: Object moves in negative direction (e.g., left or down)
v(t)
│ ╱╲ A₁ (positive area)
│ ╱ ╲
────┼─╱────╲────────► t
│ ╲ ╱
│ V A₂ (negative area)
│
To compute $\int_a^b \vert v(t)\vert \,dt$:
A particle moves with velocity $v(t) = t^2 - 4$ for $0 \leq t \leq 3$.
Step 1: Find roots. $v(t) = 0$ when $t^2 = 4$, so $t = 2$ (only root in $[0,3]$)
Step 2: Check signs:
Step 3: $$\text{Displacement} = \int_0^3 (t^2 - 4)\,dt = \left[\frac{t^3}{3} - 4t\right]_0^3 = (9 - 12) - 0 = -3$$
$$\text{Distance} = \int_0^2 \vert t^2 - 4\vert \,dt + \int_2^3 \vert t^2 - 4\vert \,dt$$ $$= \int_0^2 -(t^2 - 4)\,dt + \int_2^3 (t^2 - 4)\,dt$$ $$= \int_0^2 (4 - t^2)\,dt + \int_2^3 (t^2 - 4)\,dt$$ $$= \left[4t - \frac{t^3}{3}\right]_0^2 + \left[\frac{t^3}{3} - 4t\right]_2^3$$ $$= \left(8 - \frac{8}{3}\right) + \left[(9 - 12) - \left(\frac{8}{3} - 8\right)\right]$$ $$= \frac{16}{3} + \left[-3 + \frac{16}{3}\right] = \frac{16}{3} + \frac{7}{3} = \frac{23}{3} \approx 7.67$$
Interpretation: The particle ended up 3 units to the left of where it started, but traveled about 7.67 units total.
A car drives 30 miles north, then 50 miles south. Find:
A particle moves with velocity $v(t) = 3t + 2$ m/s for $0 \leq t \leq 4$ seconds.
A particle moves along a line with velocity $v(t) = t^2 - 5t + 4$ m/s for $0 \leq t \leq 5$ seconds.
A particle has acceleration $a(t) = 6t - 12$ m/s² and initial velocity $v(0) = 9$ m/s.
The Pedometer vs. GPS Analogy:
Your phone's pedometer counts every step—it doesn't care which direction you're going. That's like total distance: $\int \vert v(t)\vert \,dt$.
Your phone's GPS tracks your position—if you walk in circles and return home, it shows zero displacement. That's like $\int v(t)\,dt$.
If you walk in a straight line without turning around, both give the same answer. But the moment you backtrack, the pedometer keeps counting while the GPS shows less progress.
Looking back:
Looking ahead:
Real-world connections:
| Previous | Up | Next |
|---|---|---|
| Net Change Theorem | Skills Index | The Substitution Rule |
Last updated: 2026-01-22