小群表里15阶只有一个循环群,没Z3+Z5
12阶5个里有个怪点的:非交换半直积Z3+Z4
12 PermutationGroup(["(1,2,3)(4,6)(5,7)",
"(1,2)(4,5,6,7)"])
Non-abelian
Semi-direct product Z3 o Z4
G:=PermutationGroup<12|(1,2,3)(4,6)(5,7),(1,2)(4,5,6,7)>;
G;
f := NumberingMap(G);
> [ [ f(x*y) : y in G ] : x in G ];
Permutation group G acting on a set of cardinality 12
(1, 2, 3)(4, 6)(5, 7)
(1, 2)(4, 5, 6, 7)
[
[ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 ],
[ 2, 12, 1, 6, 4, 8, 9, 7, 5, 11, 3, 10 ],
[ 3, 1, 11, 5, 9, 4, 8, 6, 7, 12, 10, 2 ],
[ 4, 5, 6, 10, 11, 12, 1, 2, 3, 7, 8, 9 ],
[ 5, 9, 4, 12, 10, 2, 3, 1, 11, 8, 6, 7 ],
[ 6, 4, 8, 11, 3, 10, 2, 12, 1, 9, 7, 5 ],
[ 7, 8, 9, 1, 2, 3, 10, 11, 12, 4, 5, 6 ],
[ 8, 6, 7, 3, 1, 11, 12, 10, 2, 5, 9, 4 ],
[ 9, 7, 5, 2, 12, 1, 11, 3, 10, 6, 4, 8 ],
[ 10, 11, 12, 7, 8, 9, 4, 5, 6, 1, 2, 3 ],
[ 11, 3, 10, 9, 7, 5, 6, 4, 8, 2, 12, 1 ],
[ 12, 10, 2, 8, 6, 7, 5, 9, 4, 3, 1, 11 ]
]
G:=PermutationGroup<12|(1,2,3)(4,6)(5,7),(1,2)(4,5,6,7)>;
G;
f := NumberingMap(G);
> [ [ f(x*y) : y in G ] : x in G ];
Z3:=IntegerRing(3) ;
A3:=AdditiveGroup(Z3) ;
Z4:=IntegerRing(4) ;
A4:=AdditiveGroup(Z4) ;
SemiDirectProduct(A3, A4);
Permutation group G acting on a set of cardinality 12
(1, 2, 3)(4, 6)(5, 7)
(1, 2)(4, 5, 6, 7)
[
[ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 ],
[ 2, 12, 1, 6, 4, 8, 9, 7, 5, 11, 3, 10 ],
[ 3, 1, 11, 5, 9, 4, 8, 6, 7, 12, 10, 2 ],
[ 4, 5, 6, 10, 11, 12, 1, 2, 3, 7, 8, 9 ],
[ 5, 9, 4, 12, 10, 2, 3, 1, 11, 8, 6, 7 ],
[ 6, 4, 8, 11, 3, 10, 2, 12, 1, 9, 7, 5 ],
[ 7, 8, 9, 1, 2, 3, 10, 11, 12, 4, 5, 6 ],
[ 8, 6, 7, 3, 1, 11, 12, 10, 2, 5, 9, 4 ],
[ 9, 7, 5, 2, 12, 1, 11, 3, 10, 6, 4, 8 ],
[ 10, 11, 12, 7, 8, 9, 4, 5, 6, 1, 2, 3 ],
[ 11, 3, 10, 9, 7, 5, 6, 4, 8, 2, 12, 1 ],
[ 12, 10, 2, 8, 6, 7, 5, 9, 4, 3, 1, 11 ]
]
>> SemiDirectProduct(A3, A4);
|