The answer is no in general. I.e, there are finite non-isomorphic groups G and H such that there exists a bijection between their elements which also induces a bijection between their subgroups.
For this, I used two non-isomorphic groups which not only have the same subgroup lattice (which certainly is necessary), but also have the same conjugacy classes. There are two such groups of size 605, both a semidirect product (C11timesC11)rtimesC5 (see this site for details on the construction). In the small group library of GAP, these are the groups with id [ 605, 5 ] and. [ 605, 6 ]. These are provably non-isomorphic (you can construct the groups as described in the reference I gave, and then use GAPs IdSmallGroup command to verify that the groups described there are the same as the ones I am working with here). With a short computer program, one can now construct a suitable bijection.
First, let us take the two groups:
gap> G:=SmallGroup(605, 5);
<pc group of size 605 with 3 generators>
gap> H:=SmallGroup(605, 6);
<pc group of size 605 with 3 generators>
The elements of these groups are of order 1, 5 or 11, and there are 1, 484 and 120 of each. We will sort them in a "nice" way (that is, we try to match each subgroup of order 5 to another one, element by element) and obtain a bijection from this. First, a helper function to give us all elements in "nice" order:
ElementsInNiceOrder := function (K)
local elts, cc;
elts := [ One(K) ];
cc := ConjugacyClassSubgroups(K, Group(K.1));
Append(elts, Concatenation(List(cc, g -> Filtered(g,h->Order(h)=5))));
Append(elts, Filtered(Group(K.2, K.3), g -> Order(g)=11));
return elts;
end;;
Now we can take the elements in the nice order and define the bijection f:
gap> Gelts := ElementsInNiceOrder(G);;
gap> Helts := ElementsInNiceOrder(H);;
gap> f := g -> Helts[Position(Gelts, g)];;
Finally, we compute the sets of all subgroups of G resp. H, and verify that f induces a bijection between them:
gap> Gsubs := Union(ConjugacyClassesSubgroups(G));;
gap> Hsubs := Union(ConjugacyClassesSubgroups(H));;
gap> Set(Gsubs, g -> Group(List(g, f))) = Hsubs;
true
Thus we have established the claim with help of a computer algebra system. From this, one could now obtain a pen & paper proof for the claim, if one desires so. I have not done this in full detail, but here are some hints.
Say G is generated by three generators g1,g2,g3, where g1 generates the C5 factor and g2,g3 generate the characteristic subgroup C11timesC11. We choose a similar generating set h1,h2,h3 for H. We now define f in two steps: First, for 0leqn,m<11 it shall map gn2gm3 to hn2hm3.
This covers all elements of order 1 or 11, so in step two we specify how to map the remaining elements, which all have order 5. These are split into four conjugacy classes: gG1, (g21)G, (g31)G and (g41)G. We fix any bijection between gG1 and hH1 and extend that to a bijection on all elements of order 5 by the rule f((gg1)n)=f(gg1)n. With some effort, one can now verify that this is a well-defined bijection between G and H with the desired properties. You will need to determine the subgroup lattice in each case; linear algebra helps a bit, as well as the fact that all subgroups have order 1, 5, 11, 55, 121 (unique) or 605. I'll leave the details to the reader, as I myself am happy enough with the computer result.
No comments:
Post a Comment