Quantum Atomic Structure
Level: 3 (Production — from-scratch derivations, explain-out-loud, reasoning from memory) Time limit: 45 minutes Total marks: 60
Constants (use as needed): , , , , .
Q1. (10 marks) Starting from Einstein's photon model of the photoelectric effect, derive from scratch the relationship between the stopping potential and the frequency of incident light. State every physical assumption. Then, explain out loud (in words) why classical wave theory fails to predict (a) the threshold frequency and (b) the instantaneous emission of photoelectrons.
Q2. (12 marks) (a) A metal has work function . Light of wavelength falls on it. Calculate the maximum kinetic energy of ejected electrons (in eV) and their de Broglie wavelength. (7) (b) Explain the origin of de Broglie's relation by combining Planck's with Einstein's for a photon, then generalising to matter. (5)
Q3. (10 marks) Derive an order-of-magnitude estimate for the minimum uncertainty in the velocity of an electron confined to an atom of diameter , using . Comment on what this result tells us about the validity of picturing electrons in fixed orbits (Bohr) versus orbitals.
Q4. (10 marks) From memory, state and justify the Madelung (n + l) rule. Using it, write the full order of subshell filling up to . Then derive (build up step by step) the ground-state electronic configuration of chromium () and copper (), explaining why each is an exception to the naïve Aufbau prediction.
Q5. (10 marks) Explain-out-loud prompt: State the Pauli exclusion principle and Hund's rule of maximum multiplicity. Using the four quantum numbers , prove that a subshell can hold at most 6 electrons, and draw the orbital-box diagram for the ground state of nitrogen (), justifying each electron placement with the two rules.
Q6. (8 marks) Account quantitatively/qualitatively for the extra stability of half-filled and fully-filled subshells. Predict and explain the ground-state configuration of the ion and of (), naming which subshell arrangement each achieves.
Answer keyMark scheme & solutions
Q1 (10 marks)
Derivation (6):
- Photon energy (Planck/Einstein quantisation assumption). (1)
- Assumptions: one photon ejects one electron; energy needed to escape (work function); no energy losses; surplus becomes kinetic energy. (1)
- Energy conservation: . (1)
- Stopping potential halts the fastest electron: . (1)
- Therefore , i.e. (1)
- A straight line vs with slope and intercept determined by ; threshold at . (1)
Explain-out-loud (4):
- (a) Classical waves deliver energy continuously; any frequency should eventually eject electrons if intensity is high enough — but experiment shows no emission below regardless of intensity. Photon model: energy per quantum must exceed . (2)
- (b) Classical theory predicts a time lag while the electron "soaks up" enough wave energy; experiment shows emission is essentially instantaneous. Photon model: single photon-electron collision transfers energy at once. (2)
Q2 (12 marks)
(a) (7): Photon energy: . (2) . (2) Momentum: . (2) . (1)
(b) (5):
- For a photon . (1)
- Also effective momentum . (1)
- Combine: . (1)
- de Broglie's insight: postulate this relation holds for all matter, not just light — wave-particle duality is universal. (1)
- Hence a particle of momentum has wavelength . (1)
Q3 (10 marks)
- Uncertainty principle: . (1)
- Minimum: . (3)
- . (3)
- Comment: is a large fraction of typical atomic electron speeds, so position and velocity cannot be simultaneously well defined. A fixed Bohr orbit (definite radius and velocity) violates this. Hence the probabilistic orbital picture replaces sharp trajectories. (3)
Q4 (10 marks)
- Madelung rule: subshells fill in order of increasing ; for equal , the one with lower fills first. (2)
- Justification: approximates the effective energy ordering including penetration/shielding — higher- orbitals are less penetrating and destabilised. (1)
- Filling order to : . (2)
- Cr (): naïve ; actual . Promotion of one electron gives a half-filled plus half-filled — extra exchange-energy stability. (2.5)
- Cu (): naïve ; actual . Gives a fully-filled , more stable. (2.5)
Q5 (10 marks)
- Pauli: no two electrons in an atom can have all four quantum numbers identical (equivalently, an orbital holds ≤2 electrons of opposite spin). (1.5)
- Hund: for degenerate orbitals, electrons occupy them singly with parallel spins first, maximising total spin multiplicity, before pairing. (1.5)
- holds 6 proof: for a subshell (3 orbitals). Each pairs with or , giving distinct sets; Pauli forbids a 7th. (3)
- Nitrogen : . Box diagram: The three electrons occupy separate orbitals with parallel spins (Hund) — no pairing yet; each obeys Pauli. (4)
Q6 (8 marks)
- Cause of stability: exactly half-filled (, , ) and fully-filled (, , ) subshells have (i) symmetric charge distribution and (ii) maximum exchange energy (many parallel-spin exchange pairs), lowering energy. (3)
- : Cu is ; removing the electron gives — a fully-filled subshell, stable. (2.5)
- Mn (): — a half-filled subshell (accounts for Mn's stability and common state). (2.5)
[
{"claim":"Photon energy of 400 nm light in eV ≈ 3.10",
"code":"h=6.626e-34; c=3.00e8; lam=400e-9; E=h*c/lam/1.602e-19; result = abs(E-3.10)<0.03"},
{"claim":"Max KE for phi=2.28 eV at 400 nm ≈ 0.82 eV",
"code":"h=6.626e-34; c=3.00e8; lam=400e-9; E=h*c/lam/1.602e-19; KE=E-2.28; result = abs(KE-0.82)<0.03"},
{"claim":"de Broglie wavelength of electron with KE=0.82 eV ≈ 1.35e-9 m",
"code":"import sympy as sp; me=9.11e-31; KE=0.82*1.602e-19; p=sp.sqrt(2*me*KE); lam=6.626e-34/p; result = abs(float(lam)-1.35e-9)<0.1e-9"},
{"claim":"Uncertainty velocity for dx=1e-10 m ≈ 5.8e5 m/s",
"code":"hbar=1.055e-34; dx=1.0e-10; me=9.11e-31; dp=hbar/(2*dx); dv=dp/me; result = abs(dv-5.8e5)<0.2e5"}
]