Curve sketching for calculus

[This article was first published on Cartesian Faith » R, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

This is a short post for my students in the CUNY MS Data Analytics program on sketching curves in R.

Graphing functions

Suppose we want to find the derivative of \frac{-4x^5 + 3x^2 - 5}{x^2} . In addition to computing the derivative analytically, it might be interesting to graph this function to see what it looks like. When graphing a function, I like to generate a sequence of x values and then pass it to the function. Since R is vectorized, there is no need to write a loop. This is because for vectors (aka sequences) arithmetic operators work on an element-wise basis. In other words, they are equivalent to the higher order function map.

f <- function(x) (-4*x^5 + 3*x^2 - 5) / x^2
xs <- -10:10
plot(xs, f(xs), type='l')

This gives us the graph below. You may notice that there is a big gap between -1 and 1. Why is this? The short answer is that 0 is undefined for f. While this is correct, the slightly longer answer is that the spacing of the x values is too big at integer intervals. Hence the gap is 2 units wide and is not representative of the actual function. This is important to remember as incorrect scales can often lead to misleading results.

integer intervals

Let’s try again with a spacing of 0.1. What’s the best way to do this? If we want to use the syntactic sugar, then we need to scale the interval ourselves. For our example the scaling is easy. For the more general case, what is the best way to model the scaling? Getting back to the original discussion, here are two equivalent alternatives.

xs <- (-100:100) / 10
xs <- seq(-10, 10, by=0.1)

Note that in the first form the parentheses are mandatory due to the operator precedence rules of R.

integer intervals 1

Working with this interval, we get a more precise representation of the function. However, I still have this uneasy feeling that I don’t really know what this function looks like near 0. Let’s “zoom” into 0 by increasing the resolution by another order of magnitude. At a spacing of 0.01, this function looks very different from what we started with.

integer intervals 2

Exercises

  • Write a function that takes an integer sequence and scales it to a given precision. For example, given the sequence -5:5, write a function s such that s(-5:5, 0.1) returns the sequence c(-5.0, -4.9, -4.8, …, 4.9, 5.0). Do not use the seq function in your answer.
  • Reproduce the graph of f within the domain [-4, 4] and precision 0.2 using the function above to generate the x values.

Composing the derivative

What do these graphs tell us about the derivative? It appears mostly well-behaved except when x=0 . It’s straightforward to use the product rule to compute the derivative. Here we let g(x) = -4x^5 + 3x^2 - 5  and h(x) = x^{-2}. Why use the product rule instead of the quotient rule? It’s really a matter of style. Personally, it’s easier for me to remember fewer rules.

\begin{array}{lcl}  (g(x) h(x))' & = & g'(x) h(x) + h'(x) g(x) \\  & = & (-20x^4 + 6x) x^{-2} + (-2x^{-3}) (-4x^5 + 3x^2 - 5) \\  & = & -20x^2 + 6x^{-2} + 8x^2 - 6x^{-1} + 10x^{-3} \\  & = & -12x^2 - 6x^{-1} + 6x^{-2} + 10x^{-3}  \end{array}

Returning to the original motivation for this discussion, the question is whether these curves can shed any light on the behavior of the derivative for this function. Now that we’ve deconstructed f = gh, what do these two functions look like?

g <- function(x) -4*x^5 + 3*x^2 - 5
h <- function(x) x^-2

xs <- seq(-2, 2, by=0.02)
plot(xs, g(xs), type='l')
lines(xs, h(xs), col='blue')

As expected, g looks like a classic odd-order polynomial while h behaves according to a negative exponent. What might be surprising is that h is positive \forall x \in \Re . The function f goes to negative infinity at 0 because g is slightly negative at 0, which is not obvious when first glancing at this graph.

h and g

What else does this graph tell us? It is useful to remember that the original function f is the product of these two functions. A first observation is that around |x| = 2, g begins to grow at a rate much faster than h shrinks. Similarly, when |x| < \frac{1}{2} it appears that h grows very fast. Graphically then, it seems that the derivative of g is going to be dominant when

Let’s write functions to represent the first derivative and overlay them as dotted lines onto the graph.1

g1 <- function(x) -20*x^4 + 6*x
h1 <- function(x) -2 * x^-3

lines(xs, g1(xs), lty=3)
lines(xs, h1(xs), col='blue', lty=3)

Now things are getting interesting. It takes a bit more effort to picture what the derivative of f looks like given these four curves. From a graphical perspective the product rule tells us to sum the product of the dotted black line and the solid blue line with the product of the dotted blue line and the solid black line.

h and g derivatives

To make it easier, here are the two products (g’h in orange and h’g in brown) along with the sum, which of course is f’ (in black).

f derivative

Decomposing a function into smaller functions can be a useful exercise when looking to assess the relative impact of the constituent functions. Working from the opposite direction, it can also help in function approximation. Usually it is easier to build up a complex function from smaller functions rather than starting with a complicated function. I will explore this idea in a future post.

Exercises

  • Reproduce the last graph

The derivative and constants

Here is another example of using graphs to help illuminate the behavior of functions. Let’s look at why a constant has a derivative of 0. Consider the function f(x) = 2x^2 - 4x + 5. The derivative of this function is 4x - 4. What about the function f(x) + 10? Intuitively we wouldn’t expect the derivative to be any different. In fact, since the derivative is linear, the derivative is simply f'(x) + 0. We can apply this same logic to f itself and deconstruct this function into g(x) = 2x^2 - 4x and h(x) = 5. Hence, any constant added to a function has no effect on the derivative.

Graphically, it is easy to see that the derivative of f is the same as g since the shift is merely a linear combination of the g and h. Why is the derivative of h (a constant function in x) 0? A constant value is telling us that the function is independent of x. Consequently, any change in x has no effect on the constant function. Therefore the derivative of the function with respect to x should be 0 everywhere. This observation also helps illustrate partial derivatives in multivariate calculus and why certain terms become 0.

constant

While vertical shifts have no effect on the derivative, horizontal shifts do. Why is this? Simply put, it is because a horizontal shift modifies each x value, so this change is dependent on x. A student asked whether the derivative is constant if you account for the horizontal shift. How do we answer this? Let’s define a modified function g(x,n) = 2(x-n)^2 - 4(x-n) + 5 . If we take the partial derivative of g with respect to x we get g'(x,n) = 4(x-n) - 4. Indeed, if we think about how the chain rule works, each instance of (x-n) will be preserved such that g'(x, n) = f'(x-n).

Notes

[1] See this handy reference for plot styles


To leave a comment for the author, please follow the link and comment on their blog: Cartesian Faith » R.

R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Never miss an update!
Subscribe to R-bloggers to receive
e-mails with the latest R posts.
(You will not see this message again.)

Click here to close (This popup will not appear again)