document.write( "Question 999360: What is the process for finding max/min for functions?
\n" ); document.write( "I have this function: f(x) = 2x^3 - 3x^2 + 6. Find the max/min values of f on [-1,1]
\n" ); document.write( "I know that I must find all the critical points for and that is when f'=0 and the bounded pts, so, x=-1,1.
\n" ); document.write( "Work:
\n" ); document.write( "f'(x) = 6x^2 - 6x = 0
\n" ); document.write( "f'(x) = 6x(x-1) = 0
\n" ); document.write( "//6x = 0
\n" ); document.write( "//x=0
\n" ); document.write( "f'(x) = x-1 = 0
\n" ); document.write( "f'(x) = x = -1
\n" ); document.write( "Hence, x = -1,1,0,-1
\n" ); document.write( "So, these are all my critical values
\n" ); document.write( "Then I take the second derivative:
\n" ); document.write( "f\"(x) = 12x - 6
\n" ); document.write( "then I plug the critical values into the second derivative, then thing that bothers me is I don't understand is why this produces a relevant result.
\n" ); document.write( "Work:
\n" ); document.write( "f\"(x) = 12x - 6
\n" ); document.write( "f\"(0) = 12(0) - 6 = -6 <0, MIN
\n" ); document.write( "f\"(-1) = 12(-1) - 6 = -18 <0, MIN
\n" ); document.write( "f\"(1) = 12(1) - 6 = +6 >0, MAX\r
\n" ); document.write( "\n" ); document.write( "At this point I hit a wall. Am I suppose to plug these output values of the 2nd derivative back into the original function. Or am I completely missing steps?\r
\n" ); document.write( "
\n" ); document.write( "\n" ); document.write( "Also, another confusion I have is do the critical values represent x coordinates and the max and min represent the y coordinate and together they give (x,y)?\r
\n" ); document.write( "\n" ); document.write( "Thank you for any and all help!
\n" ); document.write( "

Algebra.Com's Answer #617032 by ikleyn(52781)\"\" \"About 
You can put this solution on YOUR website!
What is the process for finding max/min for functions?
\n" ); document.write( "I have this function: f(x) = 2x^3 - 3x^2 + 6. Find the max/min values of f on [-1,1]
\n" ); document.write( "I know that I must find all the critical points for and that is when f'=0 and the bounded pts, so, x=-1,1.
\n" ); document.write( "Work:
\n" ); document.write( "f'(x) = 6x^2 - 6x = 0
\n" ); document.write( "f'(x) = 6x(x-1) = 0
\n" ); document.write( "//6x = 0
\n" ); document.write( "//x=0
\n" ); document.write( "f'(x) = x-1 = 0
\n" ); document.write( "f'(x) = x = -1
\n" ); document.write( "Hence, x = -1,1,0,-1
\n" ); document.write( "So, these are all my critical values
\n" ); document.write( "------------------------------------------\r
\n" ); document.write( "
\n" ); document.write( "\n" ); document.write( "Hello,\r
\n" ); document.write( "\n" ); document.write( "till this point you acted absolutely right.
\n" ); document.write( "In this way you found local maximums and minimums  (or,  at least,  the points that are candidates for local maximum \r
\n" ); document.write( "\n" ); document.write( "and minimum). \r
\n" ); document.write( "
\n" ); document.write( "\n" ); document.write( "In addition,  you need understand these two points:\r
\n" ); document.write( "
\n" ); document.write( "\n" ); document.write( "1.  In order to make a qualified suggestion on global maximum and minimum,  you need to check and to compare  also  \r
\n" ); document.write( "\n" ); document.write( "the  values of the function at the ends of the given segment.  The derivatives can be non-zero there;  nevertheless, \r
\n" ); document.write( "\n" ); document.write( "the global maximum and/or minimum can be located there. \r
\n" ); document.write( "
\n" ); document.write( "\n" ); document.write( "2.  Zero derivative of the given function do not necessary provides local maximum or minimum.  They provide only  candidates  \r
\n" ); document.write( "\n" ); document.write( "to this role.  An example is the function \"x%5E3\"  at  x = 0.  It has the zero derivative at this point,  but it is neither maximum \r
\n" ); document.write( "\n" ); document.write( "nor minimum. See the plot below.\r
\n" ); document.write( "\n" ); document.write( "\n" ); document.write( " \r\n" ); document.write( " \r\n" ); document.write( " \r\n" ); document.write( " \r\n" ); document.write( "\n" ); document.write( "
\r
\n" ); document.write( "\n" ); document.write( "\"graph%28+330%2C+330%2C+-5.5%2C+5.5%2C+-5.5%2C+5.5%2C%0D%0A++++++++++x%5E3+%0D%0A%29\"\r
\n" ); document.write( "
\n" ); document.write( "\n" ); document.write( "          Figure. Plot y = \"x%5E3\"\r
\n" ); document.write( "\n" ); document.write( "
\r
\n" ); document.write( "\n" ); document.write( "I am continuing.\r
\n" ); document.write( "\n" ); document.write( "----------------------------------------------------------------
\n" ); document.write( "Then I take the second derivative:
\n" ); document.write( "f\"(x) = 12x - 6
\n" ); document.write( "then I plug the critical values into the second derivative, then thing that bothers me is I don't understand is why this produces a relevant result.
\n" ); document.write( "Work:
\n" ); document.write( "f\"(x) = 12x - 6
\n" ); document.write( "f\"(0) = 12(0) - 6 = -6 <0, MIN
\n" ); document.write( "f\"(-1) = 12(-1) - 6 = -18 <0, MIN
\n" ); document.write( "f\"(1) = 12(1) - 6 = +6 >0, MAX
\n" ); document.write( "At this point I hit a wall. Am I suppose to plug these output values of the 2nd derivative back into the original function. Or am I completely missing steps? \r
\n" ); document.write( "\n" ); document.write( "Also, another confusion I have is do the critical values represent x coordinates and the max and min represent the y coordinate and together they give (x,y)?
\n" ); document.write( "Thank you for any and all help!
\n" ); document.write( "----------------------------------------------------------------\r
\n" ); document.write( "
\n" ); document.write( "\n" ); document.write( "The second derivatives helps you and serves you to determine if the plot of the function is convex downward or concave upward. \r
\n" ); document.write( "
\n" ); document.write( "\n" ); document.write( "If the second derivative is positive then the function  (or the plot of the function)  is convex downward  (like   \"x%5E2\").\r
\n" ); document.write( "
\n" ); document.write( "\n" ); document.write( "If the second derivative is negative then the function (or the plot of the function) is concave upward  (like   \"-x%5E2\").\r
\n" ); document.write( "
\n" ); document.write( "\n" ); document.write( "So,  the second derivative helps you to determine, if your candidate to the local minimum or the local maximum is real local \r
\n" ); document.write( "\n" ); document.write( "minimum or local maximum.\r
\n" ); document.write( "
\n" ); document.write( "\n" ); document.write( "Is this explanation clear to you?\r
\n" ); document.write( "
\n" ); document.write( "\n" ); document.write( "Please let me know. You may put your answer in the  \"Comments for students\"  section. \r
\n" ); document.write( "\n" ); document.write( "If you do,  do not forget to put the number of the problem  (# 999360)  in order I could identify it.\r
\n" ); document.write( "
\n" ); document.write( "\n" ); document.write( "Thank you.\r
\n" ); document.write( "
\n" ); document.write( "\n" ); document.write( "
\n" ); document.write( "
\n" );