next up previous index
Next: 17.2 Basic Formulas Up: 17. Antidifferentiation Techniques Previous: 17. Antidifferentiation Techniques   Index

17.1 The Antidifferentiation Problem

17.1   Definition ($\int f$ or $\int f(x) dx$.) I am going to use the notation $\int f$ or $\int f(x) dx$ to denote some arbitrary antiderivative for $f$ on an interval that often will not be specified. This is the same notation that I used previously to denote an indefinite integral for $f$. Although the fundamental theorem of the calculus shows that for nice functions the concepts of ``antiderivative'' and ``indefinite integral'' are essentially the same, for arbitrary functions the two concepts do not coincide. For example, let

\begin{displaymath}f(x) = \cases{ 1 & if $x > 0$\cr
-1 & if $x \leq 0$.}
\end{displaymath}

Then $f$ has an indefinite integral $F$ where

\begin{displaymath}F(x) = \cases{ \int_0^x 1 \; dx = x & if $x>0$.\cr
-\int _0^x 1\;dx = -x & if $x \leq 0$.}
\end{displaymath}

Thus $F(x) = \vert x\vert$. Then $F$ is not an antiderivative for $f$, since we know that $F$ is not differentiable at 0.

I will always try to make it clear whether $\int f$ represents an antiderivative or an indefinite integral in cases where it makes a difference.

The problem of calculating derivatives is straightforward. By using known formulas and rules, you can easily find the derivative of almost any function you can write down. The problem of calculating antiderivatives is much more complicated. In fact, none of the five functions

\begin{displaymath}
e^{x^2}, \;\; \ln\Big( \ln(x)\Big),\;\; {1\over {\ln (x)}},\...
...\sin
(x)}\over x}, \;\; {(1-x)^{3\over 5} \over x^{12\over 5}}
\end{displaymath} (17.2)

have antiderivatives that can be expressed in terms of functions we have studied. (To find a proof of this assertion, see [40, page 37 ff] and [41].) The first two functions in this list are compositions of functions that have simple antiderivatives, the third function is the reciprocal of a function with a simple antiderivative, and each of the last two functions is a product of two functions with simple antiderivatives. (An antiderivative for $\ln$ will be calculated in (17.25).) It follows that there is no chain rule or reciprocal rule or product rule for calculating antiderivatives. We will see, however, that the chain rule and the product rule for differentiation do give rise to antidifferentiation formulas.

The five functions

\begin{displaymath}
e^{\sqrt x},\;\; \sin\Big(\ln(x)\Big),\;\; {1\over {\sin x}}...
...\ln
(x)}\over x},\;\; { (1-x)^{2\over 5} \over x^{12\over 5}},
\end{displaymath} (17.3)

which look somewhat similar to the functions in (17.2), turn out to have simple antiderivatives, as you will see in (17.42c), (17.22), (17.7), (17.31f), and (17.41). It is often not easy to tell the difference between a function that has a simple antiderivative and a function that does not.

Many simple functions that arise in applied problems do not have simple antiderivatives. The exercises in this chapter have been carefully designed to be non-typical functions whose antiderivatives can be found.


The Maple instructions for finding antiderivatives and integrals are

\begin{displaymath}{\verb*+int(f(x),x);+} = \int f(x) dx, \end{displaymath}

and

\begin{displaymath}{\verb*+int(f(x),x=a..b);+} = \int_a^b f(x) dx. \end{displaymath}

I gave the five functions in (17.2) to Maple to antidifferentiate.

The results were:

> int( exp(x^2),x);

\begin{displaymath}
-  {\displaystyle \frac {1}{2}} {I} \sqrt {{ \pi}} {\rm erf}
( {I} {x} )
\end{displaymath}

> int( ln(ln(x)),x);

\begin{displaymath}
{x} {\rm ln}( {\rm ln}( {x} ) ) + {\rm Ei}( 1, - {\rm ln}(
 {x} ) )
\end{displaymath}

> int(1/ln(x),x);

\begin{displaymath}
- {\rm Ei}( 1, - {\rm ln}( {x} ) )
\end{displaymath}

> int(sin(x)/x,x);

\begin{displaymath}
{\rm Si}( {x} )
\end{displaymath}

> int( ((1-x)^(3/5))/ (x^(12/5)),x);


\begin{displaymath}-{\frac {5}{14}} 
{\frac {2-5 x+3 {x}^{2}}{x\sqrt [5]{ \le...
...4 {\frac {1}{\sqrt [5]{ \left( -1+x \right) ^{2}{x}^{2}}}}{dx}\end{displaymath}

In the first four cases, an answer has been given involving names of functions we have not seen before, (and which we will not see again in this course). The definitions of these functions are:

$\displaystyle \mbox{Si}(x)$ $\textstyle =$ $\displaystyle \int_0^x {{\sin (t)}\over t}\; dt,$ (17.4)
$\displaystyle \mbox{Ei}(n,x)$ $\textstyle =$ $\displaystyle \lim_{N\to\infty}\int_1^N {{e^{-xt}}\over t^n}\; dt ,\hspace{2em} (n \in \mbox{{\bf Z}}^+)$ (17.5)
$\displaystyle \mbox{erf}(x)$ $\textstyle =$ $\displaystyle {2\over {\sqrt\pi}}\int_0^x e^{-t^2}\; dt.$ (17.6)

In equation (17.4), we assume that $\displaystyle { {{\sin (t)}\over t}=1}$ when $t=0$. The function Si is called the sine integral. In equation (17.5), Ei$(n,x)$ makes sense only when $x$ is positive. The definition of Ei$(n,x)$ for $x<0$ involves ideas we have not discussed. The function Ei is called the exponential integral.

The function erf is called the error function. The answer given by Maple for $\int e^{x^2}\;dx$ involves the symbol $I$. This is Maple's notation for $\sqrt{-1}$. The definition of erf$(Ix)$ makes no sense in terms of concepts we have studied. However you can use Maple to calculate integrals even if you do not know what the symbols mean. The following instructions find $\displaystyle {\int_0^1 \exp(x^2) dx}$:

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

\begin{displaymath}
-  {\displaystyle \frac {1}{2}} {I} {\rm erf}( {I} )\sqrt {{\pi}} 
\end{displaymath}

> evalf(%);

\begin{displaymath}
1.462651746
\end{displaymath}


next up previous index
Next: 17.2 Basic Formulas Up: 17. Antidifferentiation Techniques Previous: 17. Antidifferentiation Techniques   Index
Ray Mayer 2007-09-07