Guide

A Step-by-Step Framework for Solving Kinematics Problems

9 min read

Kinematics is usually the first serious problem-solving topic in physics, and it sets a pattern you will reuse everywhere: identify what you know, choose the equation that connects it to what you want, and solve carefully. The equations themselves are few — the four constant-acceleration equations plus the definitions of velocity and acceleration — but students lose marks not on the algebra but on the setup.

This guide gives you a framework you can apply to almost any one-dimensional motion problem. It is deliberately mechanical, because a reliable routine is exactly what you want when the clock is running and the numbers look intimidating.

The five equations you are working with

Constant-acceleration motion is fully described by five relationships. Two are definitions and three are the derived SUVAT equations connecting displacement, velocity, acceleration, and time. Every standard kinematics problem is a matter of choosing the one equation that contains your three known quantities and your one unknown.

  • v = Δx/Δt — average velocity from displacement and time.
  • a = Δv/Δt — acceleration from change in velocity and time.
  • v = v_0 + at — velocity after time t (no displacement).
  • x = x_0 + v_0 t + ½at² — position after time t (no final velocity).
  • v² = v_0² + 2a(x − x_0) — final velocity from displacement (no time).

Step 1 — Draw the situation and choose a positive direction

Before touching an equation, sketch the motion and commit to a sign convention. Decide which direction is positive and stick with it for the whole problem. This single decision prevents the most common kinematics error: mixing signs for displacement, velocity, and acceleration.

For a ball thrown upward, if you call 'up' positive, then the initial velocity is positive and the acceleration due to gravity is −9.81 m/s². If you instead call 'down' positive, both flip. Neither is wrong, but silently switching between them mid-problem guarantees a wrong answer.

Step 2 — List knowns and the single unknown

Write out the five SUVAT quantities as a short table: initial velocity, final velocity, acceleration, displacement, and time. Fill in every value the problem gives, with signs, and mark the one you are solving for. A quantity that is not mentioned and not asked for is your clue to which equation to skip — the right equation is the one that omits it.

This table also catches hidden information. 'Dropped from rest' means the initial velocity is zero. 'Comes to a stop' means the final velocity is zero. 'In free fall' means the acceleration is g. Translating words into numbers here is where careful readers pull ahead.

Step 3 — Match knowns to the right equation

Now pick the equation whose variables are exactly your three knowns plus your unknown. If you know initial velocity, acceleration, and time and want the final velocity, use v = v_0 + at. If you know initial velocity, acceleration, and displacement and want the final velocity — with no time given — use v² = v_0² + 2a(x − x_0). Choosing by which variable is absent is faster and less error-prone than trying to force a familiar equation to fit.

  • No displacement involved → v = v_0 + at.
  • No final velocity involved → x = x_0 + v_0 t + ½at².
  • No time involved → v² = v_0² + 2a(x − x_0).

Step 4 — Solve symbolically, then substitute

Rearrange the equation for your unknown before plugging in numbers. Symbolic manipulation is easier to check and keeps units visible. Only once the unknown stands alone should you substitute values with their units attached. Carrying units through the calculation is a free error check: if the final units are not metres, metres per second, or metres per second squared as appropriate, you have made a mistake.

Step 5 — Sanity-check the answer

A number is not an answer until it passes a plausibility test. Is the sign consistent with your chosen positive direction? Is the magnitude reasonable — a dropped object should not hit the ground at 500 m/s after one second? A quick check against a related equation, or against your intuition for the physical scenario, catches most slips.

Projectile problems deserve special care: treat the horizontal and vertical directions as two independent one-dimensional problems that share only the time. Horizontal motion has zero acceleration; vertical motion has g. Solving them separately with this same five-step routine keeps a two-dimensional problem manageable.

A worked example, start to finish

Consider a classic problem: a ball is thrown straight up at 20 m/s. How high does it rise? Walk the framework. First, sketch it and choose up as positive, so the acceleration is −9.81 m/s². Next, list knowns: initial velocity is +20 m/s, acceleration is −9.81 m/s², and at the highest point the final velocity is zero. The unknown is the displacement, and time is neither given nor asked for.

Because time is the missing quantity, the equation to reach for is v² = v_0² + 2a(x − x_0). Solve it symbolically for the displacement: it equals (v² − v_0²) divided by 2a. Substituting with units, (0 − 400) divided by (2 × −9.81) gives about 20.4 metres. Finally, sanity-check: the sign is positive, meaning upward, which is correct, and about twenty metres is plausible for a firm throw. Every step of the routine did visible work, and the choice of equation followed automatically from noticing which variable was absent.

Frequently asked questions

Which kinematic equation should I use?

Identify the one quantity that is neither given nor asked for, then choose the equation that does not contain it. If time is missing, use v² = v_0² + 2a(x − x_0); if final velocity is missing, use x = x_0 + v_0 t + ½at².

Why do I keep getting sign errors in kinematics?

Almost always because the positive direction was not fixed at the start. Pick up or down as positive, apply it to velocity, acceleration, and displacement consistently, and keep it for the entire problem.

How do I handle projectile motion?

Split it into horizontal and vertical motion. The horizontal direction has constant velocity (zero acceleration); the vertical direction has acceleration g. Time is the only quantity shared between them.

What acceleration should I use for free fall?

Near Earth's surface, use the standard gravity value of about 9.81 m/s² directed downward. Give it the correct sign for your chosen positive direction.

Keep going