Level 5 — MasteryMomentum & Collisions

Momentum & Collisions

75 minutes60 marksprintable — key stays hidden on paper

Level 5 Mastery Examination

Time limit: 75 minutes Total marks: 60 Instructions: Answer all three questions. Show all derivations. Where coding is requested, write clean pseudocode/Python that would run correctly. Use g=9.8 m/s2g = 9.8\ \text{m/s}^2 where needed.


Question 1 — Elastic collisions: derivation, proof & simulation (22 marks)

A particle of mass m1m_1 moving with velocity u1u_1 collides head-on and elastically with a particle of mass m2m_2 initially at rest.

(a) Starting from conservation of momentum and kinetic energy, derive the final velocities v1v_1 and v2v_2: v1=m1m2m1+m2u1,v2=2m1m1+m2u1.v_1 = \frac{m_1 - m_2}{m_1 + m_2}\,u_1, \qquad v_2 = \frac{2m_1}{m_1 + m_2}\,u_1. (6 marks)

(b) Prove that for a 1D elastic collision the relative velocity of approach equals the relative velocity of separation (i.e. show e=1e = 1), starting from your result in (a) for the general case (both masses moving). (5 marks)

(c) A neutron (m1=1um_1 = 1\,u) strikes a stationary deuteron (m2=2um_2 = 2\,u) elastically. Compute the fraction of the neutron's kinetic energy transferred to the deuteron. (4 marks)

(d) Write a Python function elastic_1d(m1, m2, u1, u2) that returns (v1,v2)(v_1, v_2) for a general 1D elastic collision, and state one numerical assertion (test case) that verifies momentum conservation for your function. (7 marks)


Question 2 — Centre of mass by integration & COM motion (20 marks)

(a) A thin uniform lamina is a semicircular disc of radius RR and uniform surface density. By integration, derive the distance of its centre of mass from the straight (diameter) edge, showing it equals 4R3π\dfrac{4R}{3\pi}. (8 marks)

(b) A uniform solid hemisphere of radius RR has its COM at height 3R8\dfrac{3R}{8} from the flat face. A composite body is formed by placing this hemisphere (flat face down) on top of a uniform solid cylinder of the same radius RR, height RR, and the same density. Find the height of the COM of the composite above the base of the cylinder. (7 marks)

(c) Two skaters, masses 50 kg50\ \text{kg} and 70 kg70\ \text{kg}, stand 6 m6\ \text{m} apart on frictionless ice and pull on a rope. Determine how far each moves before they meet, using the fact that the COM stays fixed. Prove why the COM stays fixed. (5 marks)


Question 3 — Variable mass & impulse (18 marks)

(a) Starting from Newton's second law applied to a system of variable mass, derive the rocket equation mdvdt=udmdt+Fextm\frac{dv}{dt} = -u\frac{dm}{dt} + F_{\text{ext}} clearly defining each symbol, then integrate (with Fext=0F_{\text{ext}} = 0) to obtain vfvi=uln ⁣mimfv_f - v_i = u\ln\!\dfrac{m_i}{m_f}. (8 marks)

(b) A rocket has initial mass 2000 kg2000\ \text{kg} (including 1500 kg1500\ \text{kg} fuel) and exhaust speed u=2500 m/su = 2500\ \text{m/s}. Ignoring gravity, compute its final speed when all fuel is burnt (start from rest). (4 marks)

(c) A ball of mass 0.20 kg0.20\ \text{kg} hits a wall horizontally at 15 m/s15\ \text{m/s} and rebounds at 10 m/s10\ \text{m/s}. The contact lasts 0.02 s0.02\ \text{s}. Using the impulse–momentum theorem, find the average force on the ball, and write a one-line Python expression computing this force magnitude. (6 marks)

Answer keyMark scheme & solutions

Question 1

(a) [6 marks] Momentum: m1u1=m1v1+m2v2m_1u_1 = m_1v_1 + m_2v_2 (1) Energy: 12m1u12=12m1v12+12m2v22\tfrac12 m_1u_1^2 = \tfrac12 m_1v_1^2 + \tfrac12 m_2v_2^2 (1 mark each equation = 2)

