how I can find the generators's of Primitive Groups

82 Views Asked by At

Could anyone please tell me how in GAP I can get a set of generators for a given primitive group (such as PrimitiveGroup(15,2))?

1

There are 1 best solutions below

0
On

The standard command in GAP would be to first create the group G:=PrimitiveGroup(15,2); and then ask for GeneratorsOfGroup(G); which will fetch the stored generators.

Note that these generators might not be "nice" in any particular sense.