aboutsummaryrefslogtreecommitdiff
path: root/src/input/intrf.input.pamphlet
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2007-08-14 05:14:52 +0000
committerdos-reis <gdr@axiomatics.org>2007-08-14 05:14:52 +0000
commitab8cc85adde879fb963c94d15675783f2cf4b183 (patch)
treec202482327f474583b750b2c45dedfc4e4312b1d /src/input/intrf.input.pamphlet
downloadopen-axiom-ab8cc85adde879fb963c94d15675783f2cf4b183.tar.gz
Initial population.
Diffstat (limited to 'src/input/intrf.input.pamphlet')
-rw-r--r--src/input/intrf.input.pamphlet41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/input/intrf.input.pamphlet b/src/input/intrf.input.pamphlet
new file mode 100644
index 00000000..31e37a5d
--- /dev/null
+++ b/src/input/intrf.input.pamphlet
@@ -0,0 +1,41 @@
+\documentclass{article}
+\usepackage{axiom}
+\begin{document}
+\title{\$SPAD/src/input intrf.input}
+\author{The Axiom Team}
+\maketitle
+\begin{abstract}
+\end{abstract}
+\eject
+\tableofcontents
+\eject
+\section{License}
+<<license>>=
+--Copyright The Numerical Algorithms Group Limited 1991.
+@
+<<*>>=
+<<license>>
+
+)clear all
+-- some integration of rational functions
+x + y/x
+integrate(%,x)
+-- we need not factor the denominator
+(x+1)**2/((x+1)**6+1)
+integrate(%,x)
+(2*x**2+4)**4/(x**2-2)**5
+integrate(%,x)
+x**5/(x**4+x**2+1)**2
+integrate(%,x)
+1/(x**2 + a)
+integrate(%,x)
+x**2/(x**4-a**2)
+integrate(%,x)
+x/(1-x**3)
+integrate(%,x)
+@
+\eject
+\begin{thebibliography}{99}
+\bibitem{1} nothing
+\end{thebibliography}
+\end{document}