The Science of Programming/Slippery Slopes

From Wikibooks, open books for an open world
Jump to navigation Jump to search

In Chapter X of CME, SPT states that the derivative (at a given point) can be viewed as the slope of the tangent to a curve (at that point). Let's use our software to examine slopes.

Consider parabolas of the form:

   

The h variable induces a rightward shift of the parabola if h is positive and a leftward shift if h is negative. The v variable induces an upward shift if positive and a downward shift if negative. Thus, these curves bottom out at the point . For and , we get:

   
   
   
   
   

Plotting the parabola yields:

We can see from the plot that when , the curve bottoms out and the tangent at the point should be horizontal, having a slope of zero. To the right of that point, the slope rises to the left, so the derivative in that area should be positive. To the left of the bottom point, the slope rises to the left, so the derivative in that area should be negative.

To confirm our intuition, we shall encode the parabola as a sum of terms:

   var y = term(1,:x,2) minus term(6,:x,1) plus term(10,:x,0);

and take the derivative:

   var y' = y . diff(:x);

Let's look at y and its derivative at :

   sway> y . value(2)
   INTEGER: 2
   sway> y . value(3)
   INTEGER: 1
   sway> y . value(4)
   INTEGER: 2
   sway> y' . value(2)
   INTEGER: -2
   sway> y' . value(3)
   INTEGER: 0
   sway> y' . value(4)
   INTEGER: 2

Just as we suspected.

Solving problems[edit | edit source]

Let's take a break from programming and use the software we've been given to solve some problems given in CME.

Questions[edit | edit source]

Footnotes[edit | edit source]


Working on the Chain Gang · Peaks and Valleys