spielwiese
Last change
on this file since a6e7454 was
a6e7454,
checked in by Viktor Levandovskyy <levandov@…>, 20 years ago
|
nontrivial examples from Plural doc
git-svn-id: file:///usr/local/Singular/svn/trunk@6653 2c84dea3-7e68-4137-9b89-c4e89433aadc
|
-
Property mode set to
100644
|
File size:
479 bytes
|
Line | |
---|
1 | LIB "tst.lib"; |
---|
2 | tst_init(); |
---|
3 | option(redSB); |
---|
4 | option(redTail); |
---|
5 | ring R=0,(x,y,z),dp; |
---|
6 | matrix d[3][3]; |
---|
7 | d[1,2]=-z; |
---|
8 | d[1,3]=y; |
---|
9 | d[2,3]=-x; |
---|
10 | system("PLURAL",1,d); //U(so_3) |
---|
11 | ideal I=x3+4x,y2-z2,z3+z; |
---|
12 | I=std(I); |
---|
13 | I; |
---|
14 | kill R; |
---|
15 | ring Rq3=(0,Q),(x,y,z),dp; //U'_q(so_3) |
---|
16 | minpoly=Q^4+Q^2+1; // at the 3rd root of unity |
---|
17 | matrix C[3][3]; |
---|
18 | matrix D[3][3]; |
---|
19 | C[1,2]=Q2; |
---|
20 | C[1,3]=1/Q2; |
---|
21 | C[2,3]=Q2; |
---|
22 | D[1,2]=-Q*z; |
---|
23 | D[1,3]=1/Q*y; |
---|
24 | D[2,3]=-Q*x; |
---|
25 | system("PLURAL",C,D); |
---|
26 | ideal J=x3+4x,y2-z2,z3+z; |
---|
27 | J=std(J); |
---|
28 | J; |
---|
29 | tst_status(1);$ |
---|
Note: See
TracBrowser
for help on using the repository browser.