Redox & Electrochemistry (Intro)
Level 5 — Mastery (cross-domain: chemistry + math + physics + coding) Time limit: 75 minutes Total marks: 60
Constants: , , unless stated. Use where indicated; at K.
Question 1 — The Daniell cell, thermodynamics & equilibrium (22 marks)
Consider the galvanic cell
with and .
(a) Identify the anode and cathode, write the two half-reactions and the balanced overall cell reaction. State . (4)
(b) Compute , then (kJ mol⁻¹). Comment on spontaneity. (4)
(c) Derive the relation starting from and . Evaluate numerically. (5)
(d) Using the Nernst equation, find when and . (4)
(e) Coding. Write a Python function cell_emf(Zn, Cu) returning in volts (using the Nernst equation at 298.15 K). Then state, with justification, the concentration ratio at which the cell reaches equilibrium (). (5)
Question 2 — Concentration cell + electrolysis coupling (20 marks)
Part A — Concentration cell. A cell is built from two copper electrodes in solutions of concentrations (dilute) and (concentrated).
(a) Explain qualitatively why an EMF arises and identify which electrode (dilute or concentrated) is the cathode. (3)
(b) Derive the EMF expression and compute for , . (4)
Part B — Electrolysis (Faraday). The concentrated half-cell above is now electrolysed between inert electrodes. A current of is passed for .
(c) State Faraday's laws and compute the mass of Cu deposited at the cathode. (.) (5)
(d) Compute the volume of gas (at STP, ) liberated at the anode over the same time, assuming water oxidation . (4)
(e) Cross-domain. If instead this charge is used to charge a lead-acid cell segment, estimate the electrical energy (in J) delivered assuming a constant terminal voltage of . (4)
Question 3 — Fuel cell, corrosion & argument (18 marks)
(a) For the H₂/O₂ fuel cell in alkaline medium, write both electrode reactions and the overall reaction. Given and per O₂, compute per mole of O₂ (kJ). (5)
(b) Explain the spacecraft relevance of the H₂/O₂ fuel cell in two distinct points beyond "it produces electricity." (3)
(c) Prove/reason. Iron () corrodes. Using electrode potentials, prove that attaching zinc () provides cathodic protection whereas attaching tin () would accelerate corrosion of iron once the coating is scratched. (6)
(d) Distinguish galvanization from cathodic protection by impressed current in one functional sentence each. (4)
Answer keyMark scheme & solutions
Question 1
(a) (4)
- Anode (oxidation): (1)
- Cathode (reduction): (1)
- Overall: (1)
- (1) Why: Zn is more easily oxidised (more negative ) so it is the negative anode.
(b) (4)
- (2)
- (1)
- spontaneous. (1)
(c) (5)
- Set equal to : (2)
- (1)
- Numerics: (1)
- (1) Why: Large confirms reaction goes essentially to completion.
(d) (4)
- (1)
- Nernst: (2)
- (1)
(e) (5)
import math
def cell_emf(Zn, Cu):
E0 = 1.10
n = 2
Q = Zn / Cu
return E0 - (0.05916/n)*math.log10(Q)(3 for correct function: E°, Q, Nernst term)
- At equilibrium : (1)
- (1) (equals , as expected).
Question 2
(a) (3)
- Both electrodes identical; EMF arises from difference in activity (reduction more favourable where ions concentrated). (2)
- Cathode = concentrated () side; reduction proceeds there to lower concentration. (1)
(b) (4)
- , (2)
- (2)
(c) (5)
- Faraday: (1st) mass charge; (2nd) equal charge deposits masses equivalent mass. (1)
- (1)
- moles mol (1)
- : moles Cu mol (1)
- mass (1)
(d) (4)
- per O₂: moles O₂ mol (2)
- Volume (2)
(e) (4)
- Energy (3)
- (Charge–energy link ; ideal, ignoring losses.) (1)
Question 3
(a) (5)
- Anode: (1)
- Cathode: (1)
- Overall: (1)
- per mol O₂ (2)
(b) (3) — any two:
- Product water is potable/usable by crew. (1.5)
- High energy density, no moving parts, quiet, high efficiency vs combustion. (1.5)
- Continuous operation from stored H₂/O₂ without recharging. (1.5) (max 3)
(c) (6)
- Protection requires the sacrificial metal to be more easily oxidised (more negative ) so it becomes the anode and Fe becomes cathode (protected). (2)
- Zn: ⇒ Zn oxidises preferentially, Fe protected (cathodic protection). (2)
- Sn: ⇒ Fe is more easily oxidised than Sn; when coating scratched Fe becomes anode and corrodes faster (galvanic acceleration). (2)
(d) (4)
- Galvanization: coating iron with zinc, which both physically blocks and sacrificially corrodes to protect the iron. (2)
- Impressed-current cathodic protection: an external DC source forces the metal to be the cathode, driving electrons in to suppress its oxidation. (2)
[
{"claim":"E°cell Daniell = 1.10 V", "code":"Ec=0.34-(-0.76); result = abs(Ec-1.10)<1e-9"},
{"claim":"ΔG° Daniell ≈ -212.27 kJ/mol", "code":"dG=-2*96485*1.10/1000; result = abs(dG-(-212.267))<0.01"},
{"claim":"ln K Daniell ≈ 85.63", "code":"import sympy as sp; lnK=2*96485*1.10/(8.314*298.15); result = abs(lnK-85.63)<0.05"},
{"claim":"E_cell at Q=100 is 1.041 V", "code":"import sympy as sp; E=1.10-(0.05916/2)*sp.log(100,10); result = abs(float(E)-1.041)<0.001"},
{"claim":"Mass Cu deposited = 1.334 g", "code":"Q=1.5*2700; m=(Q/96485)/2*63.55; result = abs(m-1.334)<0.005"},
{"claim":"O2 volume = 0.235 L", "code":"Q=1.5*2700; V=(Q/96485)/4*22.4; result = abs(V-0.235)<0.002"},
{"claim":"Energy = 8302.5 J", "code":"W=1.5*2700*2.05; result = abs(W-8302.5)<0.1"}
]