Chap 26 Exercises
Loading webR...
Exercise 1 Figure 1 shows a somewhat complex function with two inputs. The labels A, B, C, D mark some possible reference points
For each of the following graphs, say what kind of two-input polynomial approximation is being made and which reference point the approximation is centered on.
- What is the order of approximation in graph (I)?
question id: approx-blue-1
- Do some detective work. What is the reference position
for approximation in graph (I)?
question id: approx-blue-2
- What order approximation in graph (II)?
question id: approx-blue-3
- What is the reference position
for approximation in graph (II)?
question id: approx-blue-4
- What order approximation in graph (III)?
question id: approx-blue-5
- What is the reference position
for approximation in graph (III)?
question id: approx-blue-6
- What order approximation in graph (IV)?
question id: approx-blue-7
- What is the reference position
for approximation in graph (IV)?
question id: approx-blue-8
Exercise 2 Figure 2 shows a function
Each of the graphs that follow show an approximation to
- What order approximation in graph (I)?
question id: approx-orange-1
- What is the reference position
in Figure 2 for the approximation in graph (I)?
question id: approx-orange-2
- What order approximation in graph (II)?
question id: approx-orange-3
- What is the reference position
Figure 2 for the approximation in graph (II)?
question id: approx-orange-4
`
- What order approximation in graph (III)?
question id: approx-orange-5
- What is the reference position
in Figure 2 for the approximation in graph (III)?
question id: approx-orange-6
- What order approximation in graph (IV)?
question id: approx-orange-7
- What is the reference position
in Figure 2 for the approximation in graph (IV)?
question id: approx-orange-8
- What order approximation in graph (V)?
question id: approx-orange-9
- What is the reference position
Figure 2 for the approximation in graph (V)?
question id: approx-orange-10
Exercise 3 The Taylor polynomial for
In the above formula, the center
Having a center is not a requirement for a Taylor polynomial.
There is a center,
There is a center,
question id: birch-lie-sheet
Exercise 4 In this exercise, youβre going to be looking at the shape of contour lines very close to a reference point. The graph shows which function we will be examining. The contours are unlabeled, to avoid distracting you with numbers; we are interested in shapes. Four different reference points are marked, with these coordinates
label | x_0_ | y_0_ |
---|---|---|
A | -2.100 | 3.000 |
B | -0.400 | 2.500 |
C | -1.605 | 1.932 |
D | 1.265 | -2.725 |
For each of the four points A, B, C, D marked in Figure 3, we want to find the largest region size for which an approximation will be pretty good. What do we mean by βpretty good?β That if you switched to a smaller region size the result would look very much like what you saw at the larger region size.
The R/mosaic code in Active R chunk 1 plots out the function x0
, y0
). The extent of the locale is specified by size
. As shown initially, the location corresponds to the point labelled A Figure 3. The size is 1.0.
Looking locally, the function shape is much simpler than it appears globally. You can see this by running the code in Active R chunk 1 which displays the function in a small locale.
Now change size
to 0.5, run the code, and observe the shape of the function in this smaller locale. (Ignore the contour labels: just look at the shape of the contours.) If the shape is practically the same as before, we have reason to believe that the larger size was small enough to give a good local approximation. But if the shape is clearly different, the original size was not good enough. Pick a smaller size, 0.1 and check if the shape of the function is similar to what it was at 0.5. If so, 0.5 is small enough to give a good local approximation. If not β¦ pick a still smaller size. Keep going until two consecutive graphs show practically the same shape.
You can use this sequence of sizes, stopping when you have found a size that produces the same visual impression as the previous size.
Do this separately for each of the 4 locations A, B, C, and D.
1a) For reference point A how small should size
be so that the shape of the contours does not differ substantially from the shape at the previous size.
question id: approx-tan-1a
1b) For reference point A which phrase best describes the shape of the contours at the size you found in question (1a).
contours are straight and almost exactly parallel and evenly spaced
contours are straight, almost exactly parallel, but unevenly spaced.
contours are straight, but fan out a bit
contours are curved but concentric and evenly spaced
contours are curved and concentric, but unevenly spaced.
question id: approx-tan-1b
2a) For reference point B how small should size
be so that the shape of the contours does not differ substantially from the shape at the previous size.
question id: approx-tan-2a
2b) For reference point B which phrase best describes the shape of the contours at the size you found in question (2a).
contours are straight and almost exactly parallel and evenly spaced
contours are straight, almost exactly parallel, but unevenly spaced.
contours are straight, but fan out a bit
contours are curved but concentric and evenly spaced
contours are curved and concentric, but unevenly spaced.
question id: approx-tan-2b
3a) For reference point C how small should size
be so that the shape of the contours does not differ substantially from the shape at the previous size.
question id: approx-tan-3a
3b) For reference point C, which phrase best describes the shape of the contours at the size you found in question (3a).
contours are straight and almost exactly parallel and evenly spaced
contours are straight, almost exactly parallel, but unevenly spaced.
contours are straight, but fan out a bit
contours are curved but concentric and evenly spaced
contours are curved and concentric, but unevenly spaced.
question id: approx-tan-3b
4a) For reference point D how small should size
be so that the shape of the contours does not differ substantially from the shape at the previous size.
question id: approx-tan-4a
4b) For reference point D which phrase best describes the shape of the contours at the size you found in question (4a).
contours are straight and almost exactly parallel and evenly spaced
contours are straight, almost exactly parallel, but unevenly spaced.
contours are straight, but fan out a bit
contours are curved but concentric and evenly spaced
contours are curved and concentric, but unevenly spaced.
question id: approx-tan-4b
Exercise 5 Consider the model presented in MOSAIC Calculus Differentiation project on walking energetics about the energy expenditure while walking distance
We want
- What is the dimension of the parameter
?
question id: rooster-pink-1
- What is the dimension of
? (Hint: is the ratio of vertical to horizontal distance covered.)
question id: rooster-pink-2
- What is the dimension of the parameter
?
question id: rooster-pink-3
Exercise 6 Suppose we describe the spread of an infection in terms of three quantities:
infection rate with respect to time: the number of new infections per day the current number of people who are infectious, that is, currently capable of spreading the infection the number of people who are susceptible, that is, currently capable of becoming infectious if exposed to the infection.
All three of these quantities are functions of time. News reports in 2020 such as the one below routinely gave the graph of

On November 15, 2020,
But a basic strategy in modeling with calculus is to take a snapshot: Given
The low-order polynomial for
Your job is to figure out which, if any, terms can be safely deleted from the low-order polynomial. A good way to approach this is to figure out, using common sense, what
We know that if
question id: rooster-violet-1
Exercise 7 The βRule of 72β
For the quantitatively literate, systems showing exponential growth and decay are encountered almost every day and are usually presented as βpercent per yearβ rates. Some examples:
- Money. Credit card interest rates, bank interest rates, student loans. Your credit card might charge you 18% per year, your bank might pay you 0.3% on a savings account, βsubsidizedβ student loans are often around 7%.
- Population. Statistics are often given as βgrowth ratesβ in percent. For instance, in 2016-17, Coloradoβs population grew by an estimated 1.39% and Idaho by 2.2%. Illinoisβs population shrank by 0.26%, and Wyomingβs by 0.47%.
- Prices. Inflation rates are usually presented as percent.
- Home prices and medical costs. These are some of the largest expenses encountered by families and they typically grow. You might hear a statistic like, βRegional median home prices increased by 10% over the last year,β or βHealth insurance rates are increasing by 7% this year.β
In understanding the long-term consequences of such growth or decay, it can be helpful to frame the rate of growth not as a percentage, but as a doubling time (or halving time for decay).
Happily, there is an easy formula to approximate doubling (or halving) time directly from the percentage growth (or decay) rate. It is
Could you do this calculation in your head? Perhaps you could carry around a card with a graph for looking up the answer:
<- makeFun(log(2) / log(1 + r/100) ~ r)
doubling_time slice_plot(doubling_time(r) ~ r, domain(r = c(1,30)))
It is hard to be very precise in reading off values from such a graph. Instead, maybe we can simplify the formula.
A straight-line calculation is not going to match the doubling-time curve well. How about a quadratic approximation? Letβs make one centered on
When centering on doubling_time(5)
, the value of dr_doubling_time(5)
, and the value of drr_doubling_time(5)
.
- Whatβs the numerical value of
?
question id: rule-of-72-1
- Just by looking at the graph of
doubling_time(r)
figure out what will be the signs of and . What are they?
question id: rule-of-72-2
- Whatβs the numerical value of
? (Hint: Use theD()
operator to calculate the derivative ofdoubling_time()
with respect tor
. Then evaluate that function at .)
question id: rule-of-72-3
- Whatβs the numerical value of
? (Hint: Again, useD()
to find the 2nd derivative with respect tor
. Then evaluate that function at .
question id: rule-of-72-4
Using the numerical values for slice_plot()
commands with a pipe |>
. You can give slice_plot()
a color = "orange3"
argument.)
- Comparing the actual
and your quadratic approximation, over what domain of do the functions match pretty well? Choose the best of these answers.
question id: rule-of-72-5
What weβve got with this quadratic approximation constructed from derivatives of
Occasionally, there are other simple functions that give a good approximation. The one for interest rates is called the βRule of 72β. The function is
- Comparing the actual
and the Rule of 72 function, over what domain of do the functions match pretty well? Choose the best of these answers.
question id: rule-of-72-6
- Compare numerically the actual
and the Rule of 72 function for an interest rate of (per year). How many years different are the two answers.
question id: rule-of-72-7
Exercise 8 (Partial derivatives algebraically) The model we developed for the speed of a bicycle
- The complete second-order polynomial with two inputs has six terms. Which one is missing in
question id: daily-digital-33-QA1
- Which of these is
?
question id: daily-digital-33-QA2
- Which of these is
?
question id: daily-digital-33-QA
- Which of these is
?
question id: daily-digital-33-QA4
- Which of these is
?
question id: daily-digital-33-QA5
Bicycling with missing terms
This activity is about the consequences of selecting terms in a low-order polynomial model. The context is the model of bicycle speed as a function of slope
First, we make-up some data to use for fitting.
Then, for a given selection of model terms, weβll fit a low-order polynomial model and display the model in three different ways.
- The coefficients on the model
- A contour plot of the model
- A slice plot showing speed as a function of gear for three different slopes of road.
In order to facilitate (iii), here is a function, bike_plot()
, defined for your convenience, that takes three slices through a function of two inputs and plots them in one frame.
Active R chunk 3 contains all the steps needed to fit and display a model. The particular model shown includes the interaction term and the quadratic term in g
.
In the following questions, youβre going to remove terms (such as + I(s*g)
from the model formula) to see what happens to the model. In one of the questions, you will extend the formula with a - 1
(which suppresses the intercept term that is ordinarily included in models).
For each of the following essays, copy the code in Active R chunk 3 to the new, empty chunk, then modify the model specification as explained in the essay prompt.
Essay 1: The lm()
function automatically adds an "intercept" term to the model. You can suppress this by ending the model formula with -1
. Explain briefly what happens when you suppress the intercept and to what extent that model makes sense for the bicycle situation.
Essay: The interaction term in the model is included by the + I(s*g)
component of the model formula. (Donβt get confused: "Interaction" and "intercept" are completely different things.) Take out the interaction term, refit and re-display the model. Explain briefly what happens when you suppress the interaction term and to what extent that model makes sense for the bicycle situation.
Essay 3: Suppose you add in a quadratic term in s
to the model. Explain briefly whether this changes the model a lot or not. Also, look at the coefficients found by lm()
for this extended model. What about those coefficients accounts for whether the model changed by a little or a lot.
Now letβs look at things a different way. Instead of each slice holding road slope constant and showing velocity as a function of gear, define a new function bike_plot2()
which holds gear constant in each slice and varies road slope instead. You can do this by copying and modifying the bike_plot()
function defined in Active R chunk 4. Do this
Essay 4: Re-run the various model-display chunks, including the new bike_plot2()
display. Explain in everyday terms what this new plot displays about the models and say whether you think it makes sense.