source: git/Tst/Buch/Example_1_9_30.tst @ 107aac

spielwiese
Last change on this file since 107aac was 9faaf0, checked in by Hans Schönemann <hannes@…>, 17 years ago
*hannes: syntax fix git-svn-id: file:///usr/local/Singular/svn/trunk@10214 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 529 bytes
Line 
1LIB "tst.lib";
2tst_init();
3
4// =============================== example 1.9.30 ==============================
5
6LIB "ncalg.lib";
7def A0 = makeUsl2();  setring A0;
8option(redSB);  option(redTail);
9ideal I = e2,f2,h2-1;
10I = twostd(I);
11print(matrix(I));     // ideal in a compact form
12
13qring A  = I;        // we move to a GR--algebra A
14ideal Ke = modulo(e,0);
15Ke = std(Ke+std(0)); // normalize Ke w.r.t. the factor ideal
16Ke;
17
18ideal Kh = modulo(h-1,0);
19Kh = std(Kh+std(0));
20Kh;                  // the kernel of h-1
21
22tst_status(1);$
23
Note: See TracBrowser for help on using the repository browser.