question id: monkey-light-stove-1
π‘ Loading...
Exercise 1 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: monkey-light-stove-1
Suppose you know the power consumed by an appliance
energy
force
acceleration
length
question id: monkey-light-stove-2
Exercise 2 This activity uses the βGraph-antiDβ web app which enables you to visualize the anti-derivative function in terms of areas. To use the app, click-drag-and-release to mark part of the domain of the function being displayed.
Convert the app using ShinyLive and embed it here.
To answer these questions correctly, you must set the βShape of functionβ box to 864.
A. From the graph, roughly estimate
-46
-26
0
3
19
26
question id: tiger-tug-shoe-1
B. to construct the anti-derivative whose value at time
-120
-80
-50
0
50
80
120
question id: tiger-tug-shoe-2
C. Examining the stock at time
-25
-15
0
15
25
question id: tiger-tug-shoe-3
D. You start with a stock of 100 units at time
-1.2
-0.3
0.5
1.2
1.8
The stock will never fall so low.
question id: tiger-tug-shoe-4
E. Your stock finally runs out at time
There was never such a time.
question id: tiger-tug-shoe-5
F. After decreasing for a long time, the stock finally starts to increase from about
The derivative is at a minimum.
The derivative is negative
The derivative is near zero.
The derivative becomes positive and stays positive.
The derivative is at a maximum.
question id: tiger-tug-shoe-6
G. Find the argmin
question id: tiger-tug-shoe-7
H. What is the average flow into stock over the period
-30
-20
0
10
question id: tiger-tug-shoe-8
I. Which of the following is an interval when the average flow is approximately zero?
None of the above
question id: tiger-tug-shoe-9
J. From the graph, estimate
-120
-60
60
120
None of these answers are close to being right.
question id: tiger-tug-shoe-10
Exercise 3 Consider this function,
Assume that the βareaβ of each small box on the graph is the product of 1 Watt
question id: seahorse-choose-canoe-a1
question id: seahorse-choose-canoe-2
question id: seahorse-choose-canoe-3
Consider the function
question id: seahorse-choose-canoe-4
question id: seahorse-choose-canoe-5
question id: seahorse-choose-canoe-6
question id: seahorse-choose-canoe-7
question id: seahorse-choose-canoe-8
Here are four different graphs.
question id: seahorse-choose-canoe-9
Exercise 4 Consider this sequence: 4, 5, 3, 1, 2
14
15
16
17
question id: cumsum5-1
The sequence 4, 9, 12, 13, 15
The sequence 2, 3, 6, 11, 15
The sequence 0, 4, 9, 13, 15
question id: cumsum5-2
The first
The last
None of them
All of them
question id: cumsum5-3
question id: cumsum5-4
Exercise 5 The result of applying the Euler method to a function is also another function, but it comes in the form of a vector of numbers all ready to be displayed graphically. So keep in mind the the function produced by Euler will be known only over a specified domain, just as the graph of a function covers only the specified domain. For instance, Active R chunk 1 shows the graph of the natural logarithm function over the domain
The command in the sandbox is a little different than the usual slice_plot()
. Weβve added on two things:
An argument npts=11
which says to use 11 discrete values of the input in plotting the graph.
A second graphics layer that shows a dot at each input point where slice_plot()
evaluated the function. Behind the seemingly smooth curves that slice_plot()
produces is really a discrete set of points each of which is the output of the function at some numerical input.
In our typical use of slice_plot()
we leave out the dots and show only the straight line segments that connect the positions where the dots would be plotted. If the positions are spaced closely enough, your eye will not see the joints between successive straight lines and you will perceive the graph as a smooth curve.
npts=11
(that is, the initial command shown in the sandbox), what is the horizontal spacing between the discrete question id: slicedots1
Now take away the npts=
argument. This will implicitly set npts
to a default value, which is what we have been using for most plots in this course.
npts
in slice_plot()
?question id: slicedots2
We could use a much larger value for npts
, but there is no reason so long as a smaller value produces a graph faithful to the function being graphed.
Keeping the domain the same, npts
:
question id: slicedots3
Exercise 9 Methods such as Euler are tedious, ideal for the computer. So letβs look at some basic R functions for implementing the Euler Method when we know the function to be anti-differentiated cumsum()
, the βcumulative sum.β This does something very simple. The cumulative sum of the sequence 1, 2, 3, 4 is another sequence: 1, 3, 6, 10.
Active R chunk 2 has commands for using cumsum()
to approximate the anti-derivative of a function
Here is a function:
Use Active R chunk 2 to find and plot the anti-derivative of
Your task: Describe the shape of
Exercise 6 The graphic, from The Economist news magazine, shows the number of elective treatments (e.g. minor surgery, etc.) by the British National Health Service over the period January 2019 to April 2021. The point of the graph is to show the extent to which people avoided medical treatment due to the Covid-19 pandemic, which started to become severe in March 2020. (The January/February treatment numbers for 2020 line up pretty exactly with the 2019 numbers.)
According to the graphic, how many fewer treatements were there in the 12 months of 2020 compared to the 12 months of 2019? (Choose the best of the following answers.)
About 500,000
About 2,000,000
About 6,000,000
About 10,000,000
question id: ape-bit-sheet-1
Exercise 7 Using the Euler method find
0 | 0.399 | 0.5 |
0.01 | 0.242 | |
0.02 | 0.054 | |
0.03 | 0.399 |
Exercise 8 Anti-derivatives are useful when you know how a quantity is changing but donβt (yet) know the quantity itself.
Imagine, for instance, that you are sailing on a straight course across a large lake. Your friend, in the bow of the boat, uses a radar gun to record velocity at each instant. Velocity is, of course, the change in position over time. The recording lasts for 12 minutes, that is 0.20 hour, as shown in the Sailing-over-time app.
Embed the sailing over time app here using ShinyLive.
How far did the boat travel during the 0.2-hour recording? Distance equals velocity times time. If the velocity were constant, say 4 mph, the distance would be 4 mph
Suppose we set
Each of the terms like
If you have changed the length of dt and/or clicked show the multiplication as an area, You can scroll up and see the changes to the graph.
The sum above amounts to adding up all those rectangular βareas,β each of which is in the units βmiles.β
LT^2
L
L/T
T
T/L
question id: sailing-over-time-1
Making dt small
Another way to write the formula given in the previous section uses the mathematical βsumβ symbol:
Using the sum notation, we can easily write down the calculation if we set vel()
.)
Then revise the commands in Active R chunk 3 to calculate the sum over 2000 segments, corresponding to a segment length of 0.0001 hour.
question id: sailing-over-time-2
Repeat the calculation, but for 20,000 segments, each of duration 0.00001 hours.
question id: sailing-over-time-3
You can see that for
You can also see that the calculations themselves are a bit finicky. You have to get the number of segments to correspond to the choice of
To save all this trouble in accumulating the velocity or any other change function, we simply say, βIntegrate the function
The anti-derivative of
There is no explicit mention of the start time. To indicate that
Once we know a start time, we can figure out
Now suppose we want to know how much is accumulated over the interval
Now, evaluate the anti-derivative at the end time, 8. The amount accumulated to time 8 is
In general, if
Note that, because we specified the start at
The anti-derivative lets us split accumulation problems into two pieces:
We can use any technique we like to find the anti-derivative
The antiD()
R operator takes as input a tilde expression defining the function exp(k*x) ~ x
. As an output, it produces a function
Use the sandbox and the antiD()
function to accumulate the boatβs velocity over the interval from
AntiD as notation for Euler
At minute 4:26 (that is, hour 0.0710), the boat sailed by a red marker buoy. Then at minute 6:45 (that is, hour 0.1075), the boat passed a blue marker bouy. How far apart are the red and blue bouys?
This is an accumulation problem that we can denote as
0.154 hours
0.154 meters
0.7889 hours
0.154 miles
0.7889 miles
question id: sailing-over-time-4