source: git/Tst/Old/pol.tst @ b35b93

spielwiese
Last change on this file since b35b93 was b35b93, checked in by Olaf Bachmann <obachman@…>, 26 years ago
This commit was generated by cvs2svn to compensate for changes in r1396, which included commits to RCS files with non-trunk default branches. git-svn-id: file:///usr/local/Singular/svn/trunk@1397 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 540 bytes
Line 
1//
2// test script for poly command
3//
4pagelength = 10000;
5ring r1 = 0,(x,y,z),ds;
6r1;
7"------------------------------";
8poly s1=12x2y4+34xyz5-78x2y4z2;
9s1;
10"------------------------------";
11poly s2=3*x^2*y^3+6*x^3*y^2*z^4;
12s2;
13"----------------------------";
14int i=2;
15int j=6;
16int k=45;
17poly s3=i*x^k*y^j+k*x^(i+j)*z^k;
18s3;
19"---------------------------";
20poly s4=7/9x3z7+7/9*x^5+z^5;
21s4;
22"---------------------------";
23poly s5=12;
24s5;
25"------------------------------";
26poly s6;
27s6;
28"----------------------------";
29listvar(all);
30kill r1;
31$;
Note: See TracBrowser for help on using the repository browser.