aboutsummaryrefslogtreecommitdiff
path: root/src/input/operator.input.pamphlet
diff options
context:
space:
mode:
Diffstat (limited to 'src/input/operator.input.pamphlet')
-rw-r--r--src/input/operator.input.pamphlet34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/input/operator.input.pamphlet b/src/input/operator.input.pamphlet
new file mode 100644
index 00000000..a789eb3c
--- /dev/null
+++ b/src/input/operator.input.pamphlet
@@ -0,0 +1,34 @@
+\documentclass{article}
+\usepackage{axiom}
+\begin{document}
+\title{\$SPAD/src/input operator.input}
+\author{The Axiom Team}
+\maketitle
+\begin{abstract}
+\end{abstract}
+\eject
+\tableofcontents
+\eject
+\section{License}
+<<license>>=
+--Copyright The Numerical Algorithms Group Limited 1991, 1995.
+@
+<<*>>=
+<<license>>
+)clear all
+L n ==
+ n = 0 => 1
+ n = 1 => x
+ (2*n-1)/n * x * L(n-1) - (n-1)/n * L(n-2)
+dx := operator("D") :: OP(POLY FRAC INT)
+evaluate(dx, p +-> differentiate(p, 'x))$OP(POLY FRAC INT)
+E n == (1 - x**2) * dx**2 - 2 * x * dx + n*(n+1)
+L 15
+E 15
+
+@
+\eject
+\begin{thebibliography}{99}
+\bibitem{1} nothing
+\end{thebibliography}
+\end{document}