01 Key Concepts
Functions of Several Variables
A function like f(x,y) depends on two (or more) inputs, producing a surface rather than a curve.
Notation
Partial derivative with respect to x is written as (partial f / partial x) or f_x. Same idea applies for y, giving f_y.
How to Compute
To find f_x, differentiate f(x,y) with respect to x while treating y as a constant. To find f_y, do the reverse.
Geometric Meaning
f_x gives the slope of the surface in the x-direction at a point; f_y gives the slope in the y-direction.
Higher-Order Partials
You can take partial derivatives of partial derivatives, e.g., f_xx, f_yy, or the mixed partial f_xy.
02 Solved Examples
- To find f_x, treat y as a constant: d/dx[x^2*y] = 2xy, and d/dx[y^3] = 0.
- So f_x = 2xy.
- To find f_y, treat x as a constant: d/dy[x^2*y] = x^2, and d/dy[y^3] = 3y^2.
- So f_y = x^2 + 3y^2.
- f_x: treat y as constant. d/dx[3x^2]=6x, d/dx[4xy]=4y, d/dx[y^2]=0.
- So f_x = 6x + 4y.
- f_y: treat x as constant. d/dy[3x^2]=0, d/dy[4xy]=4x, d/dy[y^2]=2y.
- So f_y = 4x + 2y.
- First find f_x = 3x^2*y^2 (treating y as constant).
- Now differentiate f_x with respect to y: d/dy[3x^2*y^2] = 6x^2*y.
03 Practice Questions
๐ Partial Derivatives โ Downloadable Worksheet
10 questions with a full answer key. Grab the PDF to print, or try the interactive version in your browser.