source: git/Tst/Short/assprimeszerodim.tst @ d4b25e

spielwiese
Last change on this file since d4b25e was 0de6e1, checked in by Stefan Steidel <steidel@…>, 13 years ago
Semicolon was missing. git-svn-id: file:///usr/local/Singular/svn/trunk@14149 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100755
File size: 987 bytes
Line 
1LIB "tst.lib";
2tst_init();
3
4LIB "assprimeszerodim.lib";
5
6ring R1 = 0,x(1..6),dp;
7ideal I = cyclic(6);
8assPrimes(I,1);
9assPrimes(I,1,4);
10assPrimes(I,2);
11assPrimes(I,2,4);
12assPrimes(I,3);
13assPrimes(I,3,4);
14
15ring R2 = 0,(a,b,c,d,e,f),dp;
16ideal I = 2fb+2ec+d2+a2+a,
17          2fc+2ed+2ba+b,
18          2fd+e2+2ca+c+b2,
19          2fe+2da+d+2cb,
20          f2+2ea+e+2db+c2,
21          2fa+f+2eb+2dc;
22assPrimes(I,1);
23assPrimes(I,1,4);
24assPrimes(I,2);
25assPrimes(I,3);
26
27ring R3 = 0,(x,y,z),dp;
28ideal I = x2+xy2z-2xy+y4+y2+z2,
29          -x3y2+xy2z+xyz3-2xy+y4,
30          -2x2y+xy4+yz4-3;
31assPrimes(I,1);
32assPrimes(I,2);
33assPrimes(I,2,4);
34assPrimes(I,3);
35
36ring R4 = 0,(a,b,c,d,e,f,g,h,k,o),dp;
37ideal I = o+1, k4+k, hk, h4+h, gk, gh, g3+h3+k3+1,
38          fk, f4+f, eh, ef, f3h3+e3k3+e3+f3+h3+k3+1,
39          e3g+f3g+g, e4+e, dh3+dk3+d, dg, df, de,
40          d3+e3+f3+1, e2g2+d2h2+c, f2g2+d2k2+b,
41          f2h2+e2k2+a;
42assPrimes(I,1);
43assPrimes(I,2);
44assPrimes(I,3);
45assPrimes(I,3,4);
46
47tst_status(1);$
Note: See TracBrowser for help on using the repository browser.