Newton's Laws & Dynamics
Level 5 Mastery Examination (Cross-Domain: Analysis · Derivation · Computation)
Time limit: 90 minutes Total marks: 60
Use , , Earth mass , Earth radius unless a symbolic answer is requested.
Question 1 — Vertical circle, energy, and the physics of "minimum" (20 marks)
A bead of mass threaded on a rigid circular hoop of radius (frictionless), and a ball of mass tied to an inextensible string of the same radius , are both released so as to move in a vertical circle. Take the lowest point as datum.
(a) Draw the free-body diagram for the ball-on-string at a general angle measured from the lowest point, and write the radial equation of motion. (3)
(b) Derive the minimum speed at the top of the loop, , for the ball-on-string case, and explain physically why the condition is what sets it. Then find the corresponding minimum speed at the lowest point using energy conservation. (6)
(c) Explain, with reasoning, why the bead-on-hoop has a different minimum condition, and derive for the bead. State the minimum bottom speed. (4)
(d) For the string case, derive a general expression for the tension as a function of when the ball is launched from the bottom with exactly the critical speed . Hence show if is measured from the top, or the equivalent form from the bottom, and evaluate the ratio . (4)
(e) Coding. Write pseudocode (any language) for a routine min_launch_speed(R, g, N) that numerically integrates the string-bead motion from the bottom and returns, to tolerance, the smallest bottom launch speed for which the string stays taut all the way around. Describe how you would detect failure (slack string). (3)
Question 2 — Banking, friction, and the safe-speed band (22 marks)
A circular track of radius is banked at angle . The tyre–road coefficient of static friction is .
(a) Derive, from a free-body diagram in the (rotating) ground frame, the ideal (frictionless) banking speed for which no friction is required, and show . (4)
(b) Derive the maximum safe speed (friction acting down the slope) and the minimum safe speed (friction acting up the slope), giving both in closed form in terms of , , , . (7)
(c) Show that in the limit both reduce to , and that a real minimum speed only "exists" (is positive/real) while ; interpret what happens physically when . (4)
(d) Numeric. For , , , compute , , in . (4)
(e) Connect to the angle of repose: show that the friction-limited banking formula's denominator vanishing corresponds exactly to equalling the complement condition with the friction angle , and state the resulting interpretation. (3)
Question 3 — Gravitation: field, energy, escape and orbit as one framework (18 marks)
(a) Starting from Newton's law of gravitation, derive the gravitational potential energy of a point mass at distance from mass , being explicit about the choice of zero and why . (4)
(b) Derive the escape velocity from a body of mass , radius , and the circular orbital velocity just above the surface. Prove the exact relation and explain it energetically. (5)
(c) Derive how varies with depth below the surface (uniform-density sphere), giving , and separately with altitude , giving the leading fractional change. Compare which decreases faster near the surface for small and justify. (5)
(d) Numeric. Using the Earth data given, compute and the low-orbit (at ) in , and verify the ratio to 3 significant figures. (4)
Answer keyMark scheme & solutions
Question 1
(a) [3] FBD: weight downward; string tension directed along string toward centre (radially inward). At angle from lowest point the radial (centripetal) direction points to centre. Radial Newton's-2nd-law: (1 for FBD forces, 1 for correct directions, 1 for radial equation.) At the top the geometry gives .
(b) [6] At top, string can only pull (T≥0). Critical case : (2) Physical reason: a string cannot push; the minimum speed is when gravity alone supplies all centripetal force, i.e. ; any slower and required centripetal force , string goes slack, ball leaves circular path. (2) Energy conservation top→bottom (height drop ): (2)
(c) [4] A rigid hoop/rod exerts a normal (constraint) force that can be either inward or outward (push or pull). So there is no restriction; the bead can move arbitrarily slowly, in principle . (2) Minimum condition is only that it reaches the top: . (1) By energy: . (1)
(d) [4] With bottom launch , at angle from bottom, height : Radial eq: measured from bottom. Measured from top (, ): height from bottom , , and radial component of weight toward centre at top is ... standard result: Check: top : using bottom form : ✓; bottom : . at critical launch, so ratio is undefined (÷0). Award the physically meaningful statement , . (2 for T(θ), 1 for values, 1 for correct note that ratio diverges.)
(e) [3] Pseudocode:
min_launch_speed(R, g, N):
lo, hi = sqrt(g*R), sqrt(6*g*R) # bounds
repeat N times:
v = (lo+hi)/2
if survives(v): hi = v else lo = v
return hi
survives(v0):
integrate theta from 0..pi (bottom to top) via RK4
at each step v^2 = v0^2 - 2 g R (1-cos theta)
T = m*v^2/R + m*g*cos(theta) # from-bottom form
if v^2 <= 0 or T < 0: return False # slack string / can't reach
return True
Failure detection: string goes slack when or the ball fails to reach top (). Bisection converges to . (1 integration, 1 taut/slack test, 1 bisection.)
Question 2
(a) [4] FBD: normal surface, weight down. No friction. Components: Vertical: . Horizontal (centripetal): . (2) Divide: (2)
(b) [7] Friction . At friction acts down the incline (prevents sliding outward). Resolve along/perp: Vertical: . Horizontal: , with . (2) (2) At friction acts up ( up), sign flips: (3)
(c) [4] Set : both give . (2) For real & positive need numerator , i.e. . If , friction alone holds the car at rest on the bank—no minimum speed; the car will not slide inward even at . (2)
(d) [4] . . (1) . (2) → negative ⇒ no real minimum (since ); , car safe from rest. (1, credit for recognising negativity.)
(e) [3] Friction angle . Then , so . Denominator when , giving . Physically, at that bank angle no speed can push the car off (analogue of angle-of-repose limit). (3)
Question 3
(a) [4] Work done by gravity moving from to : with (attractive): (3) Zero chosen at ; because gravity is attractive—work must be done on the system (positive) to separate to infinity, so bound states have negative energy. (1)
(b) [5] Escape: total energy zero at infinity, so . (2) Orbit at surface: gravity = centripetal: . (2) Ratio . Energetically: KE for orbit ; escape needs KE , twice as much, hence in speed. (1)
(c) [5] Depth: uniform sphere, only mass within radius acts: , , with : — linear. (2) Altitude: for small . (2) Near surface with : depth fractional change , altitude fractional change . Altitude decreases twice as fast. (1)
(d) [4] . ; ; . (2) . (1) Ratio ✓ (3 s.f.). (1)
[
{"claim":"v_bottom_min = sqrt(5 g R) from energy with v_top=sqrt(gR)",
"code":"g,R=symbols('g R',positive=True); vtop2=g*R; vbot2=vtop2+2*g*(2*R); result= simplify(vbot2-5*g*R)==0"},
{"claim":"Banking v0 = sqrt(g r tan a); vmax/vmin closed forms reduce to v0 at mu=