This article gives a proof/explanation of the equivalence of multiple definitions for the term symmetric group:S4
View a complete list of pages giving proofs of equivalence of definitions
Statement
The projective general linear group of degree two over field:F3 (the field of three elements) is isomorphic to symmetric group:S4.
Related facts
Similar facts
What the proof technique says for other projective general linear groups
The proof technique shows that there is an injective homomorphism from
(order
) into
(order
). In the cases
(
) and
(
) the orders on both sides are equal, hence the injective homomorphism is an isomorphism. For
, the injective homomorphism is not an isomorphism.
Facts used
- First isomorphism theorem
- Equivalence of definitions of size of projective space
- Order formulas for linear groups of degree two
Proof
Step no. |
Assertion/construction |
Facts used |
Previous steps used |
Explanation
|
1 |
For any field , has a natural action on the set of all lines through the origin in . The kernel of this action is precisely the scalar matrices. |
|
|
[SHOW MORE]We know that  acts on  linearly, so it sends lines through the origin to lines through the origin. The scalar matrices send each line to itself. Conversely, suppose  fixes all lines. Let  be linearly independent vectors. Then,  and  for scalars  . If  , then  does not send  to a vector in the same line as  , hence does not preserve every straight line. This forces  , so  acts as a scalar.
|
2 |
The action in Step (1) descends to a faithful group action of on the set of all lines through the origin in , and hence an injective homomorphism from to the symmetric group on the set . |
Fact (1) |
Step (1) |
[SHOW MORE]follows because  is the quotient of  by the scalar matrices, which are precisely the kernel of the action.
|
3 |
For a finite field of size , has size . |
Fact (2) |
|
[SHOW MORE]The general formula for size of projective space of dimension  over a field of size  is  , or  . Plug  to get  .
|
4 |
For a finite field of size , , also denoted has order . |
Fact (3) |
|
[SHOW MORE]See Fact (3) for formulas. Explicitly, the order formula for  is  (obtained by counting the number of possible vectors in the first row times the number of possible vectors in the second row conditional to the first vector). The scalar matrices form a subgroup of size  , so the quotient has size  .
|
5 |
For the field of size three, we have and its order is and  |
|
Steps (3), (4) |
[SHOW MORE]By Step (3),  has size  , so the symmetric group on it is  , and its order is  . Also, by Step (4),  has order  .
|
6 |
For the field of size three, the injective homomorphism of Step (2) gives an isomorphism from to . |
|
Steps (2), (5) |
[SHOW MORE] Step (2) defines an injective homomorphism. Step (5) tells us that both the source and the target group have the same size. This forces the injective homomorphism to be surjective, and hence an isomorphism.
|
GAP implementation
The fact that the groups are isomorphic can be tested in any of these ways:
Command |
Functions used |
Output |
Meaning |
Memory usage
|
IsomorphismGroups(PGL(2,3),SymmetricGroup(4)) |
IsomorphismGroups, PGL, SymmetricGroup |
[ (3,4), (1,2,4) ] -> [ (1,4), (1,2,3) ] |
The output is an actual mapping of generating sets for the groups (as they happen to be stored in GAP) that induces an isomorphism. The fact that a mapping is output indicates that an isomorphism does exist. If the groups were not isomorphic, an output of fail would be returned. |
22826
|
IdGroup(PGL(2,3)) = IdGroup(SymmetricGroup(4)) |
IdGroup, PGL, SymmetricGroup |
true |
The ID of a group is uniquely determined by the group's isomorphism class, and non-isomorphic groups always have different IDs. This test can thus be used to check whether the groups are isomorphic. |
NA
|
StructureDescription(PGL(2,3)) |
StructureDescription, PGL |
"S4" |
The structure description of is "S4" meaning that it is the symmetric group of degree four. |
NA
|