Modern Physics
Time limit: 90 minutes Total marks: 60 Instructions: Answer all THREE questions. Full derivations required. Constants: , , , , , electron rest energy .
Question 1 — Compton scattering meets relativistic kinematics (20 marks)
An X-ray photon of wavelength scatters off a free electron initially at rest.
(a) Starting from conservation of relativistic energy and momentum, derive the Compton wavelength-shift formula Clearly state where you use and . (8)
(b) For scattering angle , compute the scattered wavelength , and the kinetic energy (in keV) handed to the recoiling electron. (6)
(c) Show that a free electron cannot fully absorb the photon (i.e. Compton scattering, not absorption, must occur). Argue from simultaneous conservation of energy and momentum. (4)
(d) Explain in one or two sentences why visible light shows a negligible Compton shift while X-rays show a measurable one, referencing the relevant length scale. (2)
Question 2 — Particle in a box: build, prove, and code (22 marks)
Consider a particle of mass confined to a 1-D infinite square well of width , for and otherwise.
(a) Solve the time-independent Schrödinger equation to derive the normalized eigenfunctions and energies . Justify the boundary conditions from continuity of and the normalization of . (8)
(b) For an electron with , compute and in eV, and the wavelength of the photon emitted in the transition. (5)
(c) Prove the orthogonality relation for this well. (4)
(d) Write a short (pseudo)code / algorithm using numpy that verifies numerically (i) normalization of and (ii) that . State what numerical quantities you would print and their expected values. (3)
(e) Using the uncertainty principle , estimate a lower-bound ground-state energy and compare its order of magnitude to the exact . (2)
Question 3 — Nuclear energetics and relativity crossover (18 marks)
(a) For the deuterium–tritium fusion reaction given atomic masses (u): , , , neutron , and , compute the Q-value in MeV. (5)
(b) The released energy appears mostly as kinetic energy of the neutron and the -particle. Using non-relativistic momentum conservation (products from rest), find the fraction of carried by the neutron. Comment on whether a non-relativistic treatment is justified. (6)
(c) A nucleus produced above is accelerated to . Using with rest energy , compute its relativistic momentum (in MeV/) and total energy. (5)
(d) Briefly explain, via the binding-energy-per-nucleon curve, why fusion of light nuclei and fission of heavy nuclei both release energy. (2)
End of paper
Answer keyMark scheme & solutions
Question 1
(a) Derivation (8)
- Conservation of energy: where , (photon energies), total electron energy. (1)
- Conservation of momentum (vector): , using . (1)
- Square momentum: . (1)
- Electron relation ; and . (1)
- Expand: . Using : , . (1)
- Left side expands to . Right side . Substituting cancels terms. (1)
- Leaves , i.e. . (1)
- Divide by ... using : → . (1)
(b) Numeric (6)
- Compton wavelength . (1)
- : . (1)
- . (1)
- . (1)
- . (1)
- . (1)
(c) Free electron cannot absorb (4)
- Assume absorption: and . (1)
- Then and → . (1)
- But ⟹ . Substituting gives , so ⟹ . (1)
- Contradiction (no photon). Hence a free electron cannot absorb a photon; a third body (scattered photon) is required — Compton scattering. (1)
(d) (2) The shift m is fixed; for visible light ( nm) the fractional shift is negligible, whereas for X-rays ( nm) it is comparable to and measurable. (2)
Question 2
(a) Solve TISE (8)
- Inside: ⟹ , . (2)
- General . BC (continuity, outside) ⟹ . (1)
- ⟹ ⟹ , . (1)
- . (2)
- Normalize: ⟹ . So . (2)
(b) Numeric (5)
- . With : . (1)
- Numerator ; denominator . . (2)
- . (1)
- Photon ; . (1)
(c) Orthogonality (4)
- . (1)
- Product-to-sum: . (1)
- For both integrals of full cosines over integer periods vanish ⟹ 0. (1)
- For : first term integrates to , second vanishes ⟹ value . Hence . (1)
(d) Code (3)
import numpy as np
L=1.0; N=100000
x=np.linspace(0,L,N)
def psi(n): return np.sqrt(2/L)*np.sin(n*np.pi*x/L)
norm=np.trapz(psi(1)**2,x) # expect ~1.0
E=lambda n: n**2 # E_n ∝ n^2 (units of h^2/8mL^2)
print(norm, E(2)/E(1)) # prints ~1.0 and 4.0Print norm≈1.000 and E2/E1=4.0. (3)
(e) Uncertainty estimate (2)
- , , . Exact ; ratio — same order of magnitude. (2)
Question 3
(a) Q-value (5)
- . (2)
- Reactants ; products . . (2)
- . (1)
(b) Neutron energy fraction (6)
- Momentum conservation (rest): . (1)
- ; . (1)
- . (2)
- Fraction ⟹ . (1)
- Justification: MeV vs neutron rest energy 939.6 MeV; , so non-relativistic treatment is acceptable. (1)
(c) Relativistic α (5)
- . (1)
- . (1)
- . (1)
- ; so . (1)
- Check ✓. (1)
(d) (2) BE-per-nucleon peaks near Fe. Fusing light nuclei moves toward the peak (higher BE/nucleon ⟹ energy released); fissioning heavy nuclei also moves toward the peak from the other side. Both increase total binding energy, releasing the difference. (2)
[
{"claim":"Compton shift at 90deg equals Compton wavelength ~2.426e-12 m","code":"h=6.626e-34; me=9.11e-31; c=3.0e8; dl=h/(me*c); result = abs(dl-2.426e-12) < 5e-15"},
{"claim":"Ground state energy of electron in 0.5nm box ~1.505 eV","code":"h=6.626e-34; me=9.11e-31; L=0.5e-9; E1=h**2/(8*me*L**2)/1.602e-19; result = abs(E1-1.505) < 0.05"},
{"claim":"E2/E1 = 4 for particle in box","code":"result = (2**2)/(1**2) == 4"},
{"claim":"DT fusion Q-value ~17.59 MeV","code":"dm=(2.014102+3.016049)-(4.002602+1.008665); Q=dm*931.5; result = abs(Q-17.59) < 0.1"},
{"claim":"Neutron carries ~0.799 of Q","code":"ma=4.0026; mn=1.008665; frac=ma/(ma+mn); result = abs(frac-0.799) < 0.005"},
{"claim":"Relativistic alpha momentum at 0.6c ~2795 MeV/c","code":"import sympy as sp; g=1/sp.sqrt(1-0.36); E=g*3727; p=sp.sqrt(E**2-3727**2); result = abs(float(p)-2795) < 5"}
]