|
7.7.8.0. baumslagGroup
Procedure from library fpalgebras.lib (see fpalgebras_lib).
- Usage:
- baumslagGroup(m,n,d); m an integer, n an integer, d an integer
- Return:
- ring
- Note:
- - the ring contains the ideal I, which contains the required relations
- Baumslag group with the following presentation
< a, b | a^m = b^n = 1 >
-d gives the degreebound for the Letterplace ring
This is a family
Example:
| LIB "fpalgebras.lib";
def R = baumslagGroup(2,3,4); setring R;
I;
==> I[1]=a(1)*a(2)-1
==> I[2]=b(1)*b(2)*b(3)-1
|
|