Courses / Physics I
Principles of Mechanics

Problem-Solving: Mechanics

Physics I 295 words Free to read

Expert problem-solvers do not start with formulas — they start by choosing a law: does this need Newton, energy, or momentum? Collisions call for momentum, smooth height changes call for energy, and "find the force" calls for Newton. Multi-stage problems chain different laws across different stages.

Mechanics problems follow a systematic approach. Applying a clear strategy prevents errors and builds physical intuition.

General strategy

  1. Draw a diagram with all forces and a coordinate system.
  2. List the knowns and unknowns.
  3. Choose the right principle:
SituationBest approach
Find accelerationNewton's second law
Find speed at a positionEnergy conservation
Collision or explosionMomentum conservation
Rotating objectTorque and IαI\alpha
OscillationSHM equations
  1. Write the equations and solve algebraically before substituting numbers.
  2. Check units, limiting cases, and sign conventions.

Dimensional analysis — Every equation must be dimensionally consistent:

[F]=kgm/s2,[E]=kgm2/s2[F] = \text{kg}\cdot\text{m/s}^2, \qquad [E] = \text{kg}\cdot\text{m}^2/\text{s}^2

g = 9.8      # m/s^{2}
m = 2.0      # kg
v0 = 15.0    # m/s
theta = 45   # degrees
import math
R = v0**2 * math.sin(2*math.radians(theta)) / g
print(f"Range = {R:.2f} m")

Common pitfalls

Tip: When stuck, count equations and unknowns. If you have fewer equations than unknowns, you need another physical principle or constraint.
Common pitfall: Applying energy conservation across a sticking collision. Perfectly inelastic impacts always destroy kinetic energy; only momentum bridges that moment. Split the problem at the collision and switch tools.

Practise this lesson

The explanation above is free to read. The graded practice for this lesson lives in the Tryals app.

13practice questions
2interactive scenes
Start Physics I free

Principles of Mechanics