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/lodo1.input.pamphlet | |
download | open-axiom-ab8cc85adde879fb963c94d15675783f2cf4b183.tar.gz |
Initial population.
Diffstat (limited to 'src/input/lodo1.input.pamphlet')
-rw-r--r-- | src/input/lodo1.input.pamphlet | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/src/input/lodo1.input.pamphlet b/src/input/lodo1.input.pamphlet new file mode 100644 index 00000000..c7b45068 --- /dev/null +++ b/src/input/lodo1.input.pamphlet @@ -0,0 +1,47 @@ +\documentclass{article} +\usepackage{axiom} +\begin{document} +\title{\$SPAD/src/input LODO1.input} +\author{The Axiom Team} +\maketitle +\begin{abstract} +\end{abstract} +\eject +\tableofcontents +\eject +<<*>>= + + +-- Input generated from LinearOrdinaryDifferentialOperatorOneXmpPage +)clear all + + +-- Input generated from ugxLinearOrdinaryDifferentialOperatorOneRatPage +)clear all + +RFZ := Fraction UnivariatePolynomial('x, Integer) +x : RFZ := 'x +Dx : LODO1 RFZ := D() +b : LODO1 RFZ := 3*x**2*Dx**2 + 2*Dx + 1/x +a : LODO1 RFZ := b*(5*x*Dx + 7) +p := x**2 + 1/x**2 +(a*b - b*a) p +ld := leftDivide(a,b) +a = b * ld.quotient + ld.remainder +rd := rightDivide(a,b) +a = rd.quotient * b + rd.remainder +rightQuotient(a,b) +rightRemainder(a,b) +leftExactQuotient(a,b) +e := leftGcd(a,b) +leftRemainder(a, e) +rightRemainder(a, e) +f := rightLcm(a,b) +rightRemainder(f, b) +leftRemainder(f, b) +@ +\eject +\begin{thebibliography}{99} +\bibitem{1} nothing +\end{thebibliography} +\end{document} |