source: git/Tst/Short/bug_tr346.tst @ 564136

spielwiese
Last change on this file since 564136 was ed6d085, checked in by Hans Schoenemann <hannes@…>, 13 years ago
test for tr. 346 git-svn-id: file:///usr/local/Singular/svn/trunk@14318 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 892 bytes
Line 
1LIB "tst.lib";
2tst_init(); option(Imap);
3
4ring r0 = 0, (a,b,x,y), lp;
5
6ring s0 = 32003, (a,b,x,y), lp;
7
8ring t0 = 7, (a,b,x,y), lp;
9
10ring f0 = (0, a) , (b, x, y), lp; minpoly = a2 + 1;
11poly p = 1 + a + a2 + b + ab + ax + ay + bx + x + y + xy; p;
12p;
13
14setring r0;
15imap(f0, p);
16
17setring s0;
18imap(f0, p);
19
20setring t0;
21imap(f0, p);
22
23ring R = (0,U),(x1(0),x1(1),x1(2),x1(3),x1(4),x2(0),x2(1),x2(2),x2(3),x2(4),t1(1),t1(2),t1(3),t2(1),t2(2),t2(3)),(dp(16),C); minpoly = (U2+1) ;
24
25ideal I =
26x1(3)-x1(4)+(-U)*x2(3)+(U)*x2(4)+(43/200*U-539/500)*t1(3)+(539/500*U+43/200)*t2(3)+(967/500*U-153/500);
27
28ring S=0, (x1(0),x1(1),x1(2),x1(3),x1(4),x2(0),x2(1),x2(2),x2(3),x2(4),t1(1),t1(2),t1(3),t2(1),t2(2),t2(3)),dp;
29
30ideal I=imap(R,I); I; setring R; I;
31ring R2 = (0,U),(x,y),dp; minpoly = (U2+1) ;
32
33ideal I =
34(-U)*x+y+(2+U)*xy;
35
36ring S2=0, (x,y),dp;
37
38ideal I=imap(R2,I); I; setring R2; I;
39
40tst_status(1);$
Note: See TracBrowser for help on using the repository browser.