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/op1.input.pamphlet | |
download | open-axiom-ab8cc85adde879fb963c94d15675783f2cf4b183.tar.gz |
Initial population.
Diffstat (limited to 'src/input/op1.input.pamphlet')
-rw-r--r-- | src/input/op1.input.pamphlet | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/src/input/op1.input.pamphlet b/src/input/op1.input.pamphlet new file mode 100644 index 00000000..640068b9 --- /dev/null +++ b/src/input/op1.input.pamphlet @@ -0,0 +1,46 @@ +\documentclass{article} +\usepackage{axiom} +\begin{document} +\title{\$SPAD/src/input OP.input} +\author{The Axiom Team} +\maketitle +\begin{abstract} +\end{abstract} +\eject +\tableofcontents +\eject +<<*>>= + +-- Input generated from OperatorXmpPage +)clear all + +R := SQMATRIX(2, INT) +t := operator("tilde") :: OP(R) +)set expose add constructor Operator +evaluate(t, m +-> transpose m) +s : R := matrix [[0, 1], [1, 0]] +rho := t * s +z := rho**4 - 1 +m:R := matrix [[1, 2], [3, 4]] +z m +rho m +rho rho m +(rho**3) m +b := t * s - s * t +b m +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 +-> D(p, 'x)) +E n == (1 - x**2) * dx**2 - 2 * x * dx + n*(n+1) +L 15 +E 15 +(E 15)(L 15) +@ +\eject +\begin{thebibliography}{99} +\bibitem{1} nothing +\end{thebibliography} +\end{document} |