[back] [prev] [next] [index] [root]

 


AbelianQuotientGroup

Returns the quotient of a group and a subgroup.

Syntax:

q := AbelianQuotientGroup(g, s);

groups
  g, q  
group
  s  
subgroup of g

See also:  AbelianGroupCanonicalQuotient

Description:

Returns the quotient group q of the group g and its subgroup s.


Example:


kash> g := AbelianGroupCreate([[0,1,2],[5,6,0],[0,4,5]]);
Group with relations:
[0 1 2]
[5 6 0]
[0 4 5]
kash> s := AbelianSubGroup(g, [3,3,3]);
Group with relations:
[5]
kash> q := AbelianQuotientGroup(g, s);
Group with relations:
[3 3 3]
[0 1 2]
[5 6 0]
[0 4 5]
kash> AbelianGroupSmithCreate(q);
> Group with relations:
[3]


<- back[back] [prev] [next] [index] [root]