22  Continuity and smoothness

You have seen how various properties of a function—whether it is monotonic, how it slopes, whether it is concave up or down (or not at all), curvature, etc.—can be related to the first and second derivatives of the function.

In this chapter, we will elaborate on continuity, one of the ideas introduced in ?sec-word-descriptions, and use the concept of continuity to characterize functions in a new way: their smoothness.

22.1 Continuity

The intuition behind continuity is simple: If you can draw the graph of a function without lifting the pencil from the paper, the function is continuous.

Continuity can be an important attribute of a modeling function. Often, we expect that a small change in input produces a small change in output. For instance, if your income changes by one penny, you would expect your lifestyle not to change by much. If the temperature of an oven changes by 1 degree, you don’t expect the quality of the cake you are baking to change in any noticeable way.

Figure 22.1: The Heaviside function is piecewise constant with a discontiuity at \(x=0\).

All of our basic modeling functions are continuous over their entire input domain.1 To illustrate discontinuity we will consider piecewise functions, as introduced in Section 9.4. The Heaviside function, graphed in Figure 22.1 is discontinuous.

Drawing the graph of the Heaviside function \(H(x)\) involves lifting the pencil at \(x=0\).

In contrast, the piecewise ramp function (Figure 22.2) is continuous; you don’t need to lift the pencil from the paper to draw the ramp function.

Figure 22.2: The ramp function is a continuous piecewise function.

Imagine that you were constructing a model of plant growth as a function of the amount of water (in cc) provided each day. The plant needs about 20 cc of water to thrive. You use the Heaviside function for the model, say \(H(W-20)\), where an output of 1 means the plant thrives and a output 0 means the plant does not. The model implies that with 20.001 cc of water, the plant will thrive. But providing only 19.999 cc of water, the plant will die. In other words, a very small change in the input can lead to a large change in the output.

Common sense suggests that a change of 0.002 cc in the amount of water—a small fraction of a drop, 2 cubic millimeters of volume—is not going to lead to a qualitative change in output. So you might prefer to use a sigmoid function as your model rather than a Heaviside function.

On the other hand, sometimes a very small change in input does lead to a large change in output. For instance, a sensible model of the hardness of water as a function of temperature would include a discontinuity at \(32^\circ\)F, the temperature at which water turns to ice.

One of author Charles Dickens’s famous characters described the relationship between income, expenditure, and happiness this way:

Annual income 20 pounds, annual expenditure 19 [pounds] 19 [shillings] and six [pence], result happiness. Annual income 20 pounds, annual expenditure 20 pounds ought and six, result misery.” — the character Wilkins Micawber in David Copperfield

Macawber referred to the common situation in pre-20th century England of putting debtors in prison, regardless of the size of their debt. Macawber’s statement suggests he would model happiness as a Heaviside function \(H(\text{income}- \text{expenditure})\).

Whenever the output of a function is a binary (yes-or-no) value, you can anticipate that a model will involve a discontinuous function.

22.2 Discontinuity

Recall the logical path that led us to the idea of the derivative of a function. We started with the differencing operator, which takes as input a function and a “small” value of \(h\):

\[{\cal D}_x f(x) \equiv \frac{f(x+h) - f(x)}{h}\]

Then, through algebraic manipulation and numerical experiments we found that, once \(h\) is small enough, the graph of the slope function \({\cal D}_x f(x)\) does not depend on \(h\). And so we defined a function \(\partial_x f(x)\) where \(h\) does not play a role, writing \(\lim_{h\rightarrow 0}\) to remember our care to never divide by zero.

\[\partial_x f(x) \equiv \lim_{h\rightarrow 0} \frac{f(x+h) - f(x)}{h}\ .\]

Conveniently, we found that the derivatives of the pattern-book functions can be written in terms of the pattern-book functions without making any reference to \(h\). For instance:

  • \(\partial_x \ln(x) = 1/x\) No \(h\) appears.
  • \(\partial_x e^x = e^x\) No \(h\) appears
  • \(\partial_x x^p = p\, x^{p-1}\) No \(h\) appears.
  • and so on.

