y
dy
x
t
question id: wolf-beat-book-1
π‘ Loading...
Exercise 1
y
dy
x
t
question id: wolf-beat-book-1
y
dy
x
t
question id: wolf-beat-book-2
y
dt
x
t
question id: wolf-beat-book-3
Exercise 2
question id: fir-lead-canoe-1
question id: fir-lead-canoe-2
Exercise 3 Every function has an anti-derivative. But there are many functions, for example antiD()
operator will figure out what is the anti-derivative.
For each of the following functions, use makeFun()
to implement the function as f()
. Then use antiD()
to construct the anti-derivative of f()
and give this the name F()
. Finally, use D()
to compute the derivative of F()
. Active R chunk 1 is initialized with an example.
4
4.5
5
5.5
6
6.5
question id: bee-bid-knife-1
-4
-3.5
-3
-2.5
-2
question id: bee-bid-knife-2
35
37
39
41
43
question id: bee-bid-knife-3
Exercise 4
The graph shows a function
Active R chunk 2 defines several functions,
One and only one is the anti-derivative of the function shown in the graph. Which one?
NOTE: doodle_fun()
is a program that generates functions, a different one for each seed
. It has been used here to generate F1()
through F4()
for you to use. Once you run those four lines in Active R chunk 2, you can use slice_plot()
in the usual way to plot out any of the four functions over the domain
anti-differentiate
differentiate
compose
multiply
question id: horse-takes-pillow-1
F1()
F2()
F3()
F4()
question id: horse-takes-pillow-2
Exercise 5 What pattern-book function has a derivative
question id: frog-choose-coat-1
What pattern-book function has a derivative
question id: frog-choose-coat-2
Exercise 6
Acceleration
Work/Energy
Momentum
Power
question id: kid-show-blanket-1
Momentum
Displacement
Power
Acceleration
question id: kid-show-blanket-2
Exercise 7 The output of a function, being a quantity, has dimension and units. Suppose the dimension of the output of a function
The anti-derivative function
Recall that in constructing the anti-derivative using the Euler method, we multiply the values of
Suppose you know the acceleration
question id: units-of-antiD-1
Suppose you know the power consumed by an appliance
question id: units-of-antiD-2
Exercise 8 The following graphic was produced based on data from the US Centers for Disease Control in early December 2020. It shows deaths as a function of time of year.
question id: ftm1
question id: ftm2
question id: ftm3
Suppose we want to use the information in the plot to estimate the total number of deaths in 2019. This is conceptually an integral of the death rate over the entire year. An integral has units that are the product of the vertical units times the horizontal units. Here, that is people.months/week.
As a shortcut we will model the 2019 death-rate function as a segment of a sine wave:
Hereβs the integral over the year:
This is a precise-looking answer, but it is completely wrong. There were approximately 3,000,000 deaths in the US in 2019.
Explain whatβs wrong with the estimate based on F2019(12) - F2019(0)
and how you can easily fix it. (Hint: What are the units of F2019()
?)β)
Exercise 9 In the population prediction model at the start of the chapter we want to find a function
Step 1: Anti-differentiate the functions on both sides of the equation. Anti-differentiation has the effect of cancelling out the
Task 1: Confirm that
Step 2: From Step 1 we have translated the relationship between population and year into this form:
Task 2: Exponentiate both sides of the newly framed relationship to get
Step 3: Letβs declare that
Task 3: Find the census estimate of the population in 2020 and use that information to estimate the parameter
Step 4: The per-capita growth rate is
Task 4: You now have numerical estimates for the parameters
Exercise 10 A textbook might have a problem like this:
I would rather textbooks say: βWrite an algebraic expression for the anti-derivative of the function
Now consider a textbook problem like this:
The 0 and 10 here are the βlimits of integration.β (The word βlimitβ here does not have any connection to the concept of βlimitsβ we studied in defining the derivative of a function.) Maybe it would be better to say, β0 to 10 are the bounds of integration.β The idea is that we will accumulate the quantity
To be more concrete, watch the first 30 seconds or so of the following video, which shows a truck laying out traffic cones along a road with a few moments showing the βantiβ operation of collecting the cones.
Put yourself on the scene when the construction site is being set up, a first step of which is to mark off the construction zone with traffic cones. That is what the truck is doing at the start of the video.
Suppose the truck is at position
Now imagine yourself on another day at another place, at the end of construction. The job of the truck is to pick up the cones. Imagine that the density of cones is described by the function
As it drives along the road, the truck pick up the cones. Suppose the truck is at mile marker 1.3, equivalent to 6864 feet from marker 0. The truck picks up cones until reaching mile marker 2.4: equivalent to 12,672 feet from marker 0. How many cones did the truck pick up? Easy, it is:
Now, we might prefer to keep track of the cone stock as the truck drives along the road. This would simply be a matter of counting the number of cones on the truck at each point
It is not quite the case that
When we know
In terms of road construction, think of this as the number of cones picked up when driving from position 500 ft to position 1000 ft. Evidently, at the start of the runβthat is, at
The answer to the textbook problem will be a number of cones. To find that number, we can follow this procedure:
Letβs restate this in terms of some typical quantities involving anti-differentiation:
Form (3) is asking us to keep track of how many cones have been added to the truck since we left point
Suppose we are asked to calculate yet another quantity:
The next-to-last step reflects that
find-C is an exercise connected to a Shiny app. Re-implement the shiny app using ShinyLive, then include the problem here.