How do use the first derivative test to determine the local extrema #F(x) = -2x^3 - 9x^2 + 24x + 40#?

1 Answer
Jul 27, 2015

Determine the critical points of the function and check to see if the first derivative changes sign around these points.

Explanation:

The first derivative test allows you to determine whether or not a critical point of a function is also a local minimum or a local maximum.

This can be done by checking to see if the first derivative of the function changes signs around these critical points.

The idea is that a critical point is a local minimum if the function goes from decreasing to increasing, i.e. if #f^'# goes from negative to positive*, around that point.

Likewise, a critical point is a local maximum if the function goes from increasing to decreasing, i.e. if #f^'# goes from positive to negative, around that point.

So, start by determining the first derivative for your function

#f^' = -6x^2 - 18x + 24#

This is equivalent to

#f^' = -6(x^2 + 3x - 4)#

To determine the critical points of the function, make #f^'=0# and solve for #x#

#f^' = -6(x^2 + 3x - 4) = 0#

#x^2 + 3x - 4 = 0#

#x_(1,2) = (-3 +- sqrt(3^2 - 4 * 1 * (-4)))/2 = {(x_1 = -4), (x_2 = 1) :}#

Since you have no domain restrictions for this function, both solutions will be critical points.

Now check to see if the first derivative changes sign around these points. Since you have two critical points, you're going to need 3 intervals.

Select a value from each of these intervals and use it to determine the sign of #f^'# for those respective intervals.

  • #(-oo,-4)#

#f^'(-5) = -6 * (-5 + 4) * (-5 - 1)#

#f^'(-5) = -6 * (-1) * (-6) = -36 -> color(red)("negative")#

  • #(-4,1)#

#f^(-1) = -6 * (-1 +4) * (-1 -1)#

#f^(-1) = -6 * 3 * (-2) = 36 -> color(green)("positive")#

  • #(1, oo)#

#f^'(2) = -6 * (2 + 4) * (2-1)#

#f^'(2) = -6 * 6 * 1 = -36 -> color(red)("negative")#

So, the first derivative changes sign twice. It first goes from negative to positive around #x=-4#, and then from positive to negative around #x=1#.

This means that the function switches from decreaing to increasing around #x=-4#, so this critical point is a local minimum.

Then the function switches from increasing to decreasing around #x=1#, so this critical point is a local maximum.

To get the actual coordinates of the local extrema, evaluate the function #f# in those two points

#f(-4) = -2(-4)^3 - 9 (-4)^2 + 24 (-4) + 40#

#f(-4) = 128 - 144 - 96 + 40 = -72#

and

#f(1) = -2 * 1^3 - 9 * 1^2 + 24 * 1 + 40#

#f(1) = -2 - 9 + 24 + 40 = 53#

Therefore, your function has

#color(green)((-4","-72)) -># local minimum

#color(green)((1","53)) -># local maximum