source: git/Tst/Buch/Example_2_8_4.tst @ 1ebec3

spielwiese
Last change on this file since 1ebec3 was 2de414, checked in by Hans Schoenemann <hannes@…>, 13 years ago
typo in example git-svn-id: file:///usr/local/Singular/svn/trunk@14075 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 326 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];
10module Re=syz(N);
11module Ker;
12int i;
13for(i=1;i<=ncols(Re);i++){Ker=Ker+Re[i][1..2];}
14Ker;
15
16reduce(B*Ker,std(V));
17
18modulo(B,V);
19
20tst_status(1);$
Note: See TracBrowser for help on using the repository browser.