source: git/Tst/Plural/doc-bracket.tst @ 1ebec3

spielwiese
Last change on this file since 1ebec3 was e0b657, checked in by Hans Schönemann <hannes@…>, 16 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: 434 bytes
Line 
1LIB "tst.lib";
2tst_init();
3ring r=(0,Q),(x,y,z),Dp;
4minpoly=Q^4+Q^2+1;
5matrix C[3][3];
6matrix D[3][3];
7C[1,2]=Q2;
8C[1,3]=1/Q2;
9C[2,3]=Q2;
10D[1,2]=-Q*z;
11D[1,3]=1/Q*y;
12D[2,3]=-Q*x;
13def S=nc_algebra(C,D);setring S;
14// it is Quantum deformation of U(so_3).
15poly p=Q^4*x2+y2+Q^4*z2+Q*(1-Q^4)*x*y*z;
16// it is the central element 
17p=p^3;
18p;
19poly q=(x+Q*y+Q^2*z)^4;
20// it is big noncentral element
21q;
22system("bracket",p,q);
23tst_status(1);$
Note: See TracBrowser for help on using the repository browser.