Skip to content

Setwise stabiliser and random Schreier-Sims #5

@PoslavskySV

Description

@PoslavskySV

I am new to GAP and I would like to find setwise stabiliser for some permutation group. While playing with genss, I've found the following potential issue. Consider the code:

while true do
   g := PrimitiveGroup(9, 5);
   actual := SetwiseStabilizer(g, OnPoints, [3]).setstab;
   expected := Stabilizer(g, 3);
   if actual <> expected then
       Error("Not equal.");
   fi;
od;

The above code throws exception at some iteration, while it should not. If I understand correctly, this is because SetwiseStabilizer function uses randomised Schreier-Sims to construct BSGS, and there is a probability to obtain incomplete BSGS, so backtrack search fails. Is it possible to specify group order to SetwiseStabilizer, so it will use randomised Schreier-Sims with known order and will always produce valid BSGS and backtrack search will always complete?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions