If you're seeing this message, it means we're having trouble loading external resources on our website.

If you're behind a web filter, please make sure that the domains *.kastatic.org and *.kasandbox.org are unblocked.

Main content

Examples: Second partial derivative test

Practice using the second partial derivative test

Prepare for the slog

I have a challenge for you.
In this article, you can walk through two examples of finding maxima and minima in multivariable functions. In modern applications, most of the steps involved in solving these sorts of problems would be performed by a computer. However, the only way to test that you really understand how the second partial derivative test is used is to walk through it yourself, at least once.
After all, you may one day need to write the program to tell a computer how to do this, which requires somewhat of an intimate knowledge of all the steps involved. Moreover, it is a good way to become more fluent with partial derivatives.
So my challenge to you is this: try entering the answer to each step as you move through the article to test your own understanding.

The statement of the second partial derivative test (for reference)

Start by finding a point (x0,y0) where both partial derivatives of f are 0.
fx(x0,y0)=0fy(x0,y0)=0
The second partial derivative test tells us how to determine if (x0,y0) is a local maximum, local minimum, or saddle point. Start by computing this term:
H=fxx(x0,y0)fyy(x0,y0)(fxy(x0,y0))2
where fxx, fyy and fxy are the second partial derivatives of f.
If H<0, then f has a neither minimum nor maximum at (x0,y0), but instead has a saddle point.
If H>0, then f definitely has either a maximum or minimum at (x0,y0), and we must look at the sign of fxx(x0,y0) to figure out which one it is.
  • If fxx(x0,y0)>0, then f has a local minimum.
  • If fxx(x0,y0)<0, then f has a local maximum.
If H=0, the second derivatives alone cannot tell us whether f has a local minimum or maximum.

Example 1: All of the stable points!

Problem: Find all the stable points (also called critical points) of the function
x44x2+y2
And determine whether each one gives a local maximum, local minimum, or a saddle point.

Step 1: Find all stable points

The stable points are all the pairs (x0,y0) where both partial derivatives equal 0. First, compute each partial derivative
fx(x,y)=
fy(x,y)=

Next, find all the points (x0,y0) where both partial derivatives are 0, which is to say, solve the system of equations
fx(x0,y0)=0fy(x0,y0)=0
Which of the following pairs satisfying the system of equations?
Choose all answers that apply:

Step 2: Apply second derivative test

To start, find all three second partial derivatives of f(x,y)=x44x2+y2
fxx(x,y)=
fyy(x,y)=
fxy(x,y)=

The expression we care about for the second partial derivative test is
fxx(x,y)fyy(x,y)(fxy(x,y))2
If we apply the second derivatives we just found, what does this expression become (as a function of x and y)?
fxx(x,y)fyy(x,y)(fxy(x,y))2=

To apply the second derivative test, we plug in each of our stable points to this expression and see if it becomes positive or negative.
  • Stable point 1:
    At (x,y)=(0,0), the expression evaluates as
    24x216=24(0)216=16
This is negative, so according to the second partial derivative test, the point (0,0) is a
Choose 1 answer:

  • Stable point 2: At (x0,y0)=(2,0), the expression becomes
    24x216=24(2)216=4816=32
    This is positive. Also,
    fxx(2,0)=12(2)28=248=16
Therefore, the point (2,0) must be a
Choose 1 answer:

  • Stable point 3: We could plug in the point (2,0) just as we have with the other stable points, but we could also notice that the function f(x,y)=x44x2+y2 is symmetric, in the sense that replacing x with x will yield the same expression:
    (x)44(x)2+y2=x44x2+y2
Therefore the point (2,0) will have precisely the same behavior as (2,0)
Here is a clip of the graph of f(x,y) rotating, where the two local minima are clear, and we can see that the point at the origin is indeed a saddle point.
Khan Academy video wrapper

Example 2: Getting more intricate

Let's not sugarcoat things; optimization problems can get long. Very long.
Problem: Find all the stable points (also called critical points) of the function.
f(x,y)=x2yy2xx2y2
And determine whether each one gives a local maximum, local minimum, or a saddle point.

