aboutsummaryrefslogtreecommitdiff
path: root/src/input/tsetcatchemical.input.pamphlet
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2007-08-14 05:14:52 +0000
committerdos-reis <gdr@axiomatics.org>2007-08-14 05:14:52 +0000
commitab8cc85adde879fb963c94d15675783f2cf4b183 (patch)
treec202482327f474583b750b2c45dedfc4e4312b1d /src/input/tsetcatchemical.input.pamphlet
downloadopen-axiom-ab8cc85adde879fb963c94d15675783f2cf4b183.tar.gz
Initial population.
Diffstat (limited to 'src/input/tsetcatchemical.input.pamphlet')
-rw-r--r--src/input/tsetcatchemical.input.pamphlet70
1 files changed, 70 insertions, 0 deletions
diff --git a/src/input/tsetcatchemical.input.pamphlet b/src/input/tsetcatchemical.input.pamphlet
new file mode 100644
index 00000000..c452f68d
--- /dev/null
+++ b/src/input/tsetcatchemical.input.pamphlet
@@ -0,0 +1,70 @@
+\documentclass{article}
+\usepackage{axiom}
+\begin{document}
+\title{\$SPAD/src/input TSETCATChemical.input}
+\author{The Axiom Team}
+\maketitle
+\begin{abstract}
+\end{abstract}
+\eject
+\tableofcontents
+\eject
+<<*>>=
+-----------------------------------------------------------------------------
+--% Domains Definitions
+-----------------------------------------------------------------------------
+
+)clear all
+ls : List Symbol := [x4,x3,x2,x1,t];
+V := OVAR(ls);
+R := Integer;
+E := IndexedExponents V
+P := NSMP(R, V);
+LP := List(P);
+
+-----------------------------------------------------------------------------
+--% Initialisations
+-----------------------------------------------------------------------------
+
+x1: P := 'x1;
+x2: P := 'x2;
+x3: P := 'x3;
+x4: P := 'x4;
+t: P := 't;
+
+
+p1 := 2 - 7 * x1 + x1 ** 2 * x2 + t * (x3 - x1) ;
+p2 := 6 * x1 - x1 ** 2 * x2 + 10 * t * (x4 - x2) ;
+p3 := 2 - 7 * x3 + x3 ** 2 * x4 + t * (x1 - x3) ;
+p4 := 6 * x3 - x3 **2 * x4 + 1 - t * (x2 - x4) ;
+
+lp := [p1,p2,p3,p4];
+
+
+-----------------------------------------------------------------------------
+--% Computations
+-----------------------------------------------------------------------------
+
+T := WUTSET(R,E,V,P)
+
+medialSet(lp)$T
+
+characteristicSet(lp)$T
+
+characteristicSerie(lp)$T
+
+zeroSetSplit(lp)$T
+
+
+T := REGSET(R,E,V,P)
+
+zeroSetSplit(lp)$T
+
+zeroSetSplit(lp,false)$T
+
+@
+\eject
+\begin{thebibliography}{99}
+\bibitem{1} nothing
+\end{thebibliography}
+\end{document}