Finding Critical Points - CriticalPoints.nb

Finding the Critical Points

Define the function, let's say f(x), then find the solutions of f '(x)=0.

This method will obviously only find critical points, where the first derivative equals 0. Mathematica is not very helpful in finding critical points where the first derivative fails to exist.

In[1]:=

CriticalPoints_1.gif

Out[1]=

CriticalPoints_2.gif

In[2]:=

CriticalPoints_3.gif

Out[2]=

CriticalPoints_4.gif

Here is another example:

In[3]:=

CriticalPoints_5.gif

Out[3]=

CriticalPoints_6.gif

In[4]:=

CriticalPoints_7.gif

Out[4]=

CriticalPoints_8.gif

Using the Second Derivative Test

Here is our last example again:

In[5]:=

CriticalPoints_9.gif

Out[5]=

CriticalPoints_10.gif

In[6]:=

CriticalPoints_11.gif

Out[6]=

CriticalPoints_12.gif

Next, we compute the second derivative at x=-2 and at x=0:

In[7]:=

CriticalPoints_13.gif

Out[7]=

CriticalPoints_14.gif

Here is its numerical value:

In[8]:=

CriticalPoints_15.gif

Out[8]=

CriticalPoints_16.gif

In[9]:=

CriticalPoints_17.gif

Out[9]=

CriticalPoints_18.gif

Since the second derivative is negative at x=-2, x=-2 is a local maximum; at x=0, the second derivative is positive, henceforth a local minimum occurs at x=0. Let's check this graphically:

In[10]:=

CriticalPoints_19.gif

Out[10]=

CriticalPoints_20.gif

The Graphical Approach

If Mathematica is unable to solve the equation f '(x)=0 algebraically, we can still graph the first derivative to estimate where it is equal to 0. Here is an example (Remember that "Log[x]" denotes the natural logarithm!)

In[11]:=

CriticalPoints_21.gif

Out[11]=

CriticalPoints_22.gif

In[12]:=

CriticalPoints_23.gif

Out[12]=

CriticalPoints_24.gif

The following graph depicts f(x) in red, and f '(x) in blue, for x-values between 0 and 10. We can see that in this example critical points occur at about x=0.4, x=2.1, x=4.8 and x=7.9.

In[13]:=

CriticalPoints_25.gif

Out[13]=

CriticalPoints_26.gif

An Application: Snell's Law

This example refers to Chapter 5.5, Problems 21 and 22. With the notation of Figure 5.74, we have to minimize the time t(x) needed for the light ray to travel from Point A to Pint B.
t(x) is given by

In[14]:=

CriticalPoints_27.gif

Out[14]=

CriticalPoints_28.gif

In[15]:=

CriticalPoints_29.gif

Out[15]=

CriticalPoints_30.gif

It is quite hard to solve the equation t '(x)=0 for x, but if you read the problem carefully, you will see that that might not be necessary to do. Evaluate the next command only if you have some spare time to wait for the answer.

In[16]:=

CriticalPoints_31.gif

Instead we will solve for CriticalPoints_32.gif:

In[17]:=

CriticalPoints_33.gif

Out[17]=

CriticalPoints_34.gif

... and thus the quotient  CriticalPoints_35.gif:

In[18]:=

CriticalPoints_36.gif

Out[18]=

CriticalPoints_37.gif

Note that the right side is indeed the quotient CriticalPoints_38.gif.

Why all this? We now know that the critical point satisfies Snell's Law. But is the crtitical point an absolute minimum?
Let's look at the second derivative.

In[19]:=

CriticalPoints_39.gif

Out[19]=

CriticalPoints_40.gif

In[20]:=

CriticalPoints_41.gif

Out[20]=

CriticalPoints_42.gif

Written like this you can see that the second derivative will always be positive, and thus the solution given by Snell's Law is indeed an absolute minimum.

Etc.

Spikey Created with Wolfram Mathematica 8.0