source: git/Tst/Buch/Example_2_8_4.tst @ 61abe6

spielwiese
Last change on this file since 61abe6 was 61abe6, checked in by Hans Schoenemann <hannes@…>, 4 years ago
changed tests (OPT_REDTAIL_SYZ)
  • Property mode set to 100644
File size: 364 bytes
Line 
1LIB "tst.lib";
2tst_init();
3
4ring R=0,(x,y,z),(c,dp);
5ideal I=x2y2-xyz2;
6qring A=std(I);
7module V=[x2,xy,y2],[xy,xz,yz];
8matrix B[3][2]=x,y,zx,zy,y2,z2;
9module N=B[1],B[2],V[1],V[2];
10option(returnSB);
11module Re=syz(N);
12option(noreturnSB);
13module Ker;
14int i;
15for(i=1;i<=ncols(Re);i++){Ker=Ker+Re[i][1..2];}
16Ker;
17
18reduce(B*Ker,std(V));
19
20modulo(B,V);
21
22tst_status(1);$
Note: See TracBrowser for help on using the repository browser.