source: git/Tst/Short/bug_49.tst @ 051432

spielwiese
Last change on this file since 051432 was 2c0420, checked in by Hans Schönemann <hannes@…>, 16 years ago
*hannes: bug49 git-svn-id: file:///usr/local/Singular/svn/trunk@10400 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 498 bytes
Line 
1LIB "tst.lib";
2tst_init();
3
4// normal form in a local ring with HEdge of monomial
5// lost the coefficient of it.
6
7ring R=0,(x,y,z),ws(5,4,6);
8option(prot);
9option(teach);
10ideal j=xz,4y3+z2+3y2z,x2+2yz+y3;
11ideal s=std(j);
12s;
13system("HC");
14reduce(yz2,s); //1/8z3
15reduce(y3z,s); //-1/4z3
16reduce(yz2+y3z,s); //-1/8z3
17
18ring R1=0,(x,y,z),ds;
19option(prot);
20option(teach);
21ideal j=xz,4y3+z2+3y2z,x2+2yz+y3;
22ideal s=std(j);
23s;
24reduce(yz2,s);
25reduce(y3z,s);
26reduce(yz2+y3z,s); // the sum ?
27
28
29tst_status(1);$
Note: See TracBrowser for help on using the repository browser.