/usr/share/axiom-20120501/input/tsetcatchemical.input is in axiom-test 20120501-8.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | -----------------------------------------------------------------------------
--% 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
|