Momentum & Collisions
Level 3: Production Paper (From-Scratch Derivations & Explain-Out-Loud)
Time limit: 45 minutes Total marks: 60
Instructions: Derivations must start from stated first principles. Show every step. Where "explain out loud" is asked, write your reasoning in complete prose.
Question 1 — Impulse–momentum & conservation from first principles (10 marks)
(a) Starting from Newton's second law in the form , derive the impulse–momentum theorem . Define impulse. (3)
(b) Using Newton's third law, derive the conservation of total linear momentum for an isolated two-particle system. (4)
(c) Explain out loud: precisely which condition on external forces must hold for total momentum to be conserved for a many-particle system, and why internal forces never change total momentum. (3)
Question 2 — 1D elastic collision, solved from scratch (12 marks)
Two particles collide head-on elastically. Mass has initial velocity ; mass has .
(a) Write the two conservation laws (momentum, kinetic energy). (2)
(b) Derive the final velocities from scratch, showing the algebra (hint: form the relative-velocity relation). (6)
(c) A ball at strikes a stationary ball elastically. Compute and . (4)
Question 3 — Coefficient of restitution & inelastic KE loss (10 marks)
(a) Define the coefficient of restitution for a 1D collision, and state its values for perfectly elastic and perfectly inelastic cases. (2)
(b) Derive the fraction of kinetic energy lost in a perfectly inelastic head-on collision when is initially at rest (). Express the answer in terms of . (5)
(c) A lump () hits a stationary lump and they stick. Find the common velocity and the fractional KE lost. (3)
Question 4 — Centre of mass derivation (10 marks)
(a) State the definition of the centre of mass for a system of discrete particles. (2)
(b) From scratch, derive the position of the centre of mass of a uniform semicircular arc (thin wire) of radius , measured from the centre. Set up the integral and evaluate. (6)
(c) State (no derivation) the CM distance from centre for a uniform semicircular lamina (disc). (2)
Question 5 — Motion of CM & 2D elastic angles (10 marks)
(a) Derive that for a system of particles, starting from the definition of CM. (4)
(b) Prove that when a moving particle elastically collides with an identical stationary particle in 2D (glancing collision), the two outgoing velocities are perpendicular. (6)
Question 6 — Rocket equation (code-from-memory) (8 marks)
(a) Derive the rocket equation (Tsiolkovsky) from momentum conservation of ejected mass, in gravity-free space. (5)
(b) Write, from memory, a short Python function delta_v(m0, mf, vex) returning the achieved . Then state for , , . (3)
Answer keyMark scheme & solutions
Question 1 (10)
(a) From , integrate over collision time: Define impulse . Hence . (1 integral setup, 1 evaluation, 1 definition)
(b) Particles 1, 2 exert forces on each other. By Newton's III: . For each: , (only internal forces). Add: Therefore constant. (1 III law, 1 each eqn, 1 conclusion)
(c) Momentum is conserved iff the net external force = 0 (vector sum). Internal forces occur in Newton-III pairs that cancel pairwise in the total sum , so they cannot alter total ; only external forces can. (1 condition, 1 pairing, 1 why)
Question 2 (12)
(a) Momentum: . KE: . (2)
(b) Rearrange: …(i) …(ii) Divide (ii) by (i): (relative velocity reverses). (3) Solve with (i): (3)
(c) : . . (2+2)
Question 3 (10)
(a) = (relative speed of separation)/(relative speed of approach). Elastic ; perfectly inelastic . (2)
(b) Common velocity . Initial KE . Final . (2 velocity, 2 energies, 1 fraction)
(c) . Fractional loss (25%). (2+1)
Question 4 (10)
(a) (or ). (2)
(b) Semicircular arc, radius , linear density . Symmetry ⇒ CM on the axis (call ). Element at angle : , , . With : . (2 setup, 2 integral, 2 result)
(c) Semicircular lamina: . (2)
Question 5 (10)
(a) . Differentiate twice: . Internal forces cancel (III law) ⇒ . Hence . (1+1+1+1)
(b) Equal masses . Momentum: . KE (÷): . Square the vector eqn: . Comparing: (provided both nonzero). (2 momentum, 2 energy, 2 dot-product conclusion)
Question 6 (8)
(a) In dt, mass (i.e. ) ejected at exhaust speed relative to rocket. Momentum conservation (no external force): (2 momentum eqn, 2 integrate, 1 result)
(b)
import math
def delta_v(m0, mf, vex):
return vex * math.log(m0/mf). (2 code, 1 value)
[
{"claim":"Elastic collision v1 = -2 m/s for m1=2,m2=4,u1=6,u2=0","code":"m1,m2,u1,u2=2,4,6,0\nv1=((m1-m2)*u1+2*m2*u2)/(m1+m2)\nresult = v1==-2"},
{"claim":"Elastic collision v2 = 4 m/s","code":"m1,m2,u1,u2=2,4,6,0\nv2=((m2-m1)*u2+2*m1*u1)/(m1+m2)\nresult = v2==4"},
{"claim":"Inelastic common velocity 6 m/s and fractional KE loss 0.25","code":"m1,m2,u1=3,1,8\nv=m1*u1/(m1+m2)\nfrac=m2/(m1+m2)\nresult = (v==6) and (frac==Rational(1,4))"},
{"claim":"Semicircular arc CM = 2R/pi","code":"R,th=symbols('R theta',positive=True)\ny=integrate(R*sin(th)*R,(th,0,pi))/(pi*R)\nresult = simplify(y-2*R/pi)==0"},
{"claim":"Rocket delta_v ~2290.7 m/s","code":"dv=2500*log(Rational(1000,400))\nresult = abs(float(dv)-2290.73)<0.5"}
]