Coordination Chemistry
Time: 75 minutes Total Marks: 60
Instructions: Answer all questions. Show full reasoning. Constants: = Bohr magneton, (spin-only). Where computation is requested, present the algorithm/logic explicitly.
Question 1 — CFSE, magnetism and a computational model (24 marks)
Consider octahedral complexes (). Define the CFSE (ignoring pairing-energy terms in the tabulated stabilization) using the occupancies of and with contributing each and contributing each.
(a) Derive, from first principles, the general expression for CFSE of a high-spin octahedral configuration in units of , and give the pairing-energy correction term (state as a function of ). (6)
(b) For (high spin) and (low spin): compute CFSE (with the correct extra-pairing term ), predict the spin-only magnetic moment for each, and explain using the spectrochemical series why the ligand changes the spin state. (8)
(c) Write pseudocode / a Python-style function cfse_octahedral(n, spin) that returns the CFSE in units of and the number of unpaired electrons, correctly handling spin ∈ {"high","low"} for all . State the filling rule your code encodes. (6)
(d) For which configuration(s) does the choice of high-spin vs low-spin make no difference to the number of unpaired electrons in an octahedral field? Justify. (4)
Question 2 — Isomerism, chirality and counting (18 marks)
(a) For the octahedral complex (en = ethylenediamine): enumerate all stereoisomers, identify which are chiral, and explain with a symmetry argument (mirror plane / improper axis) why the cis form is optically active but the trans form is not. (8)
(b) The compound of formula shows ionization isomerism. Write the two isomers as coordination formulae, give one experimental test that distinguishes them, and name each using IUPAC rules. (6)
(c) Explain why tetrahedral complexes show neither geometrical nor (for identical A, B monodentate) optical isomerism, while the square-planar analogue does show geometrical isomerism. Use the point-group / symmetry distinction. (4)
Question 3 — VBT vs CFT, EAN and Jahn–Teller (18 marks)
(a) For (diamagnetic) and (paramagnetic): assign hybridization and geometry via VBT, predict , and explain the geometry difference on ligand-field grounds. (6)
(b) Compute the Effective Atomic Number (EAN) for the metal in and . State whether each obeys the EAN (18-electron) rule and what that implies for kinetic stability. (6)
(c) () is axially distorted. Using the Jahn–Teller theorem, state which orbital set is degenerate and unequally occupied, predict the direction of distortion (elongation), and show that elongation lowers the total electronic energy for the case. (6)
Answer keyMark scheme & solutions
Question 1
(a) (6 marks) High-spin filling follows Hund: fill all five d-orbitals singly (3 in , 2 in ) before pairing. Let electrons in , electrons in ; . CFSE . (2)
For high spin:
- : ,
- : ,
- : ... explicitly up to 5, then after 5 the 6th–10th electrons pair in then .
General: for , ; for , . (2)
Extra pairing term: high-spin has extra pairs only for . Number of paired electrons beyond the free-ion count = , so and CFSE(total) (field term) . (2)
(b) (8 marks) is .
High spin : . CFSE ; extra pairs vs free ion . Total . Unpaired . (4)
Low spin : . CFSE ; three pairs vs free-ion's zero extra... free ion has 1 pair; low-spin has 3 pairs extra . Total . Unpaired (diamagnetic). (2)
Explanation: is a strong-field ligand high in the spectrochemical series ( is weak-field). For , so pairing in is favoured (low spin); for , so electrons occupy (high spin). (2)
(c) (6 marks) Filling rule encoded: high spin fills singly to 5 then pairs; low spin fills completely (up to 6) before any . Award 2 marks for correct rule statement.
def cfse_octahedral(n, spin):
if spin == "high":
t = min(n, 3) + max(min(n-5, 3), 0) # t2g electrons
e = n - t # eg electrons
# unpaired: singly filled orbitals
unpaired = 5 - abs(5 - n) if n <= 5 else 10 - n
else: # low spin
t = min(n, 6)
e = max(n - 6, 0)
unpaired = min(t, 6-t) + ... # see below
# t2g unpaired = t if t<=3 else 6-t ; eg unpaired = e if e<=2 else 4-e
up_t = t if t <= 3 else 6 - t
up_e = e if e <= 2 else 4 - e
unpaired = up_t + up_e
cfse = round(-0.4*t + 0.6*e, 2)
return cfse, unpairedFull marks for correct t,e split, correct CFSE formula, and correct unpaired count logic. (4)
(d) (4 marks) No high/low-spin distinction exists when there is only one way to distribute electrons: (all in , no pairing choice) and ( full, remaining forced into ). For these, unpaired count is fixed. High/low spin differs only for –. (4) (2 for identifying ; 2 for justification.)
Question 2
(a) (8 marks) octahedral, two bidentate en + two Cl. Geometrical isomers: cis (Cl adjacent, 90°) and trans (Cl axial, 180°). (2)
- trans: has a mirror plane (and ); superimposable on its mirror image ⇒ achiral. (2)
- cis: point group ; no plane, no improper axis (); non-superimposable mirror images ⇒ optically active, exists as enantiomer pair. (2)
So three stereoisomers total: trans (1) + cis pair (2). Symmetry argument: chirality requires absence of any (including , ); trans possesses these, cis does not. (2)
(b) (6 marks) Isomers:
- — free ; test with → white precipitate. Name: pentaamminebromidocobalt(III) sulfate. (3)
- — free ; test with → pale-yellow precipitate. Name: pentaamminesulfatocobalt(III) bromide. (3)
(c) (4 marks) Tetrahedral : all four positions are equivalent (all at , mutually adjacent), so there is no cis/trans distinction ⇒ no geometrical isomers. With two identical A and two identical B monodentate ligands the molecule retains a mirror plane (), so it is achiral ⇒ no optical isomerism. (2) Square-planar : the four positions lie in a plane with defined cis (90°) and trans (180°) relationships, so cis and trans geometrical isomers exist; the plane of the molecule is a plane so each is achiral. (2)
Question 3
(a) (6 marks) .
- : strong-field CN⁻ pairs the two -type electrons; one orbital vacated → hybridization → square planar, all paired, (diamagnetic). (3)
- : weak-field Cl⁻; hybridization → tetrahedral, two unpaired electrons, (paramagnetic). (3) Geometry difference: strong-field ligand supplies enough energy to force pairing and adopt low-energy square-planar ; weak field cannot, so tetrahedral is retained.
(b) (6 marks) EAN .
- : Co , ox = +3, CN = 6. EAN (Kr). Obeys 18-e rule (36 = Kr closed shell). (3)
- : Fe , ox = +2, CN = 6. EAN (Kr). Obeys EAN rule. (2) Implication: attainment of noble-gas configuration correlates with high kinetic (substitution) inertness—both are kinetically inert, low-spin complexes. (1)
(c) (6 marks) : . The set () is degenerate but unequally occupied (one orbital doubly, one singly filled) → Jahn–Teller active. (2) Because orbitals point directly at ligands, distortion is large and observable. Elongation along lowers and raises . Put the doubly-occupied orbital in the lowered () level and singly in the raised one. (2) Energy: with splitting ( down by , up by ), occupancy gives net energy change . Hence elongation is stabilizing → axial elongation predicted. (2)
[
{"claim":"HS Fe(II) d6 CFSE = -0.4 Delta_o (field term)","code":"t=4; e=2; result = (-0.4*t + 0.6*e) == -0.4"},
{"claim":"LS Fe(II) d6 CFSE = -2.4 Delta_o","code":"t=6; e=0; result = (-0.4*t + 0.6*e) == -2.4"},
{"claim":"spin-only mu for 4 unpaired = sqrt(24)","code":"n=4; result = sqrt(n*(n+2)) == sqrt(24)"},
{"claim":"EAN of Co in [Co(NH3)6]3+ = 36","code":"Z=27; ox=3; CN=6; result = (Z - ox + 2*CN) == 36"},
{"claim":"EAN of Fe in [Fe(CN)6]4- = 36","code":"Z=26; ox=2; CN=6; result = (Z - ox + 2*CN) == 36"},
{"claim":"mu for tetrahedral NiCl4^2- (2 unpaired) = sqrt(8)","code":"n=2; result = sqrt(n*(n+2)) == sqrt(8)"},
{"claim":"Jahn-Teller d9 elongation net energy = -delta","code":"delta=symbols('delta'); result = simplify(2*(-delta)+1*(delta) + delta) == 0"}
]