source: git/Tst/Manual/syz_BR_PLURAL_BR.tst @ cbf01b

fieker-DuValspielwiese
Last change on this file since cbf01b was b7f0f6, checked in by Oleksandr Motsak <motsak@…>, 11 years ago
Updated SW test-suite (changes in normalizaion/ext_fields)
  • Property mode set to 100644
File size: 778 bytes
Line 
1LIB "tst.lib"; tst_init();
2LIB "ncalg.lib";
3def R = makeQso3(3);
4setring R; R;
5option(redSB);
6// we wish to have completely reduced bases:
7option(redTail);
8module tst;
9ideal J = x3+x,x*y*z;
10option(); print(syz(J));
11ideal K = x+y+z,y+z,z;
12option(); module S = syz(K);
13print(S);
14tst = module(transpose(S)*transpose(K));
15// check the property of a syzygy module (tst==0):
16size(tst);
17 // now compute the Groebner basis of K ...
18option(); K = std(K);
19// ... print a matrix presentation of K ...
20print(matrix(K));
21option(); S = syz(K); // ... and its syzygy module
22print(S);
23tst = module(transpose(S)*transpose(K));
24// check the property of a syzygy module (tst==0):
25size(tst);
26// but the "commutative" syzygy property does not hold
27size(module(matrix(K)*matrix(S)));
28tst_status(1);$
Note: See TracBrowser for help on using the repository browser.