source: git/Tst/Buch/Example_1_9_31.tst @ a7efa79

spielwiese
Last change on this file since a7efa79 was a7efa79, checked in by Hans Schönemann <hannes@…>, 17 years ago
*hannes: new book version git-svn-id: file:///usr/local/Singular/svn/trunk@10182 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 491 bytes
Line 
1LIB "tst.lib";
2tst_init();
3
4=============================== example 1.9.31 ==============================
5
6LIB "ncalg.lib";
7def R = makeQso3(3);
8setring R;
9option(redSB); option(redTail); // for reduced output
10ideal K = x+y+z,y+z,z;
11module S = syz(K);        // the (left) syzygy module of K
12print(S);                       
13
14ideal tst = ideal(transpose(S)*transpose(K));
15print(matrix(tst));
16
17K = x,y,z;
18S = syz(K);
19print(S);
20
21option(returnSB);
22S = syz(K);     
23print(S);
24
25tst_status(1);$
26
Note: See TracBrowser for help on using the repository browser.