spielwiese
Last change
on this file since a7efa79 was
a7efa79,
checked in by Hans Schönemann <hannes@…>, 16 years ago
|
*hannes: new book version
git-svn-id: file:///usr/local/Singular/svn/trunk@10182 2c84dea3-7e68-4137-9b89-c4e89433aadc
|
-
Property mode set to
100644
|
File size:
617 bytes
|
Rev | Line | |
---|
[a7efa79] | 1 | LIB "tst.lib"; |
---|
| 2 | tst_init(); |
---|
| 3 | |
---|
| 4 | ================================ example 1.9.34 ============================ |
---|
| 5 | |
---|
| 6 | LIB "gkdim.lib"; |
---|
| 7 | LIB "ncalg.lib"; |
---|
| 8 | def A = makeUsl(2); // set up U(sl_2) |
---|
| 9 | setring A; |
---|
| 10 | ideal I = e2,f; |
---|
| 11 | ideal LI = std(I); |
---|
| 12 | GKdim(LI); |
---|
| 13 | ideal TI = twostd(I); |
---|
| 14 | GKdim(TI); |
---|
| 15 | ideal Z = 4*e*f + h^2 - 4*h; |
---|
| 16 | Z = std(Z); |
---|
| 17 | GKdim(Z); |
---|
| 18 | ring B = 0,(a),dp; |
---|
| 19 | def C = A + B; |
---|
| 20 | setring C; |
---|
| 21 | ideal I = e^3, f^3, h^3-4*h, 4*e*f+h^2-2*h - a; |
---|
| 22 | I = std(I); |
---|
| 23 | GKdim(I); |
---|
| 24 | ideal J = eliminate(I,e*f*h); |
---|
| 25 | GKdim(J); |
---|
| 26 | setring A; |
---|
| 27 | resolution F = nres(LI,0); // we computed it before |
---|
| 28 | GKdim(F[1]); // this is LI itself |
---|
| 29 | GKdim(F[2]); |
---|
| 30 | GKdim(F[3]); |
---|
| 31 | |
---|
| 32 | tst_status(1);$ |
---|
| 33 | |
---|
Note: See
TracBrowser
for help on using the repository browser.