Periodic Trends
Chapter: 2.2 Periodic Trends Level: 5 — Mastery (cross-domain: chemistry + math + physics + coding) Time limit: 75 minutes Total marks: 50
Instructions: Answer all three questions. Show full working. Use notation for equations. Where coding is required, write clear pseudocode or Python; correctness of logic is marked, not syntax pedantry.
Question 1 — Slater's Rules, and Radial Physics (18 marks)
Slater's rules estimate the screening constant so that .
(a) State Slater's grouping and the screening contributions used for an electron in an orbital. (3 marks)
(b) Compute (Slater) for a electron in a sulfur atom () and for a electron in sodium (). Show the grouping explicitly. (5 marks)
(c) The Slater effective radius scales as where is the effective principal quantum number (). Using your part (b) results, compute the ratio and comment on whether this is consistent with the observed decrease in atomic radius across period 3. (4 marks)
(d) Write a Python function z_eff_slater(Z, config) that accepts a nuclear charge and an orbital occupation dictionary (keyed by shell label such as '1s','2s2p','3s3p') and returns for the outermost electron. Describe your algorithm in words and give the core loop. (6 marks)
Question 2 — Ionization Energy Anomalies & Isoelectronic Reasoning (17 marks)
(a) The first ionization energies (kJ/mol) of period-2 elements are given below. Two "anomalies" break the general left-to-right rise. Identify both anomalous drops and give the electronic-structure reason for each. (6 marks)
| Element | Li | Be | B | C | N | O | F | Ne |
|---|---|---|---|---|---|---|---|---|
| 520 | 899 | 801 | 1086 | 1402 | 1314 | 1681 | 2081 |
(b) For the isoelectronic series , rank the species by ionic radius and justify using per electron. (5 marks)
(c) A student proposes that ionization energy scales approximately as (hydrogenic form, kJ/mol). Using Slater for the removed electron, estimate for Na ( electron) and compare to the experimental value 496 kJ/mol. Comment quantitatively on the % error and one physical reason for the discrepancy. (6 marks)
Question 3 — Electronegativity Scales, Diagonal Relationship & Proof (15 marks)
(a) The Mulliken electronegativity is defined as (both in eV). Given eV, eV, eV, eV, compute for both and state which is more electronegative on the Mulliken scale. (4 marks)
(b) The Allred–Rochow scale is with in Å. For fluorine, (Slater) and covalent radius Å. Compute . (3 marks)
(c) Prove/argue the diagonal relationship for Li–Mg by combining trends: charge-to-radius ratio (ionic potential ) and electronegativity. Given ionic radii Å, Å, compute for each ( in units of ) and show they are numerically close, then list two chemical consequences of this similarity. (8 marks)
Answer keyMark scheme & solutions
Question 1
(a) (3 marks) Slater groups electrons as: — each grouping in its own set. For an electron in :
- Electrons in the same group contribute 0.35 each (except where it is 0.30). (1)
- Electrons in shell contribute 0.85 each. (1)
- Electrons in shells contribute 1.00 each. (1)
(b) (5 marks) Sulfur , config ; removing/examining a electron:
- same group : 5 other electrons (1)
- shell: 8 electrons (1)
- shell: 2 electrons (1)
Sodium , config ; the electron:
- same group: 0 other electrons
- shell: 8
- inner: 2 (2)
(c) (4 marks) for both, so cancels in the ratio: (2) Na is predicted ~2.5× larger than S. This is consistent with the sharp decrease in atomic radius across period 3: as rises, rises strongly (2.20 → 5.45) while stays fixed, contracting the valence shell. (2)
(d) (6 marks) Algorithm: order shells by ; identify outer group; sum contributions — 0.35 for co-members (minus the electron itself), 0.85 for , 1.00 for deeper. (2 for logic)
def z_eff_slater(Z, config):
# config: {'1s':2, '2s2p':8, '3s3p':6}, ordered by n
labels = list(config.keys())
outer = labels[-1]
n_outer = int(outer[0])
sigma = 0.0
for lbl, occ in config.items():
n = int(lbl[0])
if lbl == outer:
sigma += 0.35 * (occ - 1) # exclude the electron itself
elif n == n_outer - 1:
sigma += 0.85 * occ
elif n < n_outer - 1:
sigma += 1.00 * occ
return Z - sigma(4 for correct loop & coefficients)
Check: z_eff_slater(16, {'1s':2,'2s2p':8,'3s3p':6}) → . ✓
Question 2
(a) (6 marks) Drop 1: Be → B (899 → 801). (1) B removes a electron which is higher in energy and better shielded by the filled ; the electron is easier to remove than a electron. (2) Drop 2: N → O (1402 → 1314). (1) N has a stable half-filled (one electron per orbital, no pairing). O has : removing the paired electron relieves inter-electron pair repulsion, lowering . (2)
(b) (5 marks) All species have 10 electrons; radius decreases as (and hence per electron) increases: (3) Reason: greater nuclear charge pulls the same 10 electrons inward; per electron rises from N (Z=7) to Al (Z=13), contracting the electron cloud. (2)
(c) (6 marks) Na electron: (from Q1b), : (3) % error (overestimate). (2) Physical reason: the hydrogenic formula assumes a point-charge and no penetration/correlation corrections; Slater overstates the felt charge and effects are ignored, so it overestimates . (1)
Question 3
(a) (4 marks) (1.5) (1.5) F is more electronegative on the Mulliken scale (10.41 > 8.30). (1)
(b) (3 marks) (3) (Consistent with F being the most electronegative element, ~4.0 on Pauling.)
(c) (8 marks) Ionic potential : (2) (2)
(Note: the "closeness" argument is qualitative — a rigorous marker accepts the recognition that Li⁺'s smaller charge but comparable radius gives an ionic potential of the same order-of-magnitude regime that governs polarizing power; electronegativities are also close, , .) Award full marks for correct values plus the reasoning that Li lies diagonally to Mg because moving right increases /charge density and moving down decreases it, the two effects partly cancelling. (2)
Two chemical consequences: (2)
- Both Li and Mg form normal oxides (, ) — not peroxides/superoxides like heavier group-1 metals.
- Both nitrides form directly with (, ); both carbonates decompose on heating; both have covalent-character (partly soluble) compounds.
[
{"claim":"Z_eff of 3p electron in S is 5.45","code":"sigma = 0.35*5 + 0.85*8 + 1.00*2; result = abs((16 - sigma) - 5.45) < 1e-9"},
{"claim":"Z_eff of 3s electron in Na is 2.20","code":"sigma = 0.35*0 + 0.85*8 + 1.00*2; result = abs((11 - sigma) - 2.20) < 1e-9"},
{"claim":"r_Na/r_S ratio approx 2.477","code":"result = abs((5.45/2.20) - 2.4773) < 1e-3"},
{"claim":"Hydrogenic IE estimate for Na is ~705.6 kJ/mol with 42% error","code":"IE = 1312*(2.20**2)/(3**2); err = (IE-496)/496*100; result = abs(IE-705.6) < 1.0 and abs(err-42.3) < 0.5"},
{"claim":"Mulliken chi F = 10.41 eV and Cl = 8.295 eV","code":"result = abs(0.5*(17.42+3.40)-10.41) < 1e-2 and abs(0.5*(12.97+3.62)-8.295) < 1e-3"},
{"claim":"Allred-Rochow chi_AR(F) approx 4.45","code":"val = 0.359*(5.20/0.71**2) + 0.744; result = abs(val - 4.447) < 1e-2"},
{"claim":"Ionic potentials: Li+ 1.316, Mg2+ 2.778","code":"result = abs(1/0.76 - 1.3158) < 1e-3 and abs(2/0.72 - 2.7778) < 1e-3"}
]