With discontinuous functions, we have no such luck. Figure 22.3 shows what happens if we compute \({\cal D}_x H(x)\), the derivative of the Heaviside function, for smaller and smaller \(h\).

H <- makeFun(ifelse(x >=0, 1, 0) ~ x)
DH01   <- makeFun((H(x + 0.1) - H(x))/0.1 ~ x)
DH001  <- makeFun((H(x + 0.01) - H(x))/0.01 ~ x)
DH0001 <- makeFun((H(x + 0.001) - H(x))/0.001 ~ x)
slice_plot(DH01(x) ~ x, bounds(x=-0.02:0.02),
           npts=500, color="red", size=2) %>%
  slice_plot(DH001(x) ~ x,
           color="darkgreen", npts=500, size=3, alpha=0.5) %>%
  slice_plot(DH0001(x) ~ x,
           color="blue", npts=500, alpha=0.5, size=2) 

Figure 22.3: \({\cal D}_x H(x)\), the slope function of the discontinuous Heaviside, function, depends on the value of \(h\) used for the slope function. (Red: \(h=0.1\); Green: \(h=0.01\); Blue \(h=0.001\))

Differencing the Heaviside function produces very different functions depending on the value of \(h\). The bump near \(x=0\) gets taller and taller as \(h\) gets smaller. Mathematicians would describe this situation as \[\lim_{h\rightarrow0}{\cal D}_x H(x=0) \equiv \lim_{h\rightarrow 0} \frac{H(0+h) - H(0)}{h}\ \ \ \text{does not exist}.\] Of course, for any given value of \(h\), e.g. \(h=0.000001\), the function \({\cal D}_x H(x)\) has a definite shape. But that shape keeps changing as \(h \rightarrow 0\), so we cannot point to any specific shape as the “limit as \(h \rightarrow 0\).”

Since there is no convergence in the shape of \({\cal D}_x H(0)\) as \(h\) gets smaller, it is fair to say that the Heaviside function does not have a derivative at \(x=0\). But away from \(x=0\), the Heaviside function has a perfectly sensible derivative: \(\partial_x H(x) = 0\) for \(x\neq 0\). But there is no derivative at \(x=0\).

22.3 Smoothness

Smoothness is a different concept than continuity, although the two are related. Most simply, any discontinuous function is not smooth at any input where a discontinuity occurs. But even the continuous ramp function is not smooth at the start of the ramp. Intuitively, imagine you were sliding your hand along the ramp function. You would feel the crease at \(x=0\).

A function is not smooth if the derivative of that function is discontinuous. For instance, the derivative of the ramp function is the Heaviside function, so the ramp is not smooth at \(x=0\).

All of our basic modeling functions are smooth everywhere in their domain. In particular, the derivatives of the basic modeling functions are continuous, as are the second derivative, third derivative, and so on down the line. Such functions are called C-infinity, written \(C^\infty\). The superscript \(\infty\) means that every order of derivative is continuous.

You cannot tell from the plot that the second derivative is discontinuous. But if you were in a plane flying along that trajectory, you would feel a jerk as you crossed \(x=0\).

Mathematicians quantify the “smoothness” of a function by looking at the function’s continuity and the continuity of its derivatives. Smoothness is assessed on a scale \(C^0, C^1, C^2, \ldots, C^\infty\).

  • \(C^0\): the function \(f()\) is continuous. Intuitively, this means that the function’s graph can be drawn without lifting the pencil from the paper.
  • \(C^1\): the function \(f()\) has a derivative over its entire domain and that derivative \(\partial_x f(x)\) is continuous. (See ?fig-c1-function for an example.)
  • \(C^2\): the function \(\partial_x f(x)\) has a derivative over its entire domain and that derivative is continuous. In other words, \(\partial_{xx} f(x)\) exists and is continuous.
  • \(C^n\): Like \(C^2\), but we are talking about the \(n\)th-derivative of \(f(x)\) existing and being continuous.
  • \(C^\infty\): Usually when we denote a sequence with an infinite number of terms, we write down something like \(C^0, C^1, C^2, \ldots\). It would be entirely valid to do this in talking about the \(C^n\) sequence. But many of the mathematical functions we work with are infinitely differentiable, that is \(C^\infty\).

