Number of sylow subgroups
Is there any inbuilt function in SAGEMATH to compute the number of Sylow subgroups of a permutation group G. If not, can anyone help me to define one such function?
Is there any inbuilt function in SAGEMATH to compute the number of Sylow subgroups of a permutation group G. If not, can anyone help me to define one such function?
Because all Sylow subgroups are conjugate, it is enough to find one and compute its normalizer: the answer will be the index of this normalizer in G
. GAP is the most convenient way to do it which is interfaced in SageMath
sage: G = libgap.DicyclicGroup(12) # a group
sage: p = 2 # a prime
sage: H = libgap.SylowSubgroup(G, p)
sage: N = libgap.Normalizer(G, H)
sage: libgap.Index(G, N)
3
If you have a PermutationGroup
defined from sage, you can use it in place of G
above.
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 2024-07-10 21:16:48 +0100
Seen: 193 times
Last updated: Jul 10
How to iterate through finite groups
Is there a command in SAGE which is equivalent to GAP's "ShallowCopy" ?
Structure constants for unitary groups
How do I find a presentation for classical matrix groups like PGL(2,q)?
Elementary abelian p-subgroups of a finite group
Group algebra/matrix space homomorphism