01 Key Concepts
Definition
For f(x,y), the gradient is grad f = (f_x, f_y) โ a vector made up of all the partial derivatives.
Direction of Steepest Ascent
At any point, grad f points in the direction where f increases fastest; the magnitude of grad f tells you how steep that increase is.
Perpendicular to Level Curves
The gradient at a point is always perpendicular to the level curve (contour line) passing through that point.
Three Variables
For f(x,y,z), grad f = (f_x, f_y, f_z) โ the idea extends naturally to more variables.
Zero Gradient
Where grad f = (0,0), the function has a flat point โ a candidate for a local max, min, or saddle point.
02 Key Formulas
- grad f = (f_x, f_y)
- grad f = (f_x, f_y, f_z) for three variables
03 Solved Examples
- Find f_x = 2x and f_y = 2y.
- Combine into a vector.
- Find f_x = 2xy and f_y = x^2 + 3y^2.
- Substitute x=1, y=2: f_x = 2(1)(2) = 4. f_y = 1 + 3(4) = 13.
- grad f = (2x, 2y). Set both components to zero: 2x=0 and 2y=0.
- This gives x=0 and y=0.
04 Practice Questions
๐ Gradient โ Downloadable Worksheet
10 questions with a full answer key. Grab the PDF to print, or try the interactive version in your browser.