source: git/Tst/Buch/Example_2_7_14.tst

spielwiese
Last change on this file was 75f460, checked in by Hans Schoenemann <hannes@…>, 9 years ago
format
  • Property mode set to 100644
File size: 459 bytes
Line 
1LIB "tst.lib";
2tst_init();
3
4ring A1=0,(a,b,c),dp;
5ideal P=ab-c2;
6qring A=std(P);
7poly p=abc;
8
9ring B1=0,(x,y,z,a,b,c),dp;
10ideal I=x2,y,ab-c2;
11qring B=std(I);
12map ib=A,a,b,c;
13
14ring C1=0,(u,v,a,b,c),lp;
15ideal J=uv,ab-c2;
16qring C=std(J);
17map ic=A,a,b,c;
18
19ring T1=0,(x,y,z,u,v,a,b,c),dp;
20ideal K=imap(C1,J)+imap(B1,I);
21qring T=std(K);
22map jb=B,x,y,z,a,b,c;
23map jc=C,u,v,a,b,c;
24
25map psi=jc(ic);                //
26map phi=jb(ib);
27psi(p);
28
29phi(p);
30
31
32tst_status(1);$
Note: See TracBrowser for help on using the repository browser.