Examples of \(C^\infty\) functions:

  • \(\sin(x)\): the derivatives are \(\partial_x \sin(x) = \cos(x)\), \(\partial_{xx} \sin(x) = -\sin(x)\), \(\partial_{xxx} \sin(x) =-\cos(x)\), \(\partial_{xxxx} \sin(x) =\sin(x)\), … You can keep going infinitely.

  • \(e^x\): the derivatives are \(\partial_x e^x = e^x\), \(\partial_{xx} e^x = e^x\), and so on.

  • \(x^2\): the derivatives are \(\partial_x x^2 = 2 x\), \(\partial_{xx} x^2 = 2\), \(\partial_{xxx} x^2 = 0\), … Higher order derivatives are all simply 0. Boring, but still existing.

Example of non-\(C^2\) functions: We see these often when we take two or more different \(C^\infty\) functions and split their domain, using one function for one subdomain and the other(s) for other subbounds(s).

  • \(|x|\), the absolute value function. \(|x|\) is a pasting together of two \(C^\infty\) functions: \[|x| \equiv \left\{\begin{array}{rcl}+x & \text{for} & 0 \leq x\\-x&\text{for}& \text{otherwise}\end{array} \right.\ .\] The domain is split at \(x=0\).

For engineering and design problems, smoothness means something substantially different than described by the mathematical concepts above. In Chapter Chapter 48 we will introduce cubic splines which are continuous functions defined by a finite set of coordinate pairs: two variables of a data frame. Each line of the data frame specifies a “knot point.” The spline consists of ordinary cubic polynomials drawn piecewise between consecutive knot points. At a knot point, the cubics on either side have been arranged to have their first and second derivatives match. Thus, the first two derivatives are continuous. The function is at least \(C^2\). The second derivative of a cubic is a straight-line function, so the second derivative of a cubic spline is a series of straight-line functions connected at the knot points. The second derivative does not itself have a derivative at the knot points. So, a cubic spline cannot satisfy the requirements for \(C^3\); it is \(C^2\).

22.4 Exercises

Exercise 22.01

  1. Draw the graph of a function from your imagination over the domain \(-5 \leq x \leq 5\). The function should be continuous everywhere except at \(x = -2, 1, 3\).

  2. Draw the graph of a second function from your imagination over the same domain as in (1). The second function should be continuous everywhere in domain: no discontinuities. It should also have a derivative everywhere except at \(x = -2, 1, 3\).

Exercise 22.02

For the sketched functions below, decide what level of smoothness—\(C^0, C^1, C^2, ...\)— best describes the function. (We make no tricks in the drawings. Where a function looks like it is broken–that is, the function locally has a V-shape or a \(\Lambda\)-shape–it is meant to be broken.)

Part A What’s the smoothness level of function A(x)? (Hint: A quadratic function has a first derivative that changes with x but a second derivative that is constant for all x.)

discontinuous \(C^0\)\(C^1\)\(C^2\) or higher

Part B What’s the smoothness level of function B(x)?

discontinuous \(C^0\)\(C^1\)\(C^2\) or higher

Part C What’s the smoothness level of function C(x)?

discontinuous \(C^0\)\(C^1\)\(C^2\) or higher

Part D What’s the smoothness level of function D(x)?

discontinuous \(C^0\)\(C^1\)\(C^2\) or higher

Exercise 22.03

The ramp function is defined algebraically as

\[\text{ramp}(x) \equiv \left\{\begin{array}{ll}0 & \text{for}\ x < 0\\ x & \text{otherwise} \end{array}\right. \]

or in R as ::: {.cell layout-align=“center” fig.showtext=‘false’}

ramp <- makeFun(ifelse(x<0, 0, x) ~ x)

:::

Evaluate these three different forms for the definition of the instantaneous rate of change at \(x=0\) using \(h=0.1\).

  • version 1: \[{\cal D}_x f(x) \equiv \frac{f(x+h) - f(x)}{h}\]
  • version 2: \[{\cal D}_x f(x) \equiv \frac{f(x) - f(x-h)}{h}\]
  • version 3: \[{\cal D}_x f(x) \equiv \frac{f(x+h) - f(x-h)}{2 h}\]

Part A Do the three versions give different numerical results at \(x=0\) for \(h=0.01\)?

  1. They all give the same result.
  2. Versions 1 and 3 give the same result, but 2 is different.
  3. Versions 1 and 2 give the same result, but 3 is different.
  4. All three are different

Part B For much smaller \(h\) (say, \(h=0.0001\)), do the three versions give different numerical results at \(x=0\)?

Yes No

Exercise 22.04

Consider this function, defined piecewise:

  1. Write the R command to create this function. (Hint: Remember ifelse from Section 9.4.)

  2. Using a SANDBOX, plot \(h(x)\) over the domain \(-1 \leq x \leq 1\), then sketch a copy of the graph on your paper.

  3. Create the function \(\partial_x h(x)\) by differentiating separately each piece of the piecewise function \(h()\). Write down \(\partial_x h(x)\) using mathematical notation similar to the definition of \(h(x)\) given above.

  4. Sketch a graph of \(\partial_x h(x)\) over the domain \(-1 \leq x \leq 1\). You’re welcome to use a SANDBOX, but you may be able to figure out the shape of the graph yourself.

  5. The shape of the function you sketched in (4) has a name, given in the text in Section @ref(continuity). What is that name?

Now you will do much the same as in items (3), (4), and (5), but instead of the first derivative \(\partial_x h(x)\), create, sketch, and name the second derivative \(\partial_{xx} h(x)\).

  1. Create and write down \(\partial_{xx} h(x)\) in mathematical notation.

  2. Sketch \(\partial_{xx} h(x)\)

  3. Classify the smoothness of \(h(x)\) using the following table:

Smoothness Criterion
\(C^0\) \(\partial_x h(x)\) is discontinuous
\(C^1\) \(\partial_x h(x)\) is continuous
\(C^2\) \(\partial_{xx} h(x)\) is continuous
\(C^3\) \(\partial_{xxx} h(x)\) is continuous
\(\vdots\) and so on.
\(C^\infty\) All orders of derivative of \(h(x)\) are continous.

Exercise 22.05

Consider the following functions \(f_A(x)\), \(f_B(x)\), … all of which involve a domain split at \(x=0\) and the pasting together of two individually \(C^\infty\) functions:

Part A How smooth is \(f_A(x)\)?

discontinuous \(C^0\)\(C^1\)\(C^2\)\(C^3\)\(C^\infty\)

Part B How smooth is \(f_B(x)\)?

discontinuous \(C^0\)\(C^1\)\(C^2\)\(C^3\)\(C^\infty\)

\[f_C(x) \equiv \left\{\begin{array}{cl}{x^3} & \text{for}\ 0 \leq x\\x^3& \text{otherwise}\end{array} \right.\]

Part C How smooth is \(f_C(x)\)?)

discontinuous \(C^0\)\(C^1\)\(C^2\)\(C^3\)\(C^\infty\)

Part D How smooth is \(f_D(x)\)?

discontinuous \(C^0\)\(C^1\)\(C^2\)\(C^3\)\(C^\infty\)

Part E How smooth is \(f_E(x)\)?

discontinuous \(C^0\)\(C^1\)\(C^2\)\(C^3\)\(C^\infty\)

Part F How smooth is \(f_F(x)\)?

discontinuous \(C^0\)\(C^1\)\(C^2\)\(C^3\)\(C^\infty\)

Part G How smooth is \(f_G(x)\)?

discontinuous \(C^0\)\(C^1\)\(C^2\)\(C^3\)\(C^\infty\)

Part H How smooth is \(f_H(x)\)?

discontinuous \(C^0\)\(C^1\)\(C^2\)\(C^3\)\(C^\infty\)


  1. The domain of the function \(1/x\) is the whole number line, except 0, where the positive and negative branches fail to meet up.↩︎