Kinematics: Common Mistakes and Fixes (3)

hard 3 min read

Question

A particle is projected vertically upwards with speed u=20u = 20 m/s from the top of a tower of height 2525 m. Find the time taken to hit the ground. Take g=10g = 10 m/s2^2.

This looks like a one-line substitution, but every year students lose marks here because of a sign convention slip. Let’s walk through it carefully and then talk about the three places where students mess up.

Solution — Step by Step

We pick upward as positive. So u=+20u = +20 m/s, a=g=10a = -g = -10 m/s2^2, and the displacement to reach the ground is s=25s = -25 m (the ground is below the start point).

If you skip this step and randomly mix signs, the quadratic gives a wrong root.

s=ut+12at2s = ut + \tfrac{1}{2}at^2

Substituting:

25=20t+12(10)t2-25 = 20t + \tfrac{1}{2}(-10)t^2

25=20t5t2-25 = 20t - 5t^2

5t220t25=0    t24t5=05t^2 - 20t - 25 = 0 \implies t^2 - 4t - 5 = 0

Factor: (t5)(t+1)=0(t - 5)(t + 1) = 0, so t=5t = 5 s or t=1t = -1 s.

Time can’t be negative, so t=5t = 5 s.

Final answer: t=5t = 5 s.

Why This Works

The trick is that we are not asking “when does it come back to the start?” — we are asking when it reaches a point 2525 m below the start. So ss has to carry a negative sign. Once that’s locked in, the algebra is just a standard quadratic.

The negative root t=1t = -1 s has a meaning, by the way: it’s the time at which a particle would have left the ground to reach the projection point with the given velocity. We discard it because the motion only started at t=0t = 0.

Alternative Method

Split the motion into two phases.

Phase 1 (going up to the highest point above the tower): v=0v = 0, so time t1=u/g=2t_1 = u/g = 2 s and height gained h=u2/(2g)=20h = u^2/(2g) = 20 m.

Phase 2 (free fall from height 25+20=4525 + 20 = 45 m): 45=12(10)t22    t2=345 = \tfrac{1}{2}(10)t_2^2 \implies t_2 = 3 s.

Total time =t1+t2=2+3=5= t_1 + t_2 = 2 + 3 = 5 s. Same answer.

The three classic kinematics traps in this question:

  1. Writing s=+25s = +25 instead of 25-25. Students forget that displacement is a vector and the ground is below the launch point.
  2. Using v2=u22ghv^2 = u^2 - 2gh with h=25h = 25 to find the landing speed and then trying v=ugtv = u - gt to find time — this works, but only if you consistently keep the sign of the final velocity negative.
  3. Forgetting that the projectile first goes up before coming down. If you set gg as positive (downward as positive) but keep uu as +20+20, the equation gives wrong roots.

For any “tower + projectile” problem, draw the path with arrows for uu, gg, and ss before writing the equation. Thirty seconds of drawing saves three minutes of debugging signs.

Common Mistake

Students write 25=20t5t225 = 20t - 5t^2 (positive 2525) and end up with 5t220t+25=05t^2 - 20t + 25 = 0, whose discriminant is 400500<0400 - 500 < 0 — no real roots. They panic, redo the question, and lose four minutes. The root cause is always the same: not committing to a sign convention upfront.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next