Multivariable Calculus
Difficulty: Level 1 (Recognition) Time limit: 20 minutes Total marks: 30
Section A — Multiple Choice (1 mark each)
Choose the single best answer.
Q1. The level curves of are:
- (a) parabolas
- (b) concentric circles
- (c) straight lines
- (d) hyperbolas
Q2. For , the partial derivative is:
- (a)
- (b)
- (c)
- (d)
Q3. Clairaut's theorem guarantees provided:
- (a) is bounded
- (b) both mixed partials exist and are continuous near the point
- (c) is a polynomial only
- (d)
Q4. The gradient at a point is:
- (a) tangent to the level curve
- (b) perpendicular to the level curve, pointing toward steepest ascent
- (c) always the zero vector at a maximum's boundary
- (d) parallel to the -axis
Q5. The directional derivative of in the direction of unit vector is:
- (a)
- (b)
- (c)
- (d)
Q6. In the second derivative test, if at a critical point, the point is:
- (a) a local minimum
- (b) a local maximum
- (c) a saddle point
- (d) inconclusive
Q7. The Jacobian factor when converting a double integral to polar coordinates is:
- (a)
- (b)
- (c)
- (d)
Q8. The volume element in spherical coordinates equals:
- (a)
- (b)
- (c)
- (d)
Q9. A vector field is conservative if and only if (on a simply connected domain):
- (a)
- (b)
- (c)
- (d)
Q10. The divergence of is:
- (a)
- (b)
- (c)
- (d)
Q11. The Fundamental Theorem for line integrals states equals:
- (a) always
- (b)
- (c) the area enclosed by
- (d)
Q12. Green's theorem relates a line integral around a closed curve to:
- (a) a surface integral over a sphere
- (b) a double integral over the enclosed plane region
- (c) a triple integral
- (d) a gradient
Section B — Matching (1 mark each, Q13 = 4 marks total)
Q13. Match each theorem (left) with what it generalizes/connects (right).
| Theorem | Connection |
|---|---|
| (i) Divergence Theorem | (A) circulation around boundary curve = flux of curl through surface |
| (ii) Stokes' Theorem | (B) flux out of closed surface = triple integral of divergence |
| (iii) Green's Theorem | (C) |
| (iv) FTC for line integrals | (D) 2D version of Stokes/Divergence in the plane |
Section C — True/False WITH Justification (2 marks each: 1 for verdict, 1 for reason)
Q14. If gives different values along and , then the limit does not exist. (T/F + justify)
Q15. A function that has both partial derivatives and at a point must be differentiable there. (T/F + justify)
Q16. Reversing the order of integration in a double integral over a rectangle always changes the value of the integral. (T/F + justify)
Q17. The gradient vector is the direction in which a function increases most rapidly. (T/F + justify)
Q18. If everywhere on , then is conservative. (T/F + justify)
Q19. At an interior local maximum of a differentiable function, . (T/F + justify)
Q20. For , the level surfaces are spheres centered at the origin. (T/F + justify)
Answer keyMark scheme & solutions
Section A (1 mark each)
Q1 — (b). describes circles of radius ; concentric.
Q2 — (a). Treat as constant: .
Q3 — (b). Clairaut requires continuity of the mixed second partials near the point.
Q4 — (b). level curve and points in the steepest-ascent direction.
Q5 — (b). for unit .
Q6 — (c). saddle point.
Q7 — (b). .
Q8 — (b). Spherical volume element .
Q9 — (b). On a simply connected domain, conservative.
Q10 — (a). .
Q11 — (b). Path-independence: value = potential difference of endpoints.
Q12 — (b). Green: line integral around = double integral over enclosed region.
Section B
Q13 (4 marks, 1 each): (i)→(B), (ii)→(A), (iii)→(D), (iv)→(C).
Section C (2 marks each: verdict 1, reason 1)
Q14 — TRUE. If two paths give different limiting values, the two-variable limit cannot exist (uniqueness of limits fails). (1 T + 1 reason)
Q15 — FALSE. Existence of partials does not imply differentiability; a standard counterexample is (with ), which has both partials at but is not even continuous there. Differentiability requires the linear approximation error to vanish faster than . (1 F + 1 reason)
Q16 — FALSE. By Fubini's theorem, for an integrable function over a rectangle both iterated integrals give the same value; only the computation path changes. (1 F + 1 reason)
Q17 — TRUE. The maximum of occurs at , i.e. along . (1 T + 1 reason)
Q18 — TRUE (on ). is simply connected, so curl-free implies the field is a gradient. (1 T + 1 reason) (Note: false on non-simply-connected domains.)
Q19 — TRUE. At an interior extremum of a differentiable function, all partials vanish (Fermat's condition), so . (1 T + 1 reason)
Q20 — TRUE. () are spheres of radius centered at origin. (1 T + 1 reason)
[
{"claim":"f_x of x^2*y is 2xy","code":"x,y=symbols('x y'); result = diff(x**2*y, x) == 2*x*y"},
{"claim":"Mixed partials of x^2*y equal (Clairaut)","code":"x,y=symbols('x y'); f=x**2*y; result = diff(f,x,y) == diff(f,y,x)"},
{"claim":"Polar Jacobian is r","code":"r,t=symbols('r t'); x=r*cos(t); y=r*sin(t); J=Matrix([[diff(x,r),diff(x,t)],[diff(y,r),diff(y,t)]]); result = simplify(J.det()) == r"},
{"claim":"Spherical volume element is rho^2 sin(phi)","code":"rho,ph,th=symbols('rho phi theta'); x=rho*sin(ph)*cos(th); y=rho*sin(ph)*sin(th); z=rho*cos(ph); J=Matrix([[diff(x,rho),diff(x,ph),diff(x,th)],[diff(y,rho),diff(y,ph),diff(y,th)],[diff(z,rho),diff(z,ph),diff(z,th)]]); result = simplify(J.det()) == rho**2*sin(ph)"}
]