source: git/Tst/Plural/TwoGB-g2-3.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 100755
File size: 1.0 KB
Line 
1LIB "tst.lib";
2tst_init();
3ring r=0,(x(1..6),y(1..6),Ha,Hb),dp;
4matrix D[14][14]=0;
5D[1,2]=-x(3);
6D[1,3]=-2*x(4);
7D[1,4]=3*x(5);
8D[1,7]=-Ha;
9D[1,9]=3*y(2);
10D[1,10]=2*y(3);
11D[1,11]=-y(4);
12D[1,13]=2*x(1);
13D[1,14]=-x(1);
14D[2,5]=x(6);
15D[2,8]=-Hb;
16D[2,9]=-y(1);
17D[2,12]=-y(5);
18D[2,13]=-3*x(2);
19D[2,14]=2*x(2);
20D[3,4]=3*x(6);
21D[3,7]=3*x(2);
22D[3,8]=-x(1);
23D[3,9]=-Ha-3*Hb;
24D[3,10]=-2*y(1);
25D[3,12]=-y(4);
26D[3,13]=-x(3);
27D[3,14]=x(3);
28D[4,7]=2*x(3);
29D[4,9]=-2*x(1);
30D[4,10]=-2*Ha-3*Hb;
31D[4,11]=y(1);
32D[4,12]=y(3);
33D[4,13]=x(4);
34D[5,7]=-x(4);
35D[5,10]=x(1);
36D[5,11]=-Ha-Hb;
37D[5,12]=y(2);
38D[5,13]=3*x(5);
39D[5,14]=-x(5);
40D[6,8]=-x(5);
41D[6,9]=-x(4);
42D[6,10]=x(3);
43D[6,11]=x(2);
44D[6,12]=-Ha-2*Hb;
45D[6,14]=x(6);
46D[7,8]=y(3);
47D[7,9]=2*y(4);
48D[7,10]=-3*y(5);
49D[7,13]=-2*y(1);
50D[7,14]=y(1);
51D[8,11]=-y(6);
52D[8,13]=3*y(2);
53D[8,14]=-2*y(2);
54D[9,10]=-3*y(6);
55D[9,13]=y(3);
56D[9,14]=-y(3);
57D[10,13]=-y(4);
58D[11,13]=-3*y(5);
59D[11,14]=y(5);
60D[12,14]=-y(6);
61def S=nc_algebra(1,D);setring S;
62ideal i=x(1)^3;
63option(redSB);
64option(redTail);
65ideal J=system("twostd",i);
66J;
67tst_status(1);$
Note: See TracBrowser for help on using the repository browser.