Quantum Atomic Structure
Time limit: 75 minutes Total marks: 60 Instructions: Attempt all three questions. Show all working, justify each physical assumption, and state constants used. Calculators and a coding environment are permitted where indicated.
Useful constants: , , , , , .
Question 1 — Photon–matter duality bridge (20 marks)
A clean sodium surface (work function ) is illuminated with monochromatic UV light of wavelength .
(a) Using Einstein's photon model, derive the maximum kinetic energy of ejected photoelectrons from first principles (), and compute in eV. (5)
(b) These photoelectrons are then decelerated to rest and re-accelerated so that their de Broglie wavelength equals the wavelength of the incident light (250 nm). Determine the kinetic energy (in eV) the electrons must have. Comment on why it differs so enormously from . (6)
(c) Prove algebraically that for a non-relativistic particle the ratio of a photon's energy to that of a massive particle of equal wavelength is Evaluate this ratio for an electron at and interpret the number. (6)
(d) State one experimental observation from the photoelectric effect that Planck's/Einstein's quantum model explains but classical wave theory cannot. (3)
Question 2 — Uncertainty, orbitals and quantum numbers (20 marks)
(a) An electron is confined within an atom to a region of size (roughly one atomic diameter). Using , compute the minimum uncertainty in its velocity, and hence estimate the minimum kinetic energy scale (in eV) of a bound electron. Comment on the consistency of this magnitude with electron binding energies. (7)
(b) For the subshell defined by : (i) name the subshell and give the allowed values; (ii) state the maximum number of electrons and justify it using the Pauli exclusion principle; (iii) sketch/describe the orbital shape and state the number of angular nodes. (6)
(c) A student claims a valid electron has quantum numbers . Determine whether this set is allowed. For each quantum number, state the rule constraining it and identify precisely which rule is violated (if any). (4)
(d) Explain, in terms of the Heisenberg principle, why the concept of a fixed electron "orbit" (Bohr) is superseded by orbital probability clouds. (3)
Question 3 — Aufbau, exceptions and a filling algorithm (20 marks)
(a) State the Madelung () rule and use it to write the full ground-state electron configuration of chromium () and copper (). Explain, using the stability of half-filled and fully-filled subshells, why both deviate from the naive Aufbau prediction. (8)
(b) Apply Hund's rule of maximum multiplicity to determine the number of unpaired electrons in the ground-state atoms of and . Show the / orbital-box diagrams. (6)
(c) Coding/derivation. Write clear pseudocode (or Python) for a function fill_order(max_nl) that returns the sequence of subshells in Madelung order: sort by increasing , breaking ties by increasing . Then hand-trace your algorithm to list the first 8 subshells and confirm they reproduce the standard filling order . (6)
Answer keyMark scheme & solutions
Question 1
(a) Photon energy . . (2) — correct (1), value (1). Einstein equation: . (3) — statement of photon model conservation (1), subtraction (1), answer (1).
(b) de Broglie: . . (2) . (2) Comment: the electron KE ( eV) is ~ times smaller than the photon energy at the same wavelength, because a photon (massless) carries energy , whereas a massive electron of the same carries but is heavily suppressed by its mass. (2)
(c) Photon: . Particle: . (2) Ratio: . ∎ (2) Evaluate (electron): . (1) Interpretation: at equal wavelength the photon carries ~ times more energy — consistent with part (b). (1)
(d) Any one (3): existence of a threshold frequency below which no emission occurs regardless of intensity; instantaneous emission; depends on frequency not intensity (intensity only affects photocurrent). Classical waves predict energy accumulation → no threshold and a time-delay.
Question 2
(a) . (2) . (2) Energy scale . (2) Comment: this is of order a few eV, consistent with actual atomic binding/ionisation energies (~eV–tens of eV), so quantum confinement naturally produces electron energies on the correct scale. (1)
(b) (i) ⇒ 4d subshell; (five values). (2) (ii) Each orbital holds 2 electrons (opposite spin); 5 orbitals ⇒ max 10 electrons. Pauli: no two electrons in an atom share all four quantum numbers, so within one orbital the two electrons must differ in (). (2) (iii) d-orbital: cloverleaf (four lobes) shape (except ); angular nodes . (2)
(c) Rules: integer (OK, ); ⇒ for , . Here violates . must lie in ; (OK). Set is NOT allowed — the azimuthal quantum number is impossible when . (4) — identifying violation (2), correct statement of all rules (2).
(d) Heisenberg: means position and momentum cannot both be exactly known; a Bohr orbit specifies both a definite radius and momentum simultaneously, which is forbidden. Hence we replace fixed orbits with probability distributions (orbitals) giving the likelihood of finding the electron in a region. (3)
Question 3
(a) Madelung rule: subshells fill in order of increasing ; for equal , lower first. (2) Naive: Cr → ; Cu → . Actual: Cr , Cu . (3) Explanation: a half-filled () and fully-filled () subshell gives extra stability (symmetric charge distribution + maximal exchange energy). Promoting one electron to achieves this favourable configuration; small – energy gap makes the trade-off net-stabilising. (3)
(b) Fe (): . boxes: ↑↓ ↑ ↑ ↑ ↑ ⇒ 4 unpaired electrons; full. (3) Cr (): . : ↑ ↑ ↑ ↑ ↑ (all singly, Hund), : ↑ ⇒ 6 unpaired electrons. (3)
(c) Pseudocode / Python:
def fill_order(max_nl):
subs = []
for n in range(1, max_nl+1):
for l in range(0, n): # l = 0..n-1
subs.append((n, l))
subs.sort(key=lambda s: (s[0]+s[1], s[0])) # n+l, then n
return subsHand-trace (first 8, with ): → matches required order. (6) — correct sort key (3), correct trace (3).
[
{"claim":"Kmax of Na photoelectrons at 250nm is 2.68 eV","code":"h=6.626e-34; c=3.00e8; lam=250e-9; eV=1.602e-19; phi=2.28; E=h*c/lam/eV; K=E-phi; result = abs(K-2.68)<0.02"},
{"claim":"Electron KE for lambda 250nm is ~2.41e-5 eV","code":"h=6.626e-34; lam=250e-9; me=9.109e-31; eV=1.602e-19; p=h/lam; K=p**2/(2*me)/eV; result = abs(K-2.41e-5)<1e-6"},
{"claim":"Photon/particle energy ratio for electron at 250nm ~2.06e5","code":"h=6.626e-34; c=3.00e8; me=9.109e-31; lam=250e-9; r=2*me*c*lam/h; result = abs(r-2.06e5)/2.06e5 < 0.01"},
{"claim":"Madelung fill_order reproduces standard first-8 order","code":"subs=[]; \nfor n in range(1,6):\n for l in range(0,n):\n subs.append((n,l))\nsubs.sort(key=lambda s:(s[0]+s[1],s[0])); expected=[(1,0),(2,0),(2,1),(3,0),(3,1),(4,0),(3,2),(4,1)]; result = subs[:8]==expected"}
]