How do you use GAP to identify the name of a group from its multiplication table? I know that you can define a group from a set of generators, and then look for the group in the set of internal tables

gap> g := Group([ (1,2), (1,2,3,4,5) ]);    
Group([ (1,2), (1,2,3,4,5) ])

gap> IdGroup(g);                            
[ 120, 34 ]

But how do find out the name of group [120, 34]?

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

The StructureDescription command (see Section 36.7 of the GAP manual) might do what you need. For example,

StructureDescription(g)

returns "S5" for your example, telling you that (as you probably already know) this is the symmetric group on five elements.

For comparison,

StructureDescription(SmallGroup(120,35))

gives "C2 x A5" and

StructureDescription(SmallGroup(120,36))

gives "S3 x (C5 : C4)". I don't know at what point these descriptions fall below the level of naming the group, but is this on the track you want?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.