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/as-eg3.input.pamphlet | |
download | open-axiom-ab8cc85adde879fb963c94d15675783f2cf4b183.tar.gz |
Initial population.
Diffstat (limited to 'src/input/as-eg3.input.pamphlet')
-rw-r--r-- | src/input/as-eg3.input.pamphlet | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/src/input/as-eg3.input.pamphlet b/src/input/as-eg3.input.pamphlet new file mode 100644 index 00000000..239949a8 --- /dev/null +++ b/src/input/as-eg3.input.pamphlet @@ -0,0 +1,49 @@ +\documentclass{article} +\usepackage{axiom} +\begin{document} +\title{\$SPAD/src/input as-eg3.input} +\author{The Axiom Team} +\maketitle +\begin{abstract} +\end{abstract} +\eject +\tableofcontents +\eject +\section{License} +<<license>>= +--Copyright The Numerical Algorithms Group Limited 1994. +@ +<<*>>= +<<license>> + +)compile hilbert.as + +monomial l == (l::Vector SingleInteger) pretend Monomial +mon1 := monomial [4,0,0,0]; +mon2:= monomial [3,3,0,0]; +mon3 := monomial [3,2,1,0]; +mon4 := monomial[3,1,2,0]; +mon5 := monomial[0,2,0,1]; +mon6 := monomial[0,1,0,5]; +l := [mon1, mon2, mon3, mon4, mon5, mon6]; +Hilbert l +idA := varMonomsPower(6,5); +#idA +Hilbert idA +idB := varMonomsPower(6,6); +#idB +Hilbert idB +idC := varMonomsPower(12,3); +#idC +Hilbert idC +idD:=[monomial[2,0,0,0],monomial[1,1,0,0],monomial[1,0,1,0],monomial[1,0,0,1],_ + monomial[0,3,0,0],monomial[0,2,1,0]]^4; +#idD +Hilbert idD + +@ +\eject +\begin{thebibliography}{99} +\bibitem{1} nothing +\end{thebibliography} +\end{document} |