Rearrange momentum: m1(u1v1)=m2v2m_1(u_1 - v_1) = m_2 v_2 (i) Rearrange energy: m1(u12v12)=m2v22m_1(u_1^2 - v_1^2) = m_2 v_2^2 (ii) (1 mark) Divide (ii)/(i): u1+v1=v2u_1 + v_1 = v_2 (1 mark)this is the key elimination step. Substitute back into (i): m1(u1v1)=m2(u1+v1)m_1(u_1-v_1) = m_2(u_1+v_1), solve: v1=m1m2m1+m2u1v_1 = \frac{m_1-m_2}{m_1+m_2}u_1 (1 mark) Then v2=u1+v1=2m1m1+m2u1v_2 = u_1 + v_1 = \dfrac{2m_1}{m_1+m_2}u_1. (1 mark)

(b) [5 marks] For general case with both moving, the same divide step gives (with algebra): u1+v1=u2+v2u_1 + v_1 = u_2 + v_2 → rearrange: v2v1=u1u2v_2 - v_1 = u_1 - u_2 = (u2u1)-(u_2-u_1). (3 marks for the derivation) Coefficient of restitution e=v2v1u1u2=1e = \dfrac{v_2 - v_1}{u_1 - u_2} = 1. (2 marks) Why: elastic ⇒ KE conserved ⇒ relative speed unchanged in magnitude, reversed in direction.

(c) [4 marks] Fraction to target for m1m_1 hitting stationary m2m_2: f=4m1m2(m1+m2)2f = \frac{4m_1 m_2}{(m_1+m_2)^2} (2 marks for formula, derivable from v2v_2) With m1=1,m2=2m_1=1, m_2=2: f=4(1)(2)(3)2=890.889f = \dfrac{4(1)(2)}{(3)^2} = \dfrac{8}{9} \approx 0.889. (2 marks)

(d) [7 marks]

def elastic_1d(m1, m2, u1, u2):
    v1 = ((m1 - m2)*u1 + 2*m2*u2) / (m1 + m2)
    v2 = ((m2 - m1)*u2 + 2*m1*u1) / (m1 + m2)
    return v1, v2

(5 marks: correct general formulae; 1 mark clean structure) Test (momentum conservation): (1 mark)

v1, v2 = elastic_1d(2, 3, 5, -1)
assert abs((2*5 + 3*(-1)) - (2*v1 + 3*v2)) < 1e-9

Question 2

(a) [8 marks] Take semicircle in upper half plane, diameter along x-axis. By symmetry xˉ=0\bar{x}=0; find yˉ\bar{y}. (1 mark) Surface density σ\sigma, total mass M=σ12πR2M = \sigma \cdot \tfrac12\pi R^2. (1 mark) Use strips parallel to diameter at height yy, length 2R2y22\sqrt{R^2-y^2}, thickness dydy: (2 marks) yˉ=1M0Ryσ2R2y2dy\bar{y} = \frac{1}{M}\int_0^R y\,\sigma\,2\sqrt{R^2-y^2}\,dy (1 mark) 0RyR2y2dy=[13(R2y2)3/2]0R=13R3\int_0^R y\sqrt{R^2-y^2}\,dy = \left[-\tfrac13(R^2-y^2)^{3/2}\right]_0^R = \tfrac13 R^3. (2 marks) yˉ=σ213R3σ12πR2=23R312πR2=4R3π.\bar{y} = \frac{\sigma\cdot 2\cdot \tfrac13 R^3}{\sigma\cdot \tfrac12\pi R^2} = \frac{\tfrac{2}{3}R^3}{\tfrac12\pi R^2} = \frac{4R}{3\pi}. (1 mark)

(b) [7 marks] Same density ρ\rho. Cylinder: volume Vc=πR2R=πR3V_c = \pi R^2 \cdot R = \pi R^3; mass πR3\propto \pi R^3. COM at height R/2R/2. (1 mark) Hemisphere: volume Vh=23πR3V_h = \tfrac23\pi R^3; COM at R+3R8R + \tfrac{3R}{8} above base (sits on top of cylinder height RR). (2 marks) Masses ratio (density cancels): mc:mh=1:23=3:2m_c : m_h = 1 : \tfrac23 = 3:2. (1 mark) ycm=3R2+2(R+3R8)5=3R2+211R85=3R2+11R45y_{cm} = \frac{3\cdot \tfrac{R}{2} + 2\cdot\left(R + \tfrac{3R}{8}\right)}{5} = \frac{\tfrac{3R}{2} + 2\cdot\tfrac{11R}{8}}{5} = \frac{\tfrac{3R}{2} + \tfrac{11R}{4}}{5} (2 marks) =6R4+11R45=17R/45=17R20=0.85R.= \dfrac{\tfrac{6R}{4}+\tfrac{11R}{4}}{5} = \dfrac{17R/4}{5} = \dfrac{17R}{20} = 0.85R. (1 mark)

