Difficulty: Medium
Correct Answer: 50 m
Explanation:
Introduction / Context:Total distance travelled differs from net displacement when the motion includes reversals (turning points). For polynomial position-time functions, identifying turning instants via velocity analysis is essential to sum absolute path segments correctly.
Given Data / Assumptions:
Concept / Approach:Compute velocity v(t) = dx/dt. Turning points occur where v(t) = 0 (and acceleration indicates direction change). Evaluate positions at the start, at each turning instant within the interval, and at the end. Sum absolute differences to get total distance; net displacement would be the algebraic difference x(10) − x(0).
Step-by-Step Solution:
v(t) = d/dt (t^2 − 10 t + 30) = 2 t − 10.Set v(t) = 0 → 2 t − 10 = 0 → t = 5 s (turning point within [0, 10]).Positions: x(0) = 0 − 0 + 30 = 30 m.x(5) = 25 − 50 + 30 = 5 m.x(10) = 100 − 100 + 30 = 30 m.Distances: from t=0 to 5 → |30 − 5| = 25 m; from t=5 to 10 → |5 − 30| = 25 m.Total distance = 25 + 25 = 50 m.Verification / Alternative check:Acceleration a(t) = dv/dt = 2 m/s^2 > 0 confirms a single minimum at t = 5 s. Net displacement x(10) − x(0) = 30 − 30 = 0 m, while total distance is 50 m, consistent with a “down then up” path.
Why Other Options Are Wrong:
Common Pitfalls:Confusing displacement with distance; forgetting to split the time interval at v = 0; sign errors in evaluating absolute differences.
Final Answer:50 m
Discussion & Comments