Next: About this document ...
Up: lab_template
Previous: lab_template
Subsections
The purpose of this lab is to acquaint you with some rectangular
approximations to integrals.
Integration, the second major theme of calculus, deals with areas,
volumes, masses, and averages such as centers of mass and gyration.
In lecture you have learned that the area under a curve between two
points
and
can be found as a limit of a sum of areas of
rectangles which approximate the area under the curve of interest.
Not all ``area finding'' problems can be solved using analytical
techniques. The Riemann sum definition of area under a curve gives
rise to several numerical methods which can approximate the area of
interest with great accuracy.
Suppose
is a non-negative, continuous function defined on some
interval
. Then by the area under the curve
between
and
we mean the area of the region bounded above by the
graph of
, below by the
-axis, on the left by the vertical
line
, and on the right by the vertical line
. All of the
numerical methods in this lab depend on subdividing the interval
into subintervals of uniform length.
In these simple rectangular approximation methods, the area above each
subinterval
is approximated by the area of a rectangle, with the height of the
rectangle being chosen according to some rule. In particular, we will
consider the left, right and midpoint rules.
The Maple student package has commands for visualizing these
three rectangular area approximations. To use them, you first must
load the package via the with command. Then try the three commands
given below to help you understand the differences between the
three different rectangular approximations. Note that
the different rules choose rectangles which in
each case will either underestimate or overestimate the area.
> with(student):
> rightbox(x^2,x=0..4,3);
> leftbox(x^2,x=0..4,16);
> middlebox(x^2,x=0..4,10);
There are also Maple commands leftsum, rightsum, and
middlesum to sum the areas of the rectangles, see the
examples below. Note the use of evalf to obtain the desired numerical
answers.
> rightsum(x^2,x=0..4);
> evalf(rightsum(x^2,x=0..4,3));
> evalf(leftsum(x^2,x=0..4,16));
> evalf(middlesum(x^2,x=0..4,10));
It should be clear from the graphs that adding up the areas of the
rectangles only approximates the area under the curve. However, by
increasing the number of subintervals the accuracy of the
approximation can be improved. One way to measure how good the
approximation is is the
absolute error, which is the difference between the actual answer and the
estimated answer. Later on in the course, you
will learn techniques for finding the exact answer. Approximations,
however, are important because exact answers cannot always be found.
All of the Maple commands described so far in this lab can include a third
argument to specify the number of subintervals. The default is 4
subintervals. The example below approximates the area under
from
to
using the rightsum command with 50,
100, 320 and 321 subintervals. As the number of subintervals
increases, the approximation gets closer and closer to the exact
answer. You can see this by assigning a label to the approximation,
assigning a label to the exact answer
and taking their
difference. The closer you are to the actual answer, the smaller the
difference. The example below shows how we can use Maple to
approximate this area with an absolute error no greater than 0.1.
> exact := 4^3/3;
> estimate := evalf(rightsum(x^2,x=0..4,50));
> evalf(abs(exact-estimate));
> estimate := evalf(rightsum(x^2,x=0..4,100));
> evalf(abs(exact-estimate));
> estimate := evalf(rightsum(x^2,x=0..4,320));
> evalf(abs(exact-estimate));
> estimate := evalf(rightsum(x^2,x=0..4,321));
> evalf(abs(exact-estimate));
- Consider the function
on the interval
- A)
- Use the rightbox command to plot the rectangular approximation of the area above the
and under
with twelve rectangles.
- B)
- Use the leftbox command to plot the rectangular approximation of the area above the
and under
with twelve rectangles.
- C)
- Use the middlebox command to plot the rectangular approximation of the area above the
and under
with twelve rectangles.
- D)
- Which graph gives the best approximation to the area and give your reasoning.
- Plot the function
on the interval
with seven rectangles determined by the right-endpoint rule. Then plot the function with the left-endpoint rule.
- A)
- Which rule underestimates the area for this function? Will this rule always underestimate area for any function? Why?
- B)
- Which rule overestimates the area for this function? Will this rule always underestimate area for any function? Why?
- The area under
above the
over the interval
accurate to ten decimal places is 6.0632791021.
- A)
- Plot
over the given interval.
- B)
- Use the command rightsum to find the minimum number of
subintervals needed to approximate the area with error no
greater than 0.001.
- C)
- Use the command middlesum to find the minimum number of
subintervals needed to approximate the area with error no
greater than 0.001.
- D)
- Which method requires the least number of subintervals.
Next: About this document ...
Up: lab_template
Previous: lab_template
Jane E Bouchard
2006-01-13