Chapter 1: Limits
Section 1.1: Naive Limits
|
Example 1.1.1
|
|
Graph and thereby estimate and .
|
|
|
|
Solution
|
|
•
|
Context Panel: Assign Function
|
|
|
•
|
The transparent green dot on the graph in Figure 1.1.1(a) is at the point , corresponding to the value = . If evaluation produces a real number, that real number is the limit. Hence,
|
=
•
|
The red circle at indicates a gap in the function at because is undefined: a division-by-zero error occurs if the function is evaluated at . However, the graph suggests the estimate
|
=
|
|
Figure 1.1.1a Graph of and the points and
|
|
|
|
|
|
Table 1.1.1(a) lists values of to either side of . These values are consistent with Figure 1.1.1(a), and with the estimate of the limit at .
>
|
a := 4:
H := [ 0.5, 0.1, 0.01, 0.001 ]:
xL := [seq( a-h, h=H )]:
xR := [seq( a+h, h=H )]:
header := < `x` | `f(x)` >,
< `_____` | `_______________` >:
bodyL := seq( < X | f(X) >, X= xL ):
tableL := < header, bodyL >:
bodyR := seq( < X | f(X) >, X= xR ):
tableR := < header, bodyR >:
tableL, tableR;
|
|
Table 1.1.1(a) Numeric estimate of
|
|
|
|
|
<< Chapter Overview Section 1.1
Next Example >>
© Maplesoft, a division of Waterloo Maple Inc., 2024. All rights reserved. This product is protected by copyright and distributed under licenses restricting its use, copying, distribution, and decompilation.
For more information on Maplesoft products and services, visit www.maplesoft.com
|