Advanced Topics (Elite Level)
Level: 4 (Application — novel problems, no hints) Time limit: 60 minutes Total marks: 50
Question 1. (10 marks)
Consider the real integral
(a) Locate all poles of in the upper half-plane and classify them. (3)
(b) Compute the residue at each such pole. (4)
(c) Using a semicircular contour in the upper half-plane, evaluate , justifying that the arc contribution vanishes. (3)
Question 2. (10 marks)
Let .
(a) Obtain the Laurent series of valid in the annulus . (4)
(b) Obtain the Laurent series of valid in the region . (4)
(c) State the residue of at from the expansion in (a), and explain in one sentence why the annulus of validity matters. (2)
Question 3. (10 marks)
A bead slides without friction under gravity along a curve from the origin to a point , starting from rest.
(a) Show that the time of descent is , stating the physical principle used. (2)
(b) Since the integrand has no explicit -dependence, use the Beltrami identity to derive the first-order equation (5)
(c) Verify by direct substitution that the cycloid satisfies , hence solving the brachistochrone. (3)
Question 4. (10 marks)
Consider minimising subject to the constraint .
(a) Write the KKT conditions for this problem (with multiplier for the constraint written as ). (4)
(b) Solve the KKT system and find the minimiser and minimum value. (4)
(c) State whether the constraint is active at the optimum and justify via complementary slackness. (2)
Question 5. (10 marks)
A frog hops among three lily pads as a Markov chain with transition matrix (rows = from, columns = to)
(a) Determine whether the chain is irreducible and aperiodic (justify briefly). (3)
(b) Find the stationary distribution solving , . (5)
(c) By symmetry between states 1 and 3, state and and confirm consistency. (2)
Answer keyMark scheme & solutions
Question 1 (10 marks)
(a) Poles where denominators vanish: ; . In the upper half-plane: and , both simple poles (denominator factors are distinct linear factors, numerator nonzero there). (3)
(b) For a simple pole at : .
At :
At : (4) (2 each)
(c) On the arc , , length , so contribution . Thus (3) — arc justification (1), sum of residues (1), final (1).
Question 2 (10 marks)
(a) Partial fractions: . For : . So (4)
(b) For : . So Combining, the terms give , so . (4)
(c) Residue at is the coefficient of in (a): . The annulus matters because the residue is read from the expansion valid on a punctured disc around the pole (); the expansion has no term and cannot be used to read . (2)
Question 3 (10 marks)
(a) Energy conservation from rest: . Time with , giving the stated . (2)
(b) With , drop constant ; use . (up to constant). Then Square: . (5)
(c) , , so . Then const. ✓ (3)
Question 4 (10 marks)
(a) Lagrangian . KKT:
- Stationarity: , .
- Primal feasibility: .
- Dual feasibility: .
- Complementary slackness: . (4)
(b) From stationarity . If : , but then violates feasibility. So , forcing , . Minimiser , minimum value . (4)
(c) Constraint is active (). Justification: complementary slackness with requires ; the unconstrained minimum is infeasible, so the optimum lies on the boundary. (2)
Question 5 (10 marks)
(a) From 1 you can reach 2, from 2 reach 1,2,3, from 3 reach 2 — all states communicate, so irreducible. State 2 has a self-loop () giving period 1; irreducibility spreads aperiodicity, so the chain is aperiodic. (3)
(b) :
From eq 1 and 3: . Check eq 2: ✓. Normalise: , . (5)
(c) By the 1↔3 symmetry, , consistent with the solved values; sum . (2)
[
{"claim":"Q1 integral equals pi/3","code":"x=symbols('x',real=True); I=integrate(x**2/((x**2+1)*(x**2+4)),(x,-oo,oo)); result = simplify(I - pi/3)==0"},
{"claim":"Q1 residues sum: 2*pi*i*(i/6 - i/3) = pi/3","code":"result = simplify(2*pi*I*(I/Rational(1,1)/6 - I/3) - pi/3)==0"},
{"claim":"Q4 minimum value is 2 at (1,1)","code":"result = (1**2+1**2)==2"},
{"claim":"Q5 stationary distribution pi P = pi","code":"P=Matrix([[0,1,0],[Rational(1,4),Rational(1,2),Rational(1,4)],[0,1,0]]); pv=Matrix([[Rational(1,6),Rational(2,3),Rational(1,6)]]); result = (pv*P == pv) and (sum(pv)==1)"}
]