Kinematics: Edge Cases and Subtle Traps (9)

hard 3 min read

Question

A particle moves along the x-axis with velocity v(t)=6tt2v(t) = 6t - t^2 m/s for 0t80 \le t \le 8 s. Find (a) the displacement and (b) the total distance travelled in this interval. This is a classic JEE Main trap because most students treat displacement and distance as the same thing.

Solution — Step by Step

We need the zero of v(t)v(t). Set 6tt2=0t(6t)=06t - t^2 = 0 \Rightarrow t(6 - t) = 0, so t=0t = 0 or t=6t = 6 s. Between t=0t=0 and t=6t=6, v>0v > 0. Between t=6t=6 and t=8t=8, v<0v < 0. The particle reverses direction at t=6t = 6 s.

Displacement is the signed integral:

Δx=08(6tt2)dt=[3t2t33]08=1925123=5765123=64321.33 m\Delta x = \int_0^8 (6t - t^2)\, dt = \left[3t^2 - \tfrac{t^3}{3}\right]_0^8 = 192 - \tfrac{512}{3} = \tfrac{576 - 512}{3} = \tfrac{64}{3} \approx 21.33 \text{ m}

Distance needs v|v|. Split at t=6t = 6:

d1=06(6tt2)dt=10872=36 md_1 = \int_0^6 (6t - t^2)\, dt = 108 - 72 = 36 \text{ m} d2=68(6tt2)dt=64336=44314.67 md_2 = \left|\int_6^8 (6t - t^2)\, dt\right| = \left|\,\tfrac{64}{3} - 36\,\right| = \tfrac{44}{3} \approx 14.67 \text{ m}

Total distance =36+443=152350.67= 36 + \tfrac{44}{3} = \tfrac{152}{3} \approx 50.67 m.

Displacement = 643\tfrac{64}{3} m. Total distance = 1523\tfrac{152}{3} m.

Why This Works

Velocity is a signed quantity. When we integrate v(t)v(t) directly, the regions where the particle moves backward subtract from the regions where it moves forward — that gives us net displacement. Distance ignores direction; we always add positive contributions, which is why we integrate v(t)|v(t)|.

The trap is this — students compute one number and report it as “the answer,” not realising the question wants two. JEE Main 2023 had a near-identical problem worth 4 marks where ~40% of test-takers gave only displacement.

Alternative Method

For polynomial velocity, you can find the position function x(t)=3t2t3/3x(t) = 3t^2 - t^3/3, evaluate x(8)x(0)x(8) - x(0) for displacement, and use turning-point analysis (x(6)x(0)+x(8)x(6)|x(6) - x(0)| + |x(8) - x(6)|) for distance. Same answer, slightly less notation.

The trap. Many students stop at Δx=64/3\Delta x = 64/3 and label it “distance travelled.” Always check whether vv changes sign in the given interval — if it does, distance and displacement differ.

Common Mistake

The other subtle error is forgetting the absolute value when computing d2d_2. Students write d2=68(6tt2)dt=443d_2 = \int_6^8 (6t - t^2)\, dt = -\tfrac{44}{3} and either drop the negative sign mid-calculation or add the negative number, getting distance << displacement. Distance can never be less than displacement — that itself is a sanity check worth doing.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next