Advanced Topics (Elite Level)
Time limit: 20 minutes Total marks: 40 Instructions: Answer all questions. For True/False and matching items, a brief justification is required to earn full marks. Use notation for mathematics.
Section A — Multiple Choice (2 marks each)
Q1. The Cauchy–Riemann equations for are:
- (a)
- (b)
- (c)
- (d)
Q2. By Cauchy's integral theorem, provided:
- (a) is bounded on
- (b) is analytic on and inside the closed contour
- (c) is a straight line
- (d) has exactly one pole inside
Q3. The residue of at is:
- (a)
- (b)
- (c)
- (d)
Q4. In the Einstein summation convention, denotes:
- (a) a single product term
- (b) the sum over the repeated index
- (c) a rank-2 tensor
- (d) an undefined expression
Q5. The Euler–Lagrange equation for is:
- (a)
- (b)
- (c)
- (d)
Q6. The metric tensor is used to:
- (a) differentiate scalars
- (b) lower an index, converting a contravariant component to covariant
- (c) count dimensions
- (d) diagonalize any matrix
Q7. A function is convex on a convex set if for all and :
- (a)
- (b)
- (c) everywhere
- (d) is linear
Q8. The stationary curve minimizing descent time in the brachistochrone problem is:
- (a) a straight line
- (b) a parabola
- (c) a cycloid
- (d) a circular arc
Q9. For a Markov chain with transition matrix , the steady-state (stationary) distribution satisfies:
- (a)
- (b)
- (c)
- (d)
Q10. The KKT conditions for a constrained minimization include, for inequality constraint with multiplier :
- (a)
- (b) complementary slackness and
- (c) always
- (d) only
Section B — True/False WITH Justification (2 marks each: 1 verdict + 1 reason)
Q11. "Every function differentiable at a point in the complex sense is analytic there." — True or False? Justify.
Q12. "Uniform continuity of on a set implies pointwise continuity." — True or False? Justify.
Q13. "A function sequence pointwise necessarily converges uniformly." — True or False? Justify.
Q14. "The Cauchy–Tukey FFT reduces the DFT of points (with a power of 2) from to operations." — True or False? Justify.
Q15. "A pole of order 2 has a principal part in its Laurent expansion containing exactly one negative-power term." — True or False? Justify.
Section C — Matching (5 marks total, 1 each)
Q16. Match each concept (A–E) to its correct description (1–5).
| Concept | Description | |
|---|---|---|
| A. Residue theorem | 1. Symmetric object measuring lengths/angles in a manifold | |
| B. Christoffel symbols | 2. inside | |
| C. Metric tensor | 3. Iterative first-order minimization | |
| D. Gradient descent | 4. Encode how basis vectors change; connection coefficients | |
| E. Lebesgue measure | 5. Assigns "size" to subsets of , generalizing length |
Answer keyMark scheme & solutions
Section A
Q1. (b). CR equations require and ; these come from equating the two directional limits of . (2)
Q2. (b). Cauchy's theorem needs analyticity on and inside a closed contour in a simply-connected region. (2)
Q3. (a). Simple pole: . (2)
Q4. (b). A repeated upper/lower index pair implies summation. (2)
Q5. (b). Standard Euler–Lagrange stationarity condition. (2)
Q6. (b). lowers an index. (2)
Q7. (b). Convexity means the graph lies below chords: Jensen inequality with . (2)
Q8. (c). The brachistochrone extremal is a cycloid. (2)
Q9. (a). Left eigenvector with eigenvalue 1: (row vector convention). (2)
Q10. (b). KKT: stationarity, primal/dual feasibility (), and complementary slackness . (2)
Section B
Q11. False. Analyticity requires complex differentiability in an open neighborhood, not merely at a single point. E.g. is differentiable only at but nowhere analytic. (1 verdict + 1 reason)
Q12. True. Uniform continuity uses a independent of the point, which in particular works at each fixed point; hence it implies (indeed is stronger than) pointwise continuity. (2)
Q13. False. Pointwise ≠ uniform. Counterexample: on converges pointwise to a discontinuous limit, but not uniformly. (2)
Q14. True. Cooley–Tukey recursively splits the DFT (even/odd indices), giving the recurrence , i.e. . (2)
Q15. False. An order-2 pole has principal part with — generally two negative-power terms. (2)
Section C
Q16. A–2, B–4, C–1, D–3, E–5. (1 mark each correct pairing.) (5)
[
{"claim":"Residue of 1/(z^2+1) at z=i is 1/(2i)","code":"z=symbols('z'); r=residue(1/(z**2+1), z, I); result = simplify(r - 1/(2*I))==0"},
{"claim":"Metric lowers index consistency: Res at z=-i is -1/(2i) confirming symmetry","code":"z=symbols('z'); r=residue(1/(z**2+1), z, -I); result = simplify(r + 1/(2*I))==0"},
{"claim":"Convexity: for f(x)=x^2 midpoint value <= average of endpoints","code":"x,y=symbols('x y'); lhs=((x+y)/2)**2; rhs=(x**2+y**2)/2; result = simplify(rhs-lhs) == ((x-y)**2)/4 and (((x-y)**2)/4).subs({x:1,y:0})>=0"},
{"claim":"x^n at x=1 stays 1 while limit for x<1 is 0 (nonuniform)","code":"n=symbols('n', positive=True); result = (limit(Rational(1,2)**n, n, oo)==0) and (1**n==1)"}
]