d-Block (Transition Metals) & f-Block
Mastery Examination (Level 5)
Time: 60 minutes Total Marks: 45
Instructions: Answer all questions. Show all reasoning. Use BM for spin-only magnetic moments. Atomic numbers where needed are given.
Question 1 — Magnetic moments, oxidation states & a computational model (18 marks)
A researcher tabulates the observed room-temperature magnetic moments (in BM) of aqueous complexes of first-row transition metal ions. She wants to reverse-engineer the number of unpaired electrons and hence the oxidation state.
(a) Derive the spin-only formula starting from with and , showing every algebraic step. (3)
(b) For each ion below, give the ground-state -electron count, the number of unpaired electrons (assume weak-field / high-spin where a choice exists), and the predicted to 2 d.p.: , , , . (Z: Ti 22, Mn 25, Fe 26, Cu 29.) (6)
(c) A measured moment is BM. Solve for the nearest integer , and name a first-row ion consistent with this value. (3)
(d) Write a short pseudocode / Python-style function unpaired_from_mu(mu) that returns the integer minimising over , and state what unpaired_from_mu(2.83) returns. (3)
(e) Explain in physical terms why salts are diamagnetic and colourless, linking both facts to a single electronic feature. (3)
Question 2 — Oxidising power of / : stoichiometry & redox proof (15 marks)
(a) Balance the acidified reaction of dichromate with iron(II): Show the half-reactions and prove electron and charge balance. (5)
(b) A sample of iron ore is dissolved and all iron reduced to . It is titrated against , requiring to reach the end point. Compute the mass percentage of iron in the ore (Fe = 55.85). (5)
(c) Write the balanced equation for the reaction of with oxalate () in acid. State how many moles of oxalate are oxidised per mole of permanganate and explain why this titration must be warmed to ~60 °C whereas the dichromate–iron titration need not be — refer to autocatalysis. (5)
Question 3 — Periodicity across f-block: contraction, size argument & actinide comparison (12 marks)
(a) Explain the lanthanide contraction in terms of imperfect shielding by electrons. Give two distinct chemical/physical consequences, one of which must involve the anomalous similarity of a 4d and 5d element pair. (5)
(b) The ionic radii (, in pm) fall roughly linearly: , , across the 15 lanthanides. Estimate the average contraction per unit increase in atomic number and use a linear model to predict (Gd is the 8th, i.e. 7 steps from La). (4)
(c) Give one electronic-configuration reason and one reactivity/oxidation-state reason why actinides show more variable oxidation states than lanthanides. (3)
Answer keyMark scheme & solutions
Question 1
(a) [3] Start: . Put : . (1) Each unpaired electron contributes spin , so . Substitute: (1) (1)
(b) [6] (½ config + ½ n + ½ μ each ≈)
| Ion | -count | ||
|---|---|---|---|
| 1 | |||
| 5 | |||
| (HS) | 4 | ||
| 1 |
(c) [3] (since ). (2) Ion: () or () or (, ? no — must have ). Correct: /. (1)
(d) [3]
import math
def unpaired_from_mu(mu):
return min(range(6), key=lambda n: abs(math.sqrt(n*(n+2)) - mu))(2) unpaired_from_mu(2.83) → 2 (since ). (1)
(e) [3] is — the subshell is completely filled. (1) All electrons paired ⇒ no net spin ⇒ diamagnetic. (1) With no empty/partially-filled orbital of the correct energy, no – electronic transition is possible, so no visible light is absorbed ⇒ colourless. Single feature: full . (1)
Question 2
(a) [5] Reduction: (2) Oxidation: (×6) (1) Add: (1) Charge check LHS ; RHS ✓; electrons 6=6 ✓. (1)
(b) [5] Moles dichromate mol. (1) Ratio Fe:Cr₂O₇ = 6:1 ⇒ mol Fe . (1) Mass Fe . (1) % Fe . (2)
(c) [5] (2) Ratio: 5 mol oxalate per 2 mol ⇒ 2.5 mol oxalate per mole permanganate. (1) Warming needed: the permanganate–oxalate reaction is intrinsically slow at room T; it is autocatalysed by the produced, so heating to ~60 °C starts the reaction fast enough before enough catalyst forms. (1) The dichromate–Fe²⁺ reaction is fast at room T and not autocatalytic, so no heating is required. (1)
Question 3
(a) [5] As atomic number rises across the 4f series, each added electron shields the increasing nuclear charge poorly (diffuse, penetrating shape), so effective nuclear charge felt by outer electrons rises steadily and the radius contracts — the lanthanide contraction. (2) Consequences (2 needed): (i) Zr and Hf (and Nb/Ta, Mo/W) have almost identical radii and very similar chemistry, making separation difficult — this is the required 4d/5d pair similarity. (2) (ii) Steady decrease in basicity of / difficulty of separating adjacent lanthanides. (1)
(b) [4] Total contraction pm over 14 steps (La→Lu). (1) Per-step pm. (1) . (2) (≈94.6 pm; literature ≈93.8 pm — good agreement.)
(c) [3] Electronic: in actinides the , and levels are close in energy so more electrons are available for bonding ⇒ many oxidation states (e.g. U: +3,+4,+5,+6). (1.5) Reactivity: electrons are less well shielded / more "available" (larger, more diffuse) than the deeply buried , so actinides readily lose variable numbers of electrons, unlike lanthanides that are near-uniformly +3. (1.5)
[
{"claim":"mu for n=5 (Mn2+) is sqrt35 ~5.92","code":"result = round(float(sqrt(35)),2)==5.92"},
{"claim":"mu for n=4 (Fe2+ HS) is sqrt24 ~4.90","code":"result = round(float(sqrt(24)),2)==4.90"},
{"claim":"n=3 gives mu 3.87","code":"result = round(float(sqrt(3*(3+2))),2)==3.87"},
{"claim":"iron percentage in ore is 60.05","code":"mol_cr=0.0200*0.0224; mol_fe=6*mol_cr; mass=mol_fe*55.85; pct=mass/0.250*100; result = abs(pct-60.05)<0.1"},
{"claim":"Gd3+ radius linear estimate ~94.65 pm","code":"r=103.2-7*(103.2-86.1)/14; result = abs(r-94.65)<0.05"}
]