Symmetric group:S6: Difference between revisions
No edit summary |
No edit summary |
||
| Line 6: | Line 6: | ||
* It is the [[member of family::symmetric group]] on a set of size six. Other equivalent definitions include: | * It is the [[member of family::symmetric group]] on a set of size six. Other equivalent definitions include: | ||
* It is the [[member of family::symplectic group]] <math>Sp(4,2)</math>, and hence also the [[member of family::projective symplectic group]] <math>PSp(4,2)</math>. | * It is the [[member of family::symplectic group]] <math>Sp(4,2)</math>, and hence also the [[member of family::projective symplectic group]] <math>PSp(4,2)</math>. | ||
Revision as of 01:29, 11 September 2009
This article is about a particular group, i.e., a group unique upto isomorphism. View specific information (such as linear representation theory, subgroup structure) about this group
View a complete list of particular groups (this is a very huge list!)[SHOW MORE]
Definition
The symmetric group , called the symmetric group of degree six, is defined in the following equivalent ways:
- It is the symmetric group on a set of size six. Other equivalent definitions include:
- It is the symplectic group , and hence also the projective symplectic group .
Elements
Upto conjugacy
For convenience, we take the underlying set here as .
There are eleven conjugacy classes, corresponding to the unordered integer partitions of (for more information, refer cycle type determines conjugacy class):
- , i.e., six cycles of size one: The identity element. (1)
- , i.e., one -cycle and four fixed points: The transpositions, such as . (15)
- , i.e., one -cycle and three fixed points: The -cycles, such as . (40)
- : The -cycles, such as . (90)
- : The -cycles, such as . (144)
- : The -cycles, such as . (120)
- , i.e., two -cycles, two fixed points: The double transpositions, such as . (45)
- , i.e., three -cycles: The triple transpositions, such as . (15)
- , i.e., one -cycle, one -cycle: Permutations such as .(120)
- , i.e., two -cycles: Permutations such as . (40)
- : Permutations such as . (90)
Of these, types (1), (3), (5), (7), (10), (11) are conjugacy classes of even permutations -- together these form the alternating group of degree six. The remaining types: (2), (4), (6), (8), (9), are odd permutations.
Upto automorphism
Under automorphisms, the following types get merged:
- Types (2) and (8): The transposition is related by an outer automorphism to the triple transposition .
- Types (3) and (10): The -cycle is related by an outer automorphism to the permutation .
- Types (4) and (11): The -cycle is related by an outer automorphism to the pemrutation .
- Types (6) and (9): The -cycle is related by an outer automorphism to the permutation .
The types (1), (5), and (7) remain unaffected: these conjugacy classes are also automorphism classes.
GAP implementation
Group ID
This finite group has order 720 and has ID 763 among the groups of order 720 in GAP's SmallGroup library. For context, there are groups of order 720. It can thus be defined using GAP's SmallGroup function as:
SmallGroup(720,763)
For instance, we can use the following assignment in GAP to create the group and name it :
gap> G := SmallGroup(720,763);
Conversely, to check whether a given group is in fact the group we want, we can use GAP's IdGroup function:
IdGroup(G) = [720,763]
or just do:
IdGroup(G)
to have GAP output the group ID, that we can then compare to what we want.