States of Matter (Quantitative)
Level 3 — Production (from-scratch derivations, explain-out-loud, code-from-memory) Time: 45 minutes | Total: 60 marks
Answer all questions. Show every step. Where asked to "explain out loud," write in full sentences as if teaching.
Q1. (12 marks) Kinetic theory pressure derivation — from scratch. Starting from a cube of side containing identical molecules of mass , derive the expression (a) Set up the momentum change per wall collision and the collision frequency for one molecule along the -axis. (4) (b) Sum over all molecules and use to reach . (5) (c) Convert to and hence show . Explain out loud why the factor appears. (3)
Q2. (10 marks) Maxwell–Boltzmann speeds. (a) State the three characteristic speeds (, , ) in terms of and give their numerical ratio. (4) (b) For O () at , compute in (). (3) (c) Explain out loud how the distribution curve changes when temperature is raised, and why the area under the curve stays constant. (3)
Q3. (10 marks) van der Waals & critical constants — derivation. For the van der Waals equation : (a) Explain the physical meaning of and . (2) (b) Derive the critical constants by setting and , obtaining , , . (6) (c) Compute the critical compressibility factor . (2)
Q4. (10 marks) Gas laws applied. (a) A gas mixture in a L vessel at K contains mol N and mol He. Find each partial pressure and the total pressure ( L atm molK). (4) (b) Gas X effuses faster than gas Y. If g mol, find using Graham's law. (3) (c) Explain out loud, in terms of , why a real gas shows at moderate pressures then at high pressures. (3)
Q5. (10 marks) Solid state packing — from scratch. (a) Derive the packing fraction of a BCC lattice, relating the edge to the atomic radius via the body diagonal. (5) (b) A metal crystallises FCC with edge nm and molar mass g mol. Compute its density in g cm (). (5)
Q6. (8 marks) Code-from-memory + defects. (a) Write a short Python snippet (from memory) that computes given (kg/mol), , and , and prints it. (3) (b) Distinguish Schottky and Frenkel defects, stating the effect of each on density. (3) (c) Explain out loud how doping Si with a Group-15 element produces an n-type semiconductor. (2)
End of paper.
Answer keyMark scheme & solutions
Q1 (12)
(a) A molecule with -velocity hits a wall, momentum change (1). Time between successive hits on same wall (1), so collision frequency (1). Force from one molecule (1).
(b) Total force (2). Pressure (2). Using isotropy : (1).
(c) , so (1). For 1 mol, (1). The arises because motion is shared equally among 3 dimensions; only the -component drives pressure on the -wall (1).
Q2 (10)
(a) , , (3). Ratio (1).
(b) ; compute: ; ; (3).
(c) Raising shifts the peak to higher speed and lowers/broadens it (flattens) (2); total area = total number of molecules (probability =1), which is conserved, so a wider curve must be shorter (1).
Q3 (10)
(a) = intermolecular attraction (corrects pressure downward); = excluded volume of molecules (finite molecular size) (2).
(b) . First derivative (1). Second (1). Dividing the two conditions: (2). Sub into first: (1); then (1).
(c) (2).
Q4 (10)
(a) atm (1.5); atm (1.5); atm (1).
(b) g mol (3).
(c) At moderate P, attractive forces dominate → molar volume smaller than ideal → (1.5); at high P, repulsion/finite volume () dominates → (1.5).
Q5 (10)
(a) BCC body diagonal (2). Atoms per cell (1). PF (2).
(b) FCC: . . cm; cm³ (2). g cm (3).
Q6 (8)
(a) (3)
import math
def vrms(M, T, R=8.314):
v = math.sqrt(3*R*T/M)
print(v)
return v
vrms(0.032, 300) # -> ~483.6(b) Schottky: equal number of cation+anion vacancies → density decreases; Frenkel: ion displaced to interstitial → density unchanged (3). (c) Group-15 atom (e.g. P) has 5 valence electrons; 4 bond to Si, the 5th is free → extra mobile electrons → n-type conduction (2).
[
{"claim":"O2 vrms at 300K ≈ 483.6 m/s","code":"import math; v=math.sqrt(3*8.314*300/0.032); result = abs(v-483.6)<1.0"},
{"claim":"Zc = 3/8 = 0.375","code":"result = simplify(Rational(3,8)) == Rational(375,1000)"},
{"claim":"MX from Graham = 28.44","code":"MX=64/1.5**2; result = abs(MX-28.444)<0.05"},
{"claim":"BCC packing fraction = sqrt(3)*pi/8 ≈ 0.680","code":"import math; pf=math.sqrt(3)*math.pi/8; result = abs(pf-0.680)<0.002"},
{"claim":"FCC density Al ≈ 2.70 g/cm3","code":"a=4.05e-8; rho=4*27/(a**3*6.022e23); result = abs(rho-2.70)<0.05"},
{"claim":"Ptotal of gas mixture = 1.2315 atm","code":"P=(0.20+0.30)*0.0821*300/10; result = abs(P-1.2315)<0.001"}
]