source: git/Tst/Manual/isCartan.tst @ 0d6b7fc

spielwiese Release-4-3-2p2
Last change on this file since 0d6b7fc was 894057, checked in by Oleksandr Motsak <motsak@…>, 13 years ago
ADD: Tests from online manual (res+stat on mamawutz): short ones Tst/Manual/s.lst
  • Property mode set to 100644
File size: 396 bytes
Line 
1LIB "tst.lib"; tst_init();
2LIB "central.lib";
3ring R=0,(x,y,z),dp;
4matrix D[3][3]=0;
5D[1,2]=-z;
6D[1,3]=2*x;
7D[2,3]=-2*y;
8def r = nc_algebra(1,D); setring r; // this is U(sl_2) with cartan - z
9isCartan(z); // yes!
10poly p=4*x*y+z^2-2*z;
11isCartan(p); // central elements are Cartan elements!
12poly f=4*x*y;
13isCartan(f); // no way!
14isCartan( 10 + p + z ); // scalar + central + cartan
15tst_status(1);$
Note: See TracBrowser for help on using the repository browser.