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

spielwiese
Last change on this file since d7eac3 was 37cd955, checked in by Hans Schoenemann <hannes@…>, 14 years ago
pagelength removed git-svn-id: file:///usr/local/Singular/svn/trunk@13172 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 548 bytes
Line 
1//
2// test script for poly command
3//
4ring r1 = 0,(x,y,z),ds;
5r1;
6"------------------------------";
7poly s1=12x2y4+34xyz5-78x2y4z2;
8s1;
9"------------------------------";
10poly s2=3*x^2*y^3+6*x^3*y^2*z^4;
11s2;
12"----------------------------";
13int i=2;
14int j=6;
15int k=45;
16poly s3=i*x^k*y^j+k*x^(i+j)*z^k;
17s3;
18"---------------------------";
19poly s4=7/9x3z7+7/9*x^5+z^5;
20s4;
21"---------------------------";
22poly s5=12;
23s5;
24"------------------------------";
25poly s6;
26s6;
27"----------------------------";
28listvar(all);
29kill r1;
30LIB "tst.lib";tst_status(1);$;
Note: See TracBrowser for help on using the repository browser.