source: git/Tst/Old/m17ex.tst @ e706ff

spielwiese
Last change on this file since e706ff was 46976a6, checked in by Olaf Bachmann <obachman@…>, 26 years ago
* added status check to regress.cmd * added tst_status(1); call to each tst file, just before quit git-svn-id: file:///usr/local/Singular/svn/trunk@2271 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 432 bytes
Line 
1  ring r =0,(x,y),dp;
2  poly f = 9x16-18x13y2-9x12y3+9x10y4-18x11y2+36x8y4
3         +18x7y5-18x5y6+9x6y4-18x3y6-9x2y7+9y8;
4  // = 9 * (x5-1y2)^2 * (x6-2x3y2-1x2y3+y4)
5  factorize(f);
6  // returns factors and multiplicities,
7  // first factor is a constant.
8  poly g = (y4+x8)*(x2+y2);
9  factorize(g);
10  // The same in charcteristic 2:
11  ring r =2,(x,y),dp;
12  poly g = (y4+x8)*(x2+y2);
13  factorize(g);
14LIB "tst.lib";tst_status(1);$
Note: See TracBrowser for help on using the repository browser.