diff options
Diffstat (limited to 'src/input/defintef.input.pamphlet')
-rw-r--r-- | src/input/defintef.input.pamphlet | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/src/input/defintef.input.pamphlet b/src/input/defintef.input.pamphlet new file mode 100644 index 00000000..ad2b8449 --- /dev/null +++ b/src/input/defintef.input.pamphlet @@ -0,0 +1,45 @@ +\documentclass{article} +\usepackage{axiom} +\begin{document} +\title{\$SPAD/src/input defintef.input} +\author{The Axiom Team} +\maketitle +\begin{abstract} +\end{abstract} +\eject +\tableofcontents +\eject +\section{License} +<<license>>= +--Copyright The Numerical Algorithms Group Limited 1991. +@ +<<*>>= +<<license>> +-- defintef.input -- modified, last version was from Aug 21 1992 +-------------------------------- defintef.input ------------------------------- + +)clear all + +-- Evans and Johnson, in their "Uses of technology in the mathematics +-- curriculum" workbook list a number of +-- "integrals that your computer can't do". +-- int(sin(x)^3/(sin(x)^3+cos(x)^3),x=0..Pi/2) is one of them. +sin(x)**3/(sin(x)**3+cos(x)**3) +integrate(%, x = 0..%pi/2, "noPole") + +x**2/(1+x**3) +integrate(%, x=0..%plusInfinity) + +exp(-x**2)*log(x)**2 +integrate(%, x=0..%plusInfinity) + +x * asin(x/(x+1)) +integrate(%, x=0..1) + + +@ +\eject +\begin{thebibliography}{99} +\bibitem{1} nothing +\end{thebibliography} +\end{document} |