source: git/Tst/Short/divrem2.tst @ ae3946

spielwiese
Last change on this file since ae3946 was ae3946, checked in by Hans Schoenemann <hannes@…>, 2 months ago
fix divrem2 for ideals
  • Property mode set to 100644
File size: 207 bytes
Line 
1LIB "tst.lib";
2tst_init();
3
4ring r=QQ,(x,y),dp;
5ideal a=x^3+y^3+x*y;
6ideal b=x;
7list L=system("DivRemIdU",a,b);
8// a *u == b*q+r
9matrix(a)*matrix(L[3])==matrix(b)*matrix(L[2])+matrix(L[1]);
10
11tst_status(1);$
Note: See TracBrowser for help on using the repository browser.