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/pollevel.input.pamphlet | |
download | open-axiom-ab8cc85adde879fb963c94d15675783f2cf4b183.tar.gz |
Initial population.
Diffstat (limited to 'src/input/pollevel.input.pamphlet')
-rw-r--r-- | src/input/pollevel.input.pamphlet | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/src/input/pollevel.input.pamphlet b/src/input/pollevel.input.pamphlet new file mode 100644 index 00000000..b317de86 --- /dev/null +++ b/src/input/pollevel.input.pamphlet @@ -0,0 +1,47 @@ +\documentclass{article} +\usepackage{axiom} +\begin{document} +\title{\$SPAD/src/input pollevel.input} +\author{The Axiom Team} +\maketitle +\begin{abstract} +\end{abstract} +\eject +\tableofcontents +\eject +\section{License} +<<license>>= +--Copyright The Numerical Algorithms Group Limited 1996. +@ +<<*>>= +<<license>> + +-- This file tests variables moving to the correct level within +-- polynomial towers. + +)clear all + +f(y : UP(x, POLY INT)): UP(x, POLY INT) == x * y +f(x) + +)clear all + +y := operator 'y + +eq1 := D(y x,x,2) - x*y(x)=0 +seriesSolve(eq1,y,x=0,[0,a]) + +eq2 := D(y x,x) - x*cos(y x) - exp(x) +seriesSolve(eq2,y,x=0,y(0) = 0) + +)clear all + +p : UP(x, POLY INT) := x +u := (z*x) +u * p +@ +\eject +\begin{thebibliography}{99} +\bibitem{1} nothing +\end{thebibliography} +\end{document} |