I'm attempting to solve the following problem.
Consider the permutation group $G=\langle\rho,\sigma\rangle\leq S_{14}$ where $\rho=(1,3,5,7,9,11,13)(2,4,6,8,10,12,14)$ and $\sigma=(1,2)(3,6)(4,5)(7,8)(9,12)(10,13)(11,14)$. Determine $|G|$ and find a presentation of $G$ with two generators and as few relations as possible, such that $\rho$ and $\sigma$ satisfy the relations you have chosen.
I'm looking for a good way to do this by hand, but all the methods I know of are inefficient. Even computationally, I'm still struggling with the second part. $|G|=336=2^4\cdot3\cdot7$, so I need elements of order $2$, $3$, and $7$ to define the relations. It's easily verified that $|\rho|=7$ and $|\sigma|=2$, but finding the right element of order $3$ that is some combination of $\rho$ and $\sigma$ is a challenge. For example, $\rho^3(\sigma\rho^3)^2$ is of order $3$, but the group $\langle a,b:a^7=b^2=a^3(ab^3)^2=1\rangle$ has order $2$. My Sage code is listed below. I'm open to using pretty much any language if someone has an idea (I have experience with Maple, Mathematica, and Matlab, but would be willing to try Magma, GAP, or otherwise).
sage: G = SymmetricGroup(14)
sage: rho = G([(1,3,5,7,9,11,13),(2,4,6,8,10,12,14)])
sage: sigma = G("(1,2),(3,6),(4,5),(7,8),(9,12),(10,13),(11,14)")
sage: H=G.subgroup([sigma,rho])
sage: order(H)
sage: order(rho^3*(sigma*rho^3)^2)
336
3
sage: F.<a,b> = FreeGroup()
sage: G = F / [a^7, b^2, a^3*(a*b^3)^2]
sage: G
sage: order(G)
Finitely presented group < a, b | a^7, b^2, a^3*(a*b^3)^2 >
2
This is an attempt of a solution in GAP. First, permutation group:
Now convert the group into an isomorphic fp group:
This group is given by 3 generators and the following relations:
and
rhoandsigmacorrespond to the following elements ofH:This group can be given as 2-generated:
and the images of
rhoandsigmainTare:That's quite unreadable, but using
SetReducedMultiplicationone could force immediate reduction when multiplying, keeping words short at extra cost per multiplication:This is still not what you may want, though, as you're interested in relations which are satisfied by
sandr, but hopefully simple enough to continue from here.P.S. You can also check that all three groups are indeed isomorphic: