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:
446 bytes
|
Line | |
---|
1 | LIB "tst.lib"; |
---|
2 | tst_init(); |
---|
3 | |
---|
4 | ================================== example 1.9.28 ==================== |
---|
5 | |
---|
6 | LIB "ncalg.lib"; |
---|
7 | def U = makeUsl2(); // U(sl_2) over the rationals |
---|
8 | setring U; |
---|
9 | ring A = 0,(a),dp; |
---|
10 | def UA = U + A; |
---|
11 | setring UA; |
---|
12 | |
---|
13 | poly p = 4*e*f+h^2-2*h - a; |
---|
14 | // p is a central element of UA |
---|
15 | ideal I = e^3, f^3, h^3-4*h, p; |
---|
16 | // intersect I with the ring K[a] |
---|
17 | ideal J = eliminate(I,e*f*h); |
---|
18 | J; |
---|
19 | |
---|
20 | eliminate(I,h); |
---|
21 | |
---|
22 | eliminate(I,e*f*a); |
---|
23 | |
---|
24 | tst_status(1);$ |
---|
25 | |
---|
Note: See
TracBrowser
for help on using the repository browser.