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 ignore the definition of the integral as a limit of sums. 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 limit of sums.
  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 notion of the integral as a sum. You will see examples of this later on in the course.

Definite and indefinite integrals 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}

More on 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. For each of the following functions and intervals, determine the area under the curve using the Maple int command. Include a plot of the curve to verify that it is non-negative over the interval in question.
    1. $\displaystyle f(x) = (1+x^2) \sin(x)$ on $[0,\pi]$.
    2. $\displaystyle g(x) = -x^5+13x^4-46x^3-10x^2+175x+125$ on $[-1,4]$.
    3. $ \displaystyle h(x) = \sqrt{16-x^2}$ on $[0,4]$. Verify that the answer you get is correct by using the formula for the area of a circle.

  2. Suppose that the flow rate of water, in units of 1000 cubic feet per hour, over the spillway of a dam is given by $\displaystyle q(t) = 1000 +100 \sin(t/2) +300
\sin(t/5)$ where $t$ is time in hours. The total flow, $V$, over the spillway from time $t=a$ to $t=b$ is given by

    \begin{displaymath}V = \int_{a}^{b} q(t) \, dt \end{displaymath}

    where the units of $V$ are thousands of cubic feet.
    1. Compute the total flow over the spillway for the interval $0
\leq t \leq 30$, where $t$ is the time in hours.
    2. Compute the average flow rate of water, in units of 1000 cubic feet per hour, over the spillway for the time period $0
\leq t \leq 30$.

  3. Consider the function

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

    Compute the following integral.

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


next up previous
Next: About this document ... Up: Labs and Projects for Previous: Labs and Projects for
William W. Farr
2001-03-26