I'm new to GAP, and I tried to adjust the code that ahulpke wrote at the link: Faithful permutation representation
to construct a faithful representation of the group $C_2\times (C_4\rtimes C_4)$ using "three orbits". I adujested the code by adding a subgroup $H_3$, and
cos:=Concatenation(RightCosets(G,H1),RightCosets(G,H2),RightCosets(G,H3));
But it didn’t work with me and I believe I made an error.
Do any GAP's codes exist that will give me a faithful permutation representation of a group with respect to provided three subgroups, where the intersection of both subgroups has a trivial core?
I appreciate your help, thank you!
enerators [ a, b, c ]> gap> H1:=SmallGroup(16,2); <pc group of size 16 with 4 generators> gap> H2:=SmallGroup(8,2); <pc group of size 8 with 3 generators> gap> H3:=SmallGroup(8,2); <pc group of size 8 with 3 generators> gap> cos:=Concatenation(RightCosets(G,H1),RightCosets(G,H2),RightCosets(G,H3)); Error, Variable: 'G' must
have a value not in any functio
n at stdin:9 – sonmar bardish Jan 02 '23 at 01:49
h, notG, and you need to use actual subgroups of your group, not just groups that are isomorphic to them. – ahulpke Jan 03 '23 at 03:51