Advanced Topics (Elite Level)
Level: 2 — Recall (definitions, standard problems, short derivations) Time Limit: 30 minutes Total Marks: 40
Q1. State the Cauchy–Riemann equations for , and verify that is analytic. (4 marks)
Q2. Evaluate the contour integral where the contour is traversed once counterclockwise. (4 marks)
Q3. Using Cauchy's integral formula, evaluate . (4 marks)
Q4. Find the residue of at the pole . (4 marks)
Q5. Using the residue theorem, evaluate the real integral (5 marks)
Q6. State the Einstein summation convention. Given the metric tensor and a contravariant vector , write the expression for the covariant component . (4 marks)
Q7. State the Euler–Lagrange equation for a functional . Apply it to and find the general solution . (5 marks)
Q8. Define a convex function on an interval. Determine, with justification, whether is convex. (4 marks)
Q9. A Markov chain has transition matrix . Find the steady-state distribution . (6 marks)
End of paper.
Answer keyMark scheme & solutions
Q1. (4 marks) Cauchy–Riemann equations: For , so , .
- , → equal. (1 mark)
- , , so . (1 mark) CR equations satisfied everywhere → analytic.
Q2. (4 marks) By Cauchy's integral formula / standard result, .
- Parametrize , (1 mark)
- Integral . (3 marks)
Q3. (4 marks) Cauchy's integral formula: for inside . (1 mark) Here , , which lies inside . (1 mark)
Q4. (4 marks) ; simple pole at . (1 mark) (Equivalently .)
Q5. (5 marks) Close contour in upper half-plane; only pole enclosed is . (1 mark) Residue at is (from Q4). (1 mark) By residue theorem, integral . (2 marks) Semicircle contribution → 0 as . (1 mark)
Q6. (4 marks) Einstein summation convention: repeated indices (one upper, one lower) are summed over their range; the summation symbol is omitted. (2 marks) Lowering an index with the metric:
Q7. (5 marks) Euler–Lagrange equation: For : , . (1 mark) So . (1 mark) General solution: (straight line). (1 mark)
Q8. (4 marks) Definition: is convex on if for all and : For : for all , so is convex. (2 marks)
Q9. (6 marks) Steady state: , . (1 mark) Equations: . (2 marks) Normalize: . (2 marks)
[
{"claim":"Integral of dz/z over unit circle = 2*pi*i", "code":"theta=symbols('theta'); z=exp(I*theta); val=integrate(diff(z,theta)/z,(theta,0,2*pi)); result = simplify(val-2*pi*I)==0"},
{"claim":"Residue of 1/(z^2+1) at z=i is 1/(2*I)", "code":"z=symbols('z'); res=limit((z-I)*1/(z**2+1),z,I); result = simplify(res-1/(2*I))==0"},
{"claim":"Integral of 1/(x^2+1) over reals = pi", "code":"x=symbols('x'); val=integrate(1/(x**2+1),(x,-oo,oo)); result = simplify(val-pi)==0"},
{"claim":"Steady state of Markov chain is (2/7,5/7)", "code":"p1,p2=symbols('p1 p2'); sol=solve([0.5*p1+0.2*p2-p1, p1+p2-1],[p1,p2]); result = abs(sol[p1]-Rational(2,7))<1e-9 and abs(sol[p2]-Rational(5,7))<1e-9"}
]