source: git/Tst/Old/m19ex.tst @ 4b2bdf

fieker-DuValspielwiese
Last change on this file since 4b2bdf was 46976a6, checked in by Olaf Bachmann <obachman@…>, 26 years ago
* added status check to regress.cmd * added tst_status(1); call to each tst file, just before quit git-svn-id: file:///usr/local/Singular/svn/trunk@2271 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  decomp(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  decomp(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  min_ass_prim_charsets(J,1); 
31  radical(J);
32LIB "tst.lib";tst_status(1);$
Note: See TracBrowser for help on using the repository browser.