Oscillations & Waves
Level 3 Paper: Production (From-Scratch Derivations & Reasoning)
Time limit: 45 minutes Total marks: 60 Instructions: Show all derivations from first principles. State assumptions explicitly. Use for mathematics. Calculators permitted; take and speed of sound in air unless told otherwise.
Question 1 — SHM & Energy from scratch (12 marks)
(a) Starting from the restoring force and Newton's second law, derive the SHM differential equation and show that is a solution. State the value of in terms of and . (4)
(b) Derive the velocity expression from your solution, showing your working. (3)
(c) From the KE and PE expressions, prove that total mechanical energy is constant and equals . (3)
(d) A mass on a spring of stiffness oscillates with amplitude . Compute the maximum speed and total energy. (2)
Question 2 — Pendulum derivations (10 marks)
(a) Derive for a simple pendulum, stating clearly where and why the small-angle approximation is used. (4)
(b) For a physical (compound) pendulum of moment of inertia about the pivot, mass , and pivot-to-centre-of-mass distance , derive . (4)
(c) A uniform rod of length pivoted at one end has . Find its period as a multiple of the simple-pendulum period of length . (2)
Question 3 — Damping & Q factor (10 marks)
(a) Write the differential equation for a damped oscillator (mass , damping constant , stiffness ). Define the three damping regimes (under-, critical, over-) in terms of the discriminant condition, explaining the physical behaviour of each in words. (5)
(b) The Q factor is . Explain physically what a high Q means for (i) energy loss per cycle and (ii) resonance sharpness. (3)
(c) An underdamped oscillator has , , . Compute . (2)
Question 4 — Wave equation on a string (10 marks)
(a) By considering a small element of a stretched string under tension with linear mass density , derive the wave equation . State your small-angle assumptions. (6)
(b) Hence write the wave speed and compute it for a string with , . (2)
(c) This string is fixed at both ends, length . Find the fundamental frequency. (2)
Question 5 — Beats & Doppler reasoning (10 marks)
(a) By superposing two waves of nearly equal frequencies and , derive the beat frequency . Show the amplitude-modulation envelope explicitly. (4)
(b) State the general Doppler formula for sound and explain out loud (in words) why the sign convention differs between a moving source and a moving observer. (3)
(c) A siren emits . It approaches a stationary observer at . Find the observed frequency. (3)
Question 6 — Shock waves & intensity (8 marks)
(a) Define Mach number and derive the half-angle of the Mach cone, , from the geometry of the wavefronts. (4)
(b) A rocket travels at Mach 2.5. Find the Mach cone half-angle. (2)
(c) Sound intensity rises from to . Find the increase in sound level in decibels. (2)
Answer keyMark scheme & solutions
Question 1
(a) [4 marks]
- Newton: , so . (1)
- Define . (1)
- Substitute trial : . (1)
- This satisfies , confirming solution; . (1)
(b) [3 marks]
- , . (1)
- . (1)
- . (1)
(c) [3 marks]
- (using ). (1)
- . (1)
- , independent of ⇒ constant. (1)
(d) [2 marks]
- ; . (1)
- . (1)
Question 2
(a) [4 marks]
- Restoring tangential force: . (1)
- Torque/arc: . (1)
- Small angle: (in radians) ⇒ ; needed to obtain linear SHM form. (1)
- , . (1)
(b) [4 marks]
- Torque about pivot: . (1)
- . (1)
- Small angle: ⇒ . (1)
- . (1)
(c) [2 marks]
- , : . (1)
- Ratio to simple pendulum : factor . (1)
Question 3
(a) [5 marks]
- . (2)
- Discriminant of characteristic eqn via , :
- Underdamped: — oscillates with decaying amplitude. (1)
- Critical: — returns to equilibrium fastest without oscillating. (1)
- Overdamped: — returns slowly, no oscillation. (1)
(b) [3 marks]
- High Q ⇒ small energy loss per cycle (Q = energy stored / energy lost per cycle). (1.5)
- High Q ⇒ narrow, sharp resonance peak (small bandwidth ). (1.5)
(c) [2 marks]
- . (2)
Question 4
(a) [6 marks]
- Element from to , mass ; tension acts along tangents at both ends. (1)
- Net vertical force . (1)
- Small angle: . (1)
- Net force . (1)
- Newton: . (1)
- ⇒ . (1)
(b) [2 marks]
- . (2)
(c) [2 marks]
- . (2)
Question 5
(a) [4 marks]
- . (1)
- Sum-to-product: . (1)
- Envelope amplitude modulates carrier. (1)
- Intensity maxima occur twice per envelope period ⇒ . (1)
(b) [3 marks]
- . (1)
- Observer motion changes the number of wavefronts encountered per second (relative speed of waves changes). (1)
- Source motion compresses/stretches the wavelength itself (source chases its own waves), so it enters as a denominator; these are physically distinct mechanisms. (1)
(c) [3 marks]
- Source approaching, observer stationary: . (1)
- . (1)
- . (1)
Question 6
(a) [4 marks]
- Mach number . (1)
- In time : source travels , wavefront radius . (1)
- Cone half-angle: . (1)
- . (1)
(b) [2 marks]
- ⇒ . (2)
(c) [2 marks]
- . (2)
[
{"claim":"Q1d max speed 0.8 and energy 0.08 J","code":"import sympy as sp\nomega=sp.sqrt(100/sp.Rational(1,4))\nvmax=omega*sp.Rational(4,100)\nE=sp.Rational(1,2)*100*(sp.Rational(4,100))**2\nresult=(vmax==sp.Rational(8,10)) and (E==sp.Rational(8,100))"},
{"claim":"Q3c Q factor equals 25","code":"Q=50*sp.Rational(2,10)/sp.Rational(4,10)\nresult=(Q==25)"},
{"claim":"Q4 wave speed 126.5 and fundamental 52.7 Hz","code":"v=sp.sqrt(80/sp.Rational(5,1000))\nf1=v/sp.Rational(24,10)\nresult=(abs(float(v)-126.49)<0.1) and (abs(float(f1)-52.7)<0.1)"},
{"claim":"Q5c Doppler observed freq approx 657.5 Hz","code":"fobs=600*343/(343-30)\nresult=abs(float(fobs)-657.5)<0.5"},
{"claim":"Q6c decibel increase is 30 dB","code":"dL=10*sp.log(sp.Rational(10)**-3/sp.Rational(10)**-6,10)\nresult=(sp.simplify(dL)==30)"}
]