(c) [5 marks] COM fixed because no external horizontal force (frictionless, internal rope forces cancel by Newton's third law ⇒ acm=0a_{cm}=0, and initially at rest). (2 marks) m1x1=m2x2m_1 x_1 = m_2 x_2 with x1+x2=6x_1 + x_2 = 6. (1 mark) 50x1=70x2x1=1.4x250 x_1 = 70 x_2 \Rightarrow x_1 = 1.4 x_2; 1.4x2+x2=6x2=2.5 m1.4x_2 + x_2 = 6 \Rightarrow x_2 = 2.5\ \text{m}, x1=3.5 mx_1 = 3.5\ \text{m}. (2 marks) (50 kg skater moves 3.5 m, 70 kg skater moves 2.5 m.)


Question 3

(a) [8 marks] Consider system mass mm at velocity vv; in time dtdt it ejects mass dm-dm (>0) at exhaust velocity uu relative to rocket (backwards). (1 mark) Total momentum conserved incl. external force impulse: (m)(v)+Fextdt=(m+dm)(v+dv)+(dm)(vu)(m)(v) + F_{ext}dt = (m+dm)(v+dv) + (-dm)(v - u) (2 marks) Expand, drop 2nd order dmdvdm\,dv: Fextdt=mdv+udmF_{ext}dt = m\,dv + u\,dm (2 marks) mdvdt=udmdt+Fext.m\frac{dv}{dt} = -u\frac{dm}{dt} + F_{ext}. (1 mark) With Fext=0F_{ext}=0: dv=udm/mdv = -u\,dm/m; integrate: vfvi=ulnmfmi=ulnmimf.v_f - v_i = -u\ln\frac{m_f}{m_i} = u\ln\frac{m_i}{m_f}. (2 marks)

(b) [4 marks] mi=2000m_i = 2000, mf=500m_f = 500 kg. (1 mark) vf=2500ln(2000/500)=2500ln4v_f = 2500\ln(2000/500) = 2500\ln 4. (1 mark) ln4=1.3863\ln 4 = 1.3863; vf=2500×1.3863=3465.7 m/sv_f = 2500 \times 1.3863 = 3465.7\ \text{m/s}. (2 marks)

(c) [6 marks] Take direction into wall as positive: ui=+15u_i = +15, vf=10v_f = -10 m/s. (1 mark) Δp=m(vfui)=0.20(1015)=5.0 kg⋅m/s\Delta p = m(v_f - u_i) = 0.20(-10 - 15) = -5.0\ \text{kg·m/s}. (2 marks) F=Δp/Δt=5.0/0.02=250 NF = \Delta p/\Delta t = -5.0/0.02 = -250\ \text{N}; magnitude 250250 N (directed away from wall). (2 marks) Python: F = abs(0.20*(-10 - 15))/0.02 # = 250.0 (1 mark)


[
  {"claim":"Elastic 1D general formulae conserve momentum for test case", "code":"m1,m2,u1,u2=2,3,5,-1\nv1=((m1-m2)*u1+2*m2*u2)/(m1+m2)\nv2=((m2-m1)*u2+2*m1*u1)/(m1+m2)\nresult = simplify(m1*u1+m2*u2-(m1*v1+m2*v2))==0"},
  {"claim":"KE fraction transferred neutron->deuteron is 8/9", "code":"m1,m2=1,2\nf=Rational(4*m1*m2,(m1+m2)**2)\nresult = f==Rational(8,9)"},
  {"claim":"Composite hemisphere+cylinder COM is 17R/20", "code":"R=symbols('R',positive=True)\nmc,mh=3,2\nycm=(mc*(R/2)+mh*(R+Rational(3,8)*R))/(mc+mh)\nresult = simplify(ycm-Rational(17,20)*R)==0"},
  {"claim":"Semicircle COM integral gives 4R/(3pi)", "code":"R,y=symbols('R y',positive=True)\nnum=integrate(y*2*sqrt(R**2-y**2),(y,0,R))\nden=pi*R**2/2\nresult = simplify(num/den-4*R/(3*pi))==0"},
  {"claim":"Rocket final speed = 2500 ln4", "code":"vf=2500*log(2000/500)\nresult = abs(float(vf)-3465.7)<1.0"}
]