diff options
author | dos-reis <gdr@axiomatics.org> | 2007-08-14 05:14:52 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2007-08-14 05:14:52 +0000 |
commit | ab8cc85adde879fb963c94d15675783f2cf4b183 (patch) | |
tree | c202482327f474583b750b2c45dedfc4e4312b1d /src/input/de2re.input.pamphlet | |
download | open-axiom-ab8cc85adde879fb963c94d15675783f2cf4b183.tar.gz |
Initial population.
Diffstat (limited to 'src/input/de2re.input.pamphlet')
-rw-r--r-- | src/input/de2re.input.pamphlet | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/src/input/de2re.input.pamphlet b/src/input/de2re.input.pamphlet new file mode 100644 index 00000000..024bc4a8 --- /dev/null +++ b/src/input/de2re.input.pamphlet @@ -0,0 +1,62 @@ +\documentclass{article} +\usepackage{axiom} +\begin{document} +\title{\$SPAD/src/input de2re.input} +\author{The Axiom Team} +\maketitle +\begin{abstract} +\end{abstract} +\eject +\tableofcontents +\eject +\section{bugs} +The function |LinearOrdinaryDifferentialOperator| is undefined +<<bug1>>= +dn := D()$L +-- 4 well known differential operators +exp:= dn - 1 +sincos := dn**2 + 1 +airy := dn**2 - n +hermite := dn**2 - 2*n*dn + 1 + +-- the recurrences satisfied by the coefficients of their series solutions +--recurrence(exp, 0) +--recurrence(sincos, 0) +--recurrence(airy, 0) +--recurrence(airy, 1) +--recurrence(hermite, 0) + +-- a non-trivial example from the GFUN tech. rep (Salvy & Zimmermann) +op := (335 * n**2 + 1290) * dn**2 + 1540 * n * dn + 468720 +--recurrence(op, 0) +@ +<<bugs>>= +---------------------------------- de2re.input ----------------------------- +)cl all + +P := UP(n, INT) +n := n::P + +L := LODO1 P +<<bug1>> + +@ +\section{License} +<<license>>= +--Copyright The Numerical Algorithms Group Limited 1994. +@ +<<*>>= +<<license>> +---------------------------------- de2re.input ----------------------------- +)cl all + +P := UP(n, INT) +n := n::P + +L := LODO1 P +@ +\eject +\begin{thebibliography}{99} +\bibitem{1} nothing +\end{thebibliography} +\end{document} |