source: git/Tst/Buch/Example_1_2_12.tst @ 1ebec3

spielwiese
Last change on this file since 1ebec3 was 891438c, checked in by Gerhard Pfister <pfister@…>, 23 years ago
*GP: initial release git-svn-id: file:///usr/local/Singular/svn/trunk@5579 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 616 bytes
Line 
1LIB "tst.lib";
2tst_init();
3
4ring A1 = 0,(x,y,z),lp;     
5poly f = x3yz + y5 + z4 + x3 + xy2; f;
6
7ring A2 = 0,(x,y,z),dp;     
8poly f = imap(A1,f); f;
9
10ring A3 = 0,(x,y,z),Dp;       
11poly f = imap(A1,f); f;
12
13ring A4 = 0,(x,y,z),Wp(5,3,2);
14poly f = imap(A1,f); f;
15
16ring A5 = 0,(x,y,z),ls;     
17poly f = imap(A1,f); f;
18
19ring A6 = 0,(x,y,z),ds;   
20poly f = imap(A1,f); f;
21
22ring A7 = 0,(x,y,z),Ws(5,3,2);
23poly f = imap(A1,f); f;
24
25ring A8 = 0,(x,y,z),(dp(1),ds(2));
26poly f = imap(A1,f); f;
27
28intmat A[3][3] = -1, -1, -1, 0, 0, 1, 0, 1, 0;
29print(A);
30ring A9 = 0,(x,y,z),M(A);
31poly f = imap(A1,f); f;
32
33
34tst_status(1);$
Note: See TracBrowser for help on using the repository browser.