Courses / Physics I
Multivariable Calculus

Partial Derivatives

Physics I 187 words Free to read

A partial derivative measures how ff changes when one variable moves while the others are held fixed.

fx=limh0f(x+h,y)f(x,y)h\frac{\partial f}{\partial x} = \lim_{h\to 0}\frac{f(x+h,y)-f(x,y)}{h}

Notation

fx=fx,fy=fy,fxy=2fyxf_x = \frac{\partial f}{\partial x}, \qquad f_y = \frac{\partial f}{\partial y}, \qquad f_{xy} = \frac{\partial^2 f}{\partial y\,\partial x}

Clairaut's theorem — If fxyf_{xy} and fyxf_{yx} are both continuous, then:

f_{xy} = f_{yx}

Geometric interpretation

Example — For f(x,y)=x2y+3xy2f(x,y) = x^{2}y + 3xy^{2}:

fx=2xy+3y2,fy=x2+6xyf_x = 2xy + 3y^2, \qquad f_y = x^2 + 6xy

from sympy import symbols, diff
x, y = symbols('x y')
f = x**2 * y + 3*x * y**2
print("f_x =", diff(f, x))
print("f_y =", diff(f, y))

Key insight: Partial derivatives reduce a multivariable problem to a single-variable one by treating all other variables as constants.
Common pitfall: f/x\partial f/\partial x freezes every other variable — it answers a deliberately narrow question. The real-world change of ff when several inputs move at once is the chain rule’s job, not a single partial’s.
Placeholder: Partial Derivatives

Practise this lesson

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

14practice questions
2interactive scenes
Start Physics I free

Multivariable Calculus