Courses / Physics I
Multivariable Calculus

Problem-Solving: Multivariable Calculus

Physics I 239 words Free to read

Multivariable calculus problems require matching the right technique to the structure of the problem.

Decision guide

TaskTool
Rate of change in a directionDirectional derivative Du^fD_{\hat{u}}f
Find extrema of fff=0\nabla f = 0 + second derivative test
Optimise with constraintLagrange multipliers
Integrate over a regionDouble/triple integral
Circular/spherical symmetryChange to polar/spherical coordinates
Line integral of conservative fieldϕ(B)ϕ(A)\phi(B) - \phi(A)
Closed-curve line integralGreen's theorem

Problem-solving checklist

  1. Sketch the region or curve.
  2. Identify the symmetry — choose coordinates accordingly.
  3. Set up the integral with correct limits before computing.
  4. Verify dimensions and limiting cases.

import numpy as np
from scipy import integrate
def f(y, x):
    return x**2 + y**2
result, _ = integrate.dblquad(f, 0, 1, 0, 1)
print(f"Integral of x^{2}+y^{2} over [0,1]x[0,1] = {result:.4f}")

Common mistakes

Tip: Before computing, ask: is there a symmetry argument that makes the integral zero or reduces it? Exploit symmetry first, compute second.
Common pitfall: In multivariable problems, the decisive move happens before any integration: choosing coordinates that fit the region’s symmetry. Fighting a sphere with Cartesian limits is a self-inflicted wound.

Practise this lesson

The explanation above is free to read. The graded practice for this lesson lives in the Tryals app.

13practice questions
2interactive scenes
Start Physics I free

Multivariable Calculus