Modern Physics
From-Scratch Derivations & Explain-Out-Loud
Time limit: 45 minutes Total marks: 60 Instructions: Derive from first principles where asked. Show all algebra. State physical assumptions explicitly. Constants: , , , , , electron Compton wavelength .
Q1. Compton scattering — full derivation (12 marks)
A photon of wavelength scatters off a free electron (initially at rest) through angle .
(a) Write the relativistic energy–momentum conservation equations for the collision. (3) (b) From these, derive the Compton shift from scratch. (6) (c) Compute for and explain in one sentence why Compton scattering is negligible for visible light but important for X-rays. (3)
Q2. Particle in a box — solve the TISE (12 marks)
Consider an electron confined to an infinite square well of width (potential for , infinite outside).
(a) Write the time-independent Schrödinger equation inside the well and solve it, applying boundary conditions. (5) (b) Normalise the wavefunction and state explicitly. (3) (c) Derive the energy levels and compute the ground-state energy (in eV) for . (4)
Q3. Time dilation — derive with a light clock (10 marks)
(a) Using a light-clock thought experiment (light bouncing between two mirrors separated by distance perpendicular to motion), derive the time-dilation formula from the two postulates of special relativity. State the postulates you use. (6) (b) A muon has a proper lifetime of and travels at . Compute its lifetime in the lab frame and the distance it travels. (4)
Q4. Photoelectric effect — explain and compute (8 marks)
(a) Explain out loud (in prose) how Einstein's photon model accounts for the three experimental facts that the classical wave theory cannot: the existence of a threshold frequency, the instantaneous emission, and the independence of from intensity. (4) (b) For a metal with work function , find the threshold wavelength and the maximum kinetic energy of electrons ejected by light of wavelength . (4)
Q5. Radioactive decay law — derive and apply (9 marks)
(a) Starting from the assumption that the decay rate is proportional to the number of nuclei present, derive and the relation between half-life and decay constant. (4) (b) A sample has an activity of and a half-life of days. Find the decay constant, the number of nuclei present, and the activity after 24 days. (5)
Q6. Code-from-memory + relativistic energy (9 marks)
(a) Write pseudocode (or Python) that computes the relativistic total energy and kinetic energy given rest mass and momentum . (3) (b) An electron has momentum . Using , compute its total energy and kinetic energy. (3) (c) Show algebraically that reduces to in the non-relativistic limit . (3)
Answer keyMark scheme & solutions
Q1 — Compton scattering (12)
(a) Conservation (3):
- Energy: where . (1)
- Momentum x: . (1)
- Momentum y: . (1)
(b) Derivation (6): Eliminate : from momentum eqs, (2) From energy: ; square and use : (2) Substitute , cancel, expand. The terms cancel against the momentum expansion leaving: Divide by : (2)
(c) (3): At , , . (2) Since is fixed at ~pm scale, the fractional shift is negligible for visible light ( nm) but comparable to X-ray wavelengths ( 0.1 nm), so measurable there. (1)
Q2 — Particle in a box (12)
(a) (5): Inside, TISE: (1). Let : (1). BC (1). BC , (2).
(b) (3): Normalise: (2). (1)
(c) (4): with gives (2) Ground state , : (2)
Q3 — Time dilation (10)
(a) (6): Postulates (1): (i) laws of physics identical in all inertial frames; (ii) same in all inertial frames. In clock rest frame: light travels , so (1). In lab frame, mirror moves; light travels along hypotenuses. In time the horizontal distance is , vertical . Total path , and by postulate 2 this (2). So . With : (2)
(b) (4): (2). (1). Distance (1).
Q4 — Photoelectric effect (8)
(a) (4): One photon = one quantum delivered to one electron.
- Threshold: need ; below no single photon has enough energy regardless of intensity. (1.5)
- Instantaneous: energy delivered in a single photon absorption event, not accumulated over time as in wave theory. (1.5)
- KE independent of intensity: intensity = number of photons; each photon's energy sets ; more photons → more electrons, not faster ones. (1)
(b) (4): Threshold (2). Photon energy at 400 nm: . (2).
Q5 — Decay law (9)
(a) (4): (1). Separate: , integrate (2) . Half-life: (1).
(b) (5): (2). Activity nuclei (2). After 24 days = 3 half-lives: (1).
Q6 — Code + relativistic energy (9)
(a) (3):
def rel_energy(m, p, c):
E = (( p*c )**2 + ( m*c**2 )**2)**0.5 # total energy
KE = E - m*c**2 # kinetic energy
return E, KEMarks: correct total-energy formula (1), KE = E − rest energy (1), valid structure (1).
(b) (3): (2). (1).
(c) (3): (1). For , binomial: (1) (1).
[
{"claim":"Compton shift at 90 deg equals h/m_e c = 2.426 pm","code":"lam_c=2.426e-12; shift=lam_c*(1-0); result=abs(shift-2.426e-12)<1e-15"},
{"claim":"Particle in box ground energy ~9.4 eV for L=0.20nm","code":"h=6.626e-34; m=9.11e-31; L=0.20e-9; E=h**2/(8*m*L**2); eV=E/1.602e-19; result=abs(eV-9.4)<0.3"},
{"claim":"Muon lab lifetime 15.6 us and distance ~4.6 km at 0.99c","code":"g=1/(1-0.99**2)**0.5; dt=g*2.2e-6; d=0.99*3e8*dt; result=abs(dt-15.6e-6)<0.3e-6 and abs(d-4630)<200"},
{"claim":"Photoelectron KE at 400nm with phi=2.28eV is 0.82 eV","code":"E=1240/400; KE=E-2.28; result=abs(KE-0.82)<0.03"},
{"claim":"Activity after 3 half-lives is 5.0e9 Bq","code":"A=4.0e10/2**3; result=abs(A-5.0e9)<1e8"},
{"claim":"Relativistic total energy for p=2.0 MeV/c electron is 2.064 MeV, KE 1.553","code":"E=(2.0**2+0.511**2)**0.5; KE=E-0.511; result=abs(E-2.064)<0.01 and abs(KE-1.553)<0.01"}
]