Thermodynamics & Statistical Mechanics (Advanced)
Level 2 Paper — Recall & Standard Problems
Time Limit: 30 minutes
Total Marks: 40
Instructions: Answer all questions. Use for Boltzmann's constant, for the gas constant. Show working where required.
Q1. State the four thermodynamic potentials , , , and write each in terms of using the appropriate variables. (4 marks)
Q2. Starting from , derive the Maxwell relation associated with the Helmholtz free energy. (4 marks)
Q3. State the Gibbs phase rule and use it to determine the number of degrees of freedom for a single-component system at its triple point. (4 marks)
Q4. Write down Boltzmann's entropy formula. A system has equally likely microstates in state A and in state B. Compute the entropy difference in units of . (4 marks)
Q5. For a two-level system with energies and , write down the canonical partition function for a single particle and derive an expression for the average energy . (5 marks)
Q6. State the equipartition theorem. Hence give the total internal energy and the molar heat capacity of one mole of an ideal diatomic gas (translational + rotational degrees of freedom only). (5 marks)
Q7. Write the Clausius–Clapeyron equation and state the physical meaning of each symbol. (4 marks)
Q8. Write down the Bose–Einstein and Fermi–Dirac occupation-number distributions. State one key physical difference between the two. (5 marks)
Q9. Write the Planck distribution for the spectral energy density of blackbody radiation and state the limit it reduces to at low frequency. (5 marks)
End of Paper
Answer keyMark scheme & solutions
Q1. (4 marks)
- = internal energy, natural variables . (1)
- , natural variables . (1)
- , natural variables . (1)
- , natural variables . (1)
Why: Each is a Legendre transform swapping a natural variable pair to make different variables independent.
Q2. (4 marks)
- so , . (1)
- Equality of mixed second partials: . (1)
- . (1)
- Result: . (1)
Q3. (4 marks)
- Gibbs phase rule: , where = components, = phases, = degrees of freedom. (2)
- Triple point: , → . (1)
- Interpretation: invariant point, no freedom to vary or pressure. (1)
Q4. (4 marks)
- . (1)
- , . (1)
- . (1)
- . (1)
Q5. (5 marks)
- , with . (2)
- . (1)
- . (1)
- . (1)
Q6. (5 marks)
- Equipartition: each quadratic degree of freedom contributes to average energy. (1)
- Diatomic (trans + rot): degrees of freedom. (1)
- Per mole: . (2)
- . (1)
Q7. (4 marks)
- (or ). (2)
- = slope of coexistence curve; = latent heat of transition; = transition temperature; = volume change between phases. (2)
Q8. (5 marks)
- Bose–Einstein: . (2)
- Fermi–Dirac: . (2)
- Difference: fermions obey Pauli exclusion (, sign ); bosons can multiply-occupy a state (sign ). (1)
Q9. (5 marks)
- Planck: . (3)
- Low-frequency (Rayleigh–Jeans) limit: , giving . (2)
[
{"claim":"S_B - S_A = k_B ln 2 (coefficient ln2)","code":"import sympy as sp\nkB=sp.Symbol('kB',positive=True)\nSA=kB*sp.log(4); SB=kB*sp.log(8)\nresult = sp.simplify(SB-SA - kB*sp.log(2))==0"},
{"claim":"Two-level average energy equals eps/(e^{beta eps}+1)","code":"beta,eps=sp.symbols('beta eps',positive=True)\nZ=1+sp.exp(-beta*eps)\nE=-sp.diff(sp.log(Z),beta)\nresult = sp.simplify(E - eps/(sp.exp(beta*eps)+1))==0"},
{"claim":"Diatomic (5 dof) molar CV = 5R/2","code":"R,T=sp.symbols('R T',positive=True)\nU=sp.Rational(5,2)*R*T\nCV=sp.diff(U,T)\nresult = sp.simplify(CV - sp.Rational(5,2)*R)==0"},
{"claim":"Triple point degrees of freedom F=0 for C=1,P=3","code":"C,P=1,3\nF=C-P+2\nresult = (F==0)"},
{"claim":"Planck low-freq limit gives Rayleigh-Jeans 8 pi nu^2 kB T / c^3","code":"h,nu,kB,T,c=sp.symbols('h nu kB T c',positive=True)\nu_planck=(8*sp.pi*h*nu**3/c**3)/(sp.exp(h*nu/(kB*T))-1)\nlim=sp.limit(u_planck,h,0)\nresult = sp.simplify(lim - 8*sp.pi*nu**2*kB*T/c**3)==0"}
]