source: git/Tst/Plural/doc-syz-resol.tst @ 56c0fe

spielwiese
Last change on this file since 56c0fe was e0b657, checked in by Hans Schönemann <hannes@…>, 17 years ago
*hannes: ncalgebra -> nc_algebra git-svn-id: file:///usr/local/Singular/svn/trunk@10367 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 381 bytes
Line 
1LIB "tst.lib";
2tst_init();
3ring R=0,(x,y,z),dp;
4matrix d[3][3];
5d[1,2]=-z;
6d[1,3]=2x;
7d[2,3]=-2y;
8def S=nc_algebra(1,d); setring S; //U(sl_2)
9ideal I=x3,y3,z3-z;
10I=std(I);
11I;
12resolution resI = mres(I,0);
13resI;
14// The matrix A_1 is given by
15print(matrix(resI[1]));
16// We see that the columns of A_1 generate I.
17// The matrix A_2 is given by
18print(matrix(resI[2]));
19tst_status(1);$
Note: See TracBrowser for help on using the repository browser.