next up previous
Next: About this document ... Up: Labs and Projects for Previous: Labs and Projects for

Subsections


The Definite Integral

Purpose

The purpose of this lab is to introduce you to the definite integral and to Maple commands for computing definite integrals.

Background

Introduction

There are two main ways to think of the definite integral. The easiest one to understand, and the one we'll consider first, 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.

Of course, when we use a definite integral to compute an area or a volume, we are adding up area or volume. So you might ask why make a distinction? The answer is that the notion of an integral as a means of computing an area or volume is much more concrete and is easier to understand.

You have learned in class that the definite integral is actually defined as a (complicated) limit of sums, so it makes sense that the integral should be thought of as a sum. You have also learned in class that the indefinite integral, or anti-derivative, can be used to evaluate definite integrals. Students often concentrate on techniques for evaluating integrals, and ingnore the definition of the integral as a sum. This is a mistake, for the following reasons.

1.
Many functions don't have anti-deriviatives that can be written down as formulas. Definite integrals of such function must be done using numerical techniques, which always depend on the definition of the integral as a sum.
2.
In many applications of the integral in engineering and science, you aren't given the function which is to be integrated and must derive it. The derivation always depends on the definition of the integral as a sum. You will see examples of this later on in the course.

Computing areas with Maple

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.

\begin{displaymath}
\int_{0}^{4} x^2 \, dx \end{displaymath}

The command to use is shown below.

  > int(x^2,x=0..4);

\begin{maplelatex}
\begin{displaymath}
{\displaystyle \frac {64}{3}}\end{displaymath}\end{maplelatex}
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));

\begin{maplelatex}
\begin{displaymath}
21.33333333\end{displaymath}\end{maplelatex}

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);

\begin{maplelatex}
\begin{displaymath}
{\displaystyle \frac {1}{3}}\,{x}^{3}\end{displaymath}\end{maplelatex}
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 $f(x)=x \sin(x)$ on the interval $[0,\pi]$. Then you can define this function in Maple with the command

  > f := x -> x*sin(x);

\begin{maplelatex}
\begin{displaymath}
{f} := {x} \rightarrow {x}\,{\rm sin}(\,{x}\,)\end{displaymath}\end{maplelatex}
and then use this definition as shown below.
  > int(f(x),x=0..Pi);

\begin{maplelatex}
\begin{displaymath}
{ \pi}\end{displaymath}\end{maplelatex}

You can also simply give the expression corresponding to f(x) 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 you to choose one or the other, so you don't mix the syntax up.

  > p := x*sin(x);

\begin{maplelatex}
\begin{displaymath}
{p} := {x}\,{\rm sin}(\,{x}\,)\end{displaymath}\end{maplelatex}
  > int(p,x=0..Pi);

\begin{maplelatex}
\begin{displaymath}
{ \pi}\end{displaymath}\end{maplelatex}

Computing definite integrals with Maple

The same int command works to compute any definite integral, whether it corresponds to an area or not. For example, to compute the definite integral

\begin{displaymath}
\int_{-2}^{4} (2x-3)^5 \, dx \end{displaymath}

you could use the following Maple command.
  > int((2*x-3)^5,x=-2..4);

\begin{maplelatex}
\begin{displaymath}
-8502\end{displaymath}\end{maplelatex}

Sometimes you need to compute a definite integral involving a piecewise-defined function. For example, suppose you have a function f(x) defined as follows

\begin{displaymath}
f(x) = \left\{ \begin{array}
{ll}
 2-x^2 & \mbox{if $x < 1$} \\  x & \mbox{if $x \geq 1$}
 \end{array}\right. \end{displaymath}

and you needed to compute the definite integral

\begin{displaymath}
\int_{-5}^{5} f(x) \, dx \end{displaymath}

The best way to do this in Maple is to split it up into two integrals and use the appropriate formula, as shown below. How you split the integral up is determined by where the formula defining the function changes.
  > int(2-x^2,x=-5..1)+int(x,x=1..5);

\begin{maplelatex}
\begin{displaymath}
-18\end{displaymath}\end{maplelatex}

Definite integrals and average values

If a function f is integrable over an interval [a,b], then we define the average value of f, which we'll denote as $\bar{f}_{ab}$,on this interval to be

\begin{displaymath}
\bar{f}_{ab} = \frac{1}{b-a} \int_{a}^{b} f(x) \, dx \end{displaymath}

Note that the average value is just a number. Note furthermore that we can rearrange the definition to give

\begin{displaymath}
\bar{f}_{ab} (b-a) = \int_{a}^{b} f(x) \, dx \end{displaymath}

If $f(x) \geq 0$ on [a,b], then the average value has the following geometrical interpretation: $\bar{f}_{ab}$ is the height of a rectangle of width b-a such that the area of this rectangle is equal to the area under the graph of f from a to b. The following example shows you how to compute an average. The last plot command shows the function and the top of this rectangle.

  > f :=x ->  x*sin(x) ;

\begin{maplelatex}
\begin{displaymath}
{f} := {x} \rightarrow {x}\,{\rm sin}(\,{x}\,)\end{displaymath}\end{maplelatex}
  > plot(f(x),x=0..Pi);
  > f_ave := int(f(x),x=0..Pi)/Pi;

\begin{maplelatex}
\begin{displaymath}
{\it f\_ave} := 1\end{displaymath}\end{maplelatex}
  > plot(f(x),f_ave,x=0..Pi);

Exercises

1.
Use Maple to compute the following definite integrals.
(a)
$\displaystyle \int_{-2}^{3} \frac{x}{\sqrt{x^2+4}} \, dx $
(b)
$\displaystyle \int_{2}^{3} \frac{x}{\sqrt{x^2+4}} \, dx $ Why is your answer to this part the same as your answer to the first part of this exercise?
2.
Use Maple to find the area of the region bounded by the x axis, the lines x=-1 and x=2, and the curve $y= x
\cos(x^2/4)+1$. Include a plot of the region.

3.
Find the value of a, $1 \leq a \leq 2$, such that

\begin{displaymath}
\int_{-1}^{a} x \cos(x^2/4)+1 \, dx = 3\end{displaymath}

(Hint - first compute the integral using a as your upper limit, and then use the fsolve command.)

4.
Consider the function

\begin{displaymath}
g(x) = \left\{ \begin{array}
{ll}
 x+1 & \mbox{if $x < 0$} \\  1-x & \mbox{if $x \geq 0$}
 \end{array}\right. \end{displaymath}

Compute the following integral.

\begin{displaymath}
\int_{-1}^{1} g(x) \, dx \end{displaymath}

5.
Suppose that the velocity of a particle moving in one dimension is given by

\begin{displaymath}
v(t) = \cos(t)\sin(\pi t) \end{displaymath}

Find the average value of v(t) on the following time intervals.
(a)
[0,5]
(b)
[0,10]
(c)
[5,10]

next up previous
Next: About this document ... Up: Labs and Projects for Previous: Labs and Projects for

Jane E Bouchard
11/9/1999