h=0.00001
h=0.00000001
h=0.000000000001
h=0.00000000000001
h=0.000000000000000001
question id: h-too-small-1
π‘ Loading...
Loading webR...
Exercise 1 In mathematical theory, we speak of numD()
, a sufficiently small
Active R chunk 1 calculates and plots a numerical derivative of the sinusoid function, using a specified value of .h
.) Remake the plot, using every smaller .h
, until you start to see imperfections in the calculated values.
Which of these values for h
is the smallest you can go before the problems of too-small h
start showing up?
h=0.00001
h=0.00000001
h=0.000000000001
h=0.00000000000001
h=0.000000000000000001
question id: h-too-small-1
Exercise 2
In Figure 1, which of the line segments is tangent to the curve at the point marked with a dot?
question id: reptile-put-kitchen-1
Exercise 3 Sometimes a bit of algebra can help us see whatβs going on with the instantaneous rate of change. Consider the exponential function
Rather than writing the slope function definition with a 0.1, letβs substitute in the symbol
Math expression 1 shows that the slope function of
question id: lamb-put-bulb-1
Keep in mind that our interest is in
question id: lamb-put-bulb-2
The instantaneous rate of change involves making
Exercise 4
Which of the line segments is tangent to the curve at the point marked with a dot?
question id: goat-pay-pot
Exercise 5 Suppose you want to borrow
For example, if the interest rate is 0.005 per month (roughly 6% = 0.06 per year), your monthly payment would be
You are a good negotiator and are trying to talk the car dealer down to a zero-percent loan. The dealer plugs
You press the point. βExcuse me, Sir, but Iβm reading MOSAIC Calculus. That NaN
appearing on your screen is the result of a division by zero in the formula. But there is no reason to do that division. At zero percent interest, the monthly payment will simply be the amount borrowed divided by the number of months of the loan, so $10,000 divided by 60, giving a monthly payment of $166.6666β¦ .β
βIβm sure youβre very good at math,β the dealer says, βand Iβm willing to agree to a monthly payment of $166.67, but I cannot process any loan without going through this computer system. And zero percent wonβt fly.β
Having studied limits, you have an idea. βSuppose we agree on a non-zero interest rateβwhich your loan system can handleβthat produces a monthly payment of $166.67? Can we write up the loan that way?β
Dealer: βIβd be happy to do that, but obviously it is impossible to find an interest rate greater than zero that gives the same result as your calculation for zero interest.β
You: βLetβs try. Instead of 0.005 for the monthly interest rate, put in
Dealer: βOK, letβs see. β¦ Yes, the payment amount is $169.22. Thatβll work.β
You: βWe are making progress. But my sense of mathematical honor insists that we find an interest rate that gives $166.67, as close as we can practically get to the exact answer result $166.6666β¦ .β
question id: low-low-rates-3
Later in the day, you tell the story to your roommate, who is a computer science major. She says that you were lucky. βComputer arithmetic isnβt the same as mathematical arithmetic. Computer calculations with very small numbers sometimes give different results than you would expect mathematically. I bet if you tried an even smaller
The result steadily gets closer to 166.6666β¦.
At first, the result gets closer to 166.6666, but then as
The result falls below 166.666 and stays there.
The computer output shows a result of infinity.
question id: low-low-rates-4
See this news story from 1991 for a real-world example of a similar flaw.
Exercise 6 Use Active R chunk 8 for evaluating tinyx
.
tinyx
to make it even smaller. You can stop when you get tired. Does question id: rhinosaurus-toss-gloves-1
Saying, βso small that I got tired typing the zerosβ is not a convincing definition of βsmallβ to a mathematician. For example, 0.0000000000000001 parsec (a unit of length) seems small but it is equivalent to about 10 feetβnot so small. Mathematicians want you to take βsmallβ to the limit, an arbitrarily large number of zeros, and when youβre done with that, even more zeros.
Fortunately, R and other computer languages have a scientific notation that allows you just to name the number of zeros you want after the decimal point. For instance 1e-2
is 1e-20
is
x = 1e-31
, calculate sin(x)/x
. Then double the number of zeros, keep on doubling the number of zeros. The result will continue to be 1 β¦ until it eventually becomes NaN
. How many zeros are there in the x
that produces NaN
as the answer to sin(x)/x
?question id: rhinosaurus-toss-gloves-2
Whatβs happening here has more to do with the nature of computers than the nature of numbers. Computers (in the manner they are ordinarily programmed) use packets of bits to represent numbers, and the chips have been engineered to make those bit packets respond to arithmetic operations as if they were the numbers they represent. A typical computer number, like 0.001, uses 64 bits in a special, standard format. Since there is a finite number of bits, there is a largest possible non-Inf
number and a smallest possible non-zero number. According to the IEEE standard for βfloating-pointβ arithmetic the largest non-Inf
number is around 1e300
and the smallest non-zero number is around 1e-320
. This failure to behave like genuine mathematical numbers is called βoverflowβ (for large numbers which turn into Inf
) and βunderflowβ (for small numbers which turn into 0
).
1e300
, 1e301
and so on until you find the smallest 1e???
that prints as Inf
. Similarly, try numbers in the format 1e-320
and 1e-321
until you find the largest one that prints out as exactly zero. What are those two numbers?
1e305
and 1e-322
1e306
and 1e-323
1e308
and 1e-324
1e309
and 1e-327
question id: rhinosaurus-toss-gloves-3
Exercise 7 It is simple enough to say to an elementary-school pupil that βdivision by zero is an error.β But what is a computer to do when, for whatever reason, it divides by an amount that is zero generated by a not-erroneous earlier computation? In many computer languages (including R) the programmer can arrange that a unacceptable situation causes an error message to be βthrown.β This generally causes the program to stop. See this account of the USS Yorktown (under βSmart ship testbedβ) for an example of why stopping the program is not always an acceptable practice.
Modern computer arithmetic systems, implemented in hardware, take a different approach to division by zero. Rather than an error, divide-by-zero calculations return a definite value called βnot a numberβ and printed as NaN
. Rather than stopping the program, calculations can continue on. Any calculation involving NaN
, such as 3 + NaN
or NaN/NaN
produces a NaN
. This clever design allows the system-level programmer to determine where and whether a division by zero needs to be dealt with.
NaN
as the output.1/0
0/0
0*NaN
NaN/NaN
5e20 + NaN*1e-50
NaN - NaN
NaN * Inf
sin(NaN)
sqrt(NaN)
Inf/Inf
1/Inf
question id: NaN-numerics-0
The NaN
strategy is effective in plotting. Programs such as slice_plot()
simply ignore points whose value is NaN
. As a result, the shape of the graph is determined by those points nearby, not at, the singularity. The overall effect is that the graph indicates whether the singularity is removable without the user having to do any juggling with NaN
.
For each of the following functions of
NaN
. If so, the function has a singularity at Example: f(xstar)
returns NaN
, indicating that there is a singularity at xstar
. The graph, however, is perfectly smooth and has a value of 0.5 at xstar
. So the limit
question id: NaN-numerics-1
question id: NaN-numerics-2
question id: NaN-numerics-3
question id: NaN-numerics-4
question id: NaN-numerics-5
Exercise 8 Consider the function
Essay 1: Explain what the options(digits=20)
statement is doing. You can do some experiments by changing the 20 to something much smaller.
Which of these statements is true about the successive values in x_sequence
?
They approach 3 from below.
They approach 3 from above.
They oscillate, getting nearer and farther from 3.
question id: singularity-numerics-1
Which of these statements is true about the successive values in f(x_sequence)
?
They approach 1 from below.
They approach 1 from above.
Their value is constant at 1.
question id: YFpUUK
Essay 2: Explain what about the output of the function
Exercise 9
A demonstration that
Since there is no
Now the question of what is the value, if any, of
We can solve this with a simple plot. Active R chunk 12 looks at
Is the graph behaving nicely as
Not convinced that 0.001 is a small value for
Exercise 10
A demonstration that
An identity known since before calculus was invented is:
Similarly,
Plugging these identities into Math expression 2 gives
The
Now the question of what is the value, if any, of
We can solve this with a simple plot. Active R chunk 13 looks at
Is the graph behaving nicely as
Not convinced that 0.001 is a small value for
Exercise 11 For each exercise, you are given a series of intervals that get smaller and smaller. Your job is to calculate the average rate of change of the function
A. Use these three intervals to estimate the instantaneous rate of change
B. Use these three intervals to estimate the instantaneous rate of change
C. Use these three intervals to estimate the instantaneous rate of change
Exercise 12 Using numerical finite-difference differentiation, confirm the rules given in MOSAIC Calculus Sec 19.3 for the pattern-book functions.
Find a small-enough
Find an even smaller
Exercise 13 Letβs explore the derivative
The general definition of the derivative of a function
Substitute in
The domain of the function
If setting