Next: About this document ...
Up: lab_template
Previous: lab_template
Subsections
The purpose of this lab is to introduce you to Maple commands for
computing definite and indefinite integrals.
There are two main ways to think of the definite integral. The easiest
one to understand is as a means for
computing areas (and volumes). The second way the definite integral is
used is as a sum. That is, we use the definite integral to ``add
things up''. Here are some examples.
- Computing net or total distance traveled by a moving object.
- Computing average values, e.g. centroids and centers of mass,
moments of inertia, and averages of probability distributions.
This lab is intended to introuduce you to Maple commands for computing
integrals, including applications of integrals.
The basic Maple command for computing definite and indefinite
integrals is the int command. The syntax is very similar to
that of the leftsum and rightsum commands, except
you don't need to specify the number of subintervals.
Suppose you wanted to compute the following definite
integral with Maple.
The command to use is shown below.
> int(x^2,x=0..4);
Notice that Maple gives an exact answer, as a fraction. If you want a
decimal approximation to an integral, you just put an evalf
command around the int command, as shown below.
> evalf(int(x^2,x=0..4));
To compute an indefinite integral with Maple, you just leave out the
range for the limits of integration, as shown below.
> int(x^2,x);
Note that Maple does not include a constant of integration.
You can also use the Maple int command with functions or
expressions you have defined in Maple.
For
example, suppose you wanted to find area under the curve of the
function
on the
interval
. Then you can define this function in Maple with
the command
> f := x -> x*sin(x);
and then use this definition as shown below.
> int(f(x),x=0..Pi);
You can also simply give the expression corresponding to
a
label in Maple, and then use that label in subsequent commands as
shown below. However, notice the difference between the two
methods. You are urged to choose one or the other, so you don't
mix the syntax up.
> p := x*sin(x);
> int(p,x=0..Pi);
If you want to find the area bounded by the graph of two functions, you should first plot both functions on the same graph. You can then find the intersection points using either the solve or fsolve command. Once this is done, you can calculate the definite integral in Maple. An example below illustrates how this can be done in Maple by finding the area bounded by the graphs of
and
:
> f := x-> -x^2+4*x+6;
> g := x-> x/3+2;
> plot({f(x),g(x)},x=-2..6);
> a := fsolve(f(x)=g(x),x=-2..0);
> b := fsolve(f(x)=g(x),x=4..6);
> int(f(x)-g(x),x=a..b);
If a function
is integrable over an interval
, then we
define the average value of
, which we'll denote as
,
on this interval to be
Note that the average value is just a number. For example, suppose you
wanted to compute the average value of the function
over the interval
. The following Maple
command would do the job.
> int(-16*t^2+100*t,t=1..5)/(5-1);
- Use Maple to compute the following definite integrals.
-
-
- Find the area of the region bounded by the curves
and
. Include a plot of the region.
- Find the area of the region bounded by the curves
,
and
. Include a plot of the region. (Hint: You may need to evaluate two integrals.)
- Find the average value of
on the following time intervals.
-
-
-
Show that the average value over the interval
the same as the weighted average of the two answers in Part 2 and Part 3.
Next: About this document ...
Up: lab_template
Previous: lab_template
Dina J. Solitro-Rassias
2012-01-16