source: git/Tst/Old/m19ex.tst @ 85d15b1

spielwiese
Last change on this file since 85d15b1 was a62b2c, checked in by Hans Schönemann <hannes@…>, 23 years ago
*hannes: new libs git-svn-id: file:///usr/local/Singular/svn/trunk@5030 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 1.1 KB
Line 
1  LIB "primdec.lib";
2  ring r = 0,(x,y,z,t,w),dp;
3  ideal i=
4     x2+2y2+2z2+2t2-x,
5     2xy+2yz+2zt-y,
6     y2+2xz+2yt-z,
7     x+2y+2z+2t-1;
8  primdecGTZ(i);
9  // We consider now the ideal J of the base space of the
10  // miniversal deformation of the cone over the rational
11  // normal curve computed in section *11* and compute
12  // its primary decomposition.
13  ring R = 0,(A,B,C,D),dp;
14  ideal J = CD, BD+D2, AD;
15  primdecGTZ(J);
16  // We see that there are two components which are both
17  // prime, even linear subspaces, one 3-dimensional,
18  // the other 1-dimensional
19  // (This is Pinkhams example and was the first found
20  // surface singularity with two components of
21  // different dimensions)
22  //
23  // Let us now produce an embedded component in the last
24  // example, compute the minimal associated primes and
25  // the radical. We use the Characteristic set methods
26  // from prim_dec.lib.
27  J = intersect(J,maxideal(3));
28  primdecSY(J,1);    //shows that the maximal ideal is
29                    //embedded (takes a few seconds)
30  minAssChar(J,1); 
31  radical(J);
32LIB "tst.lib";tst_status(1);$
Note: See TracBrowser for help on using the repository browser.