Rotational Mechanics
Level 3 Paper (Production: Derivations, Reasoning, Explain-Out-Loud)
Time limit: 45 minutes Total marks: 60
Answer all questions. Full derivations required — state assumptions, define symbols, and justify each step. Marks are awarded for reasoning, not just final answers.
Q1. (10 marks) — Parallel axis theorem from scratch. Starting from the definition , prove the parallel axis theorem for a rigid body of mass , where is the perpendicular distance between the axis through the centre of mass and a parallel axis. Clearly state where you use the definition of the centre of mass. (10)
Q2. (12 marks) — Moment of inertia derivation + theorem application. (a) Derive from integration the moment of inertia of a uniform thin rod of mass and length about a perpendicular axis through its centre. (5) (b) Use the parallel axis theorem to obtain about a perpendicular axis through one end, and confirm your result by direct integration. (4) (c) State the perpendicular axis theorem, its geometric restriction, and use it to find the moment of inertia of a thin ring (mass , radius ) about a diameter, given about the central axis. (3)
Q3. (10 marks) — Rolling on an incline, derive and compare. A rigid body of mass , radius , moment of inertia rolls without slipping down an incline of angle . (a) Derive the linear acceleration of the centre of mass in terms of . (6) (b) Using your formula, rank a solid sphere (), a solid cylinder (), and a ring () by acceleration, and state which reaches the bottom first. (2) (c) Explain physically why controls the acceleration. (2)
Q4. (10 marks) — Angular momentum conservation, explain-out-loud + compute. (a) Starting from , state the exact condition under which angular momentum is conserved, and explain in words why an internal explosion or a person pulling in their arms does not change . (4) (b) A disc of moment of inertia spins at . A second stationary disc is dropped coaxially onto it and they rotate together. Find the final angular velocity and the fractional kinetic energy lost. (6)
Q5. (10 marks) — Code-from-memory + gyroscope reasoning.
(a) Write pseudocode (or Python) that, given arrays of point masses m[i] and their perpendicular distances r[i] from an axis, computes the moment of inertia and the rotational kinetic energy for a given omega. Comment each line to show the physics. (5)
(b) Explain the gyroscopic precession of a spinning top: derive the precession angular velocity from , and state one application in spacecraft attitude control. (5)
Q6. (8 marks) — Rigid body equilibrium. A uniform ladder of mass and length leans against a frictionless vertical wall, its base on a rough floor at angle to the horizontal. (a) Write the translational and rotational equilibrium conditions. (4) (b) Derive the minimum coefficient of friction at the floor needed to prevent slipping. (4)
End of paper.
Answer keyMark scheme & solutions
Q1 — Parallel axis theorem (10)
Set CM at origin. Let a mass element have position in the plane perpendicular to the axes. Take CM axis along ; the parallel axis passes through point .
- (1)
- Distance to new axis: (2)
- Expand: (2)
- First term (1)
- since origin at CM — key step (2)
- , so last term (1)
- Result: (1)
Q2 — Rod MI + theorems (12)
(a) Linear density . Element at : . (5) (setup 2, integral 2, result 1)
(b) Parallel axis, : . (2) Direct: ✓ (2)
(c) Perpendicular axis theorem: for a planar (lamina) body, ; restriction — body must lie in the -plane. (1) By symmetry two diameters give . So . (2)
Q3 — Rolling incline (10)
(a) Newton along incline: . (1) Torque about CM: . (1) Rolling: , so . (2) Substitute: (2)
(b) Larger → smaller . Sphere > cylinder > ring . Sphere first. (2)
(c) measures how much mass is far from axis; larger demands more energy/torque diverted into rotation, leaving less for translation → smaller . Note: independent of and . (2)
Q4 — Angular momentum (10)
(a) ; if net external torque then is constant. (2) Internal forces come in equal-opposite pairs along the line joining particles, so their torques cancel → they can't change total ; a person pulling arms in only changes internally, and stays fixed (so rises). (2)
(b) Conservation: . . (3) ; . Fraction lost . (3)
Q5 — Code + gyroscope (10)
(a) (5 marks: correct I loop 2, KE 1, comments/structure 2)
def rotational(m, r, omega):
I = 0.0
for mi, ri in zip(m, r): # sum over point masses
I += mi * ri**2 # I = Σ m_i r_i² (definition)
KE = 0.5 * I * omega**2 # rotational KE = ½ I ω²
return I, KE(b) Gravity torque (r = distance to CM) is horizontal, perpendicular to spin . Since is perpendicular to , changes direction (not magnitude) → tip traces a circle. In time , sweeps angle , so (4) Application: control-moment gyroscopes / reaction wheels change spacecraft orientation without expelling propellant. (1)
Q6 — Ladder equilibrium (8)
(a) Forces: floor normal , floor friction , wall normal (horizontal, wall frictionless), weight at centre. Translational: (vertical), (horizontal). (2) Rotational (torques about base): . (2)
(b) . Since : (4)
[
{"claim":"Rod end MI via parallel axis = ML²/3","code":"M,L=symbols('M L',positive=True); Icm=M*L**2/12; Iend=Icm+M*(L/2)**2; result=simplify(Iend-M*L**2/3)==0"},
{"claim":"Rolling acceleration a=g sinθ/(1+β) ranks sphere>cyl>ring","code":"g,th=symbols('g theta',positive=True); a=lambda b: g*sin(th)/(1+b); result=(a(Rational(2,5))>a(Rational(1,2))) and (a(Rational(1,2))>a(1))"},
{"claim":"Disc drop: omega_f=4, fraction KE lost=1/3","code":"I1,w1,I2=4,6,2; wf=I1*w1/(I1+I2); KEi=Rational(1,2)*I1*w1**2; KEf=Rational(1,2)*(I1+I2)*wf**2; result=(wf==4) and (Rational(KEi-KEf,KEi)==Rational(1,3))"},
{"claim":"Ladder min friction = (1/2)cot(phi)","code":"m,g,l,phi=symbols('m g l phi',positive=True); N=m*g; W=(m*g*(l/2)*cos(phi))/(l*sin(phi)); mu=W/N; result=simplify(mu-cot(phi)/2)==0"}
]