Step 1: Find stable points

We need to find where both partial derivatives are zero, so start by finding both partial derivatives of f(x,y)=x2yy2xx2y2
fx(x,y)=
fy(x,y)=

So we must solve the system of equations
2xyy22x=0x22xy2y=0
In the real world, when you come across a system of equations, you should almost certainly use a computer to solve it. For the sake of practice, though, and to see that optimization problems are not always that simple, let's do something crazy and actually work it out ourselves.
In general, the way you might go about this would go something like this:
  • Solve one equation to get y in terms of x.
  • Plug that into the other expression to get an equation with only x.
  • Solve for x.
  • Plug each solution for x into both equations and solve for y.
  • Check which resulting (x,y) pairs actually solve the expression.
This can be a real mess since you might use the quadratic formula to solve for y treating x as a constant, and plug that nasty expression in elsewhere. Otherwise, you might find yourself solving a degree 4 equation, which aside from being a pain gives quite a few solutions to plug in.
In this particular system, the equations feel very symmetric, which is an indication that adding/subtracting them might make things simpler. Indeed, if we add them together, we get
2xyy22x=0+x22xy2y=0x2y22(x+y)=0(x+y)(xy)2(x+y)=0(x+y)(xy2)=0
What does this equation imply about the relationship between x and y? (Express each answer as an equation involving the variables x and y)
Either
or

Each of these possibilities lets us write x in terms of y, which in turn lets us write one of our equations purely in terms of y.
For example, if you plug in the relation x=y to the first expression 2xyy22x, you can get a quadratic expression purely in terms of y. What are the roots of this expression?
and

Since this arose from assuming x=y, the corresponding x values are x=0 and x=23 respectively. This gives us our first two solution pairs:
(x,y)=(0,0)(x,y)=(23,23)
Alternatively, if we consider the case where x=y+2. Again, when we plug this relation into the expression 2xyy22x, we have a quadratic expression purely in terms of y. What are the roots of this expression?
and

Because we found these under the assumption that x=y+2, the corresponding values of x are
x=21+5=1+5x=215=15
This gives two more solution pairs:
(x,y)=(1+5,1+5)(x,y)=(15,15)
We've now exhausted all possibilities since we initially found that either x=y or x=y+2, and we completely solved the equations resulting from each assumption.

Step 2: Apply second derivative test

Man, that was already a lot of work for one example, and we're not even halfway done! Now we have to apply the second derivative test to each one of these. First, find all of the second derivatives of our function
f(x,y)=x2yy2xx2y2
fxx(x,y)=
fyy(x,y)=
fxy(x,y)=

According to the second derivative test, to analyze whether each of our stable points is a local maximum or minimum, we plug them into the expression
fxx(x,y)fyy(x,y)(fxy(x,y))2
What does this expression become when we apply the second derivatives you just found?

Since we only care about whether this expression is positive or negative, we can divide everything by 4 to make things a bit simpler.
(y1)(x1)(xy)2Key expression
Now we see what the sign of this expression is for each of our stable points.
  • Stable point (0,0):
At the point (x,y)=(0,0), the key expression above evaluates to
.

From this we conclude that (0,0) is
Choose 1 answer:
Now,
Choose 1 answer:

  • Stable point (23,23):
At the point (x,y)=(23,23), the key expression above evaluates to
.

From this we conclude that (23,23) is
Choose 1 answer:
Now,
Choose 1 answer:

  • Stable point (1+5,1+5):
At the point (x,y)=(1+5,1+5), the key expression above evaluates to
.

From this we conclude that (1+5,1+5) is
Choose 1 answer:
Now,
Choose 1 answer:

  • Stable point (15,15):
    The arithmetic here is almost identical to the previous case.
Here is a short clip of the graph of f(x,y)=x2yy2xx2y2 rotating, where you can see the three saddle points and the one local maximum at the origin.
Khan Academy video wrapper

Pat yourself on the back

These are long problems, so if you actually worked through them, give yourself some hearty congratulations!

Want to join the conversation?