source: git/Tst/Plural/AlgDep-qso3-dp.tst @ 010b3f

spielwiese
Last change on this file since 010b3f 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: 461 bytes
Line 
1LIB "tst.lib";
2tst_init();
3ring r=(0,Q),(a,b,c,d,x,y,z),dp;
4minpoly=Q^4+Q^2+1;
5matrix A[7][7];
6matrix B[7][7];
7int u,j;
8for(u=1;u<=7;u++)
9{
10  for(j=u;j<=7;j++)
11  {
12    A[u,j]=1;
13  }
14}
15A[5,6]=Q2;
16A[5,7]=1/Q2;
17A[6,7]=Q2;
18B[5,6]=-Q*z;
19B[5,7]=1/Q*y;
20B[6,7]=-Q*x;
21def S=nc_algebra(A,B);setring S;
22poly Cq=Q^4*x2+y2+Q^4*z2+Q*(1-Q^4)*x*y*z;
23poly C1=1/3*(x^3+x);
24poly C2=1/3*(y^3+y);
25poly C3=1/3*(z^3+z);
26ideal I=a-Cq,b-C1,c-C2,d-C3;
27I=std(I);
28I;
29I[5];
30tst_status(1);$
Note: See TracBrowser for help on using the repository browser.