Homepage Solution manuals David S. Dummit Abstract Algebra Exercise 4.5.41 ($\mathrm{SL}_2(\mathbb{F}_4)\simeq A_5$)

Exercise 4.5.41 ($\mathrm{SL}_2(\mathbb{F}_4)\simeq A_5$)

Prove that SL 2 ( 𝔽 4 ) A 5 (cf Exercise 9, Section 2.1, for the definition of SL 2 ( 𝔽 4 ) .)

Answers

We mimic the second solution of Exercise 11.

Proof. There is field with 4 elements, unique up to isomorphism. Since x 2 + x + 1 is irreducible over 𝔽 2 , 𝔽 4 can be defined by 𝔽 4 𝔽 2 [ X ] ( x 2 + x + 1 ) 𝔽 2 [ X ] . If α is the class of x modulo x 2 + x + 1 , then

𝔽 4 = { 0 , 1 , α , 1 + α } , 1 + α = α 2 .

The vector plane P = 𝔽 4 × 𝔽 4 has exactly five lines, generated by ( 1 , γ ) for γ 𝔽 4 and also ( 0 , 1 ) . Consider the set S of these 5 lines. The group GL 2 ( 𝔽 4 ) acts on the plane P by the action defined by A ( a , b ) = A ( a b ) , and by restriction its subgroup G = SL 2 ( 𝔽 4 ) acts on P . Since A ( 𝜆𝑎 , 𝜆𝑏 ) = 𝜆𝐴 ( a , b ) , this action induces an action of G on the set S of the four lines of P , so affords a permutation representation

ϕ : SL 2 ( 𝔽 4 ) S 5 .

Let K be the kernel of this representation. Then I K (note that I = I since the characteristic of 𝔽 4 is 2 ). Let M = ( a b c d ) be any element of K . Since M preserves each line, there are some scalars λ 1 , λ 2 , λ 3 𝔽 3 such that

M ( 1 , 0 ) = λ 1 ( 1 , 0 ) , M ( 0 , 1 ) = λ 2 ( 0 , 1 ) , M ( 1 , 1 ) = λ 3 ( 1 , 1 ) .

which give

( a c ) = ( λ 1 0 ) , ( b d ) = ( 0 λ 2 ) ,

thus b = c = 0 , and M = ( a 0 0 d ) . Finally,

( a d ) = ( λ 3 λ 3 ) ,

thus a = d , so M = 𝑎𝐼 , and det ( M ) = a 2 = 1 . Since α 2 = 1 + α 1 and ( α 2 ) 2 = α 1 , then a = 1 . We obtain

ker ( ϕ ) = { I } ,

so the action of SL 2 ( 𝔽 4 ) on the set S is faithful, and SL 2 ( 𝔽 4 ) is isomorphic to a subgroup of S 5 :

SL 2 ( 𝔽 4 ) H , H S 5 . (1)

For q = 4 ,

| GL 2 ( 𝔽 4 ) | = ( q 2 1 ) ( q 2 q ) = 15 12 = 180 .

Consider now the map

φ { GL 2 ( 𝔽 4 ) 𝔽 4 × A det ( A )

where 𝔽 4 × is a group of order 3 .

Then

  • φ is a homomorphism, because φ ( 𝐴𝐵 ) = det ( 𝐴𝐵 ) = det ( A ) det ( B ) = φ ( A ) φ ( B ) .
  • φ is surjective : if λ 𝔽 4 , then det ( M ) = λ , where M = ( λ 0 0 1 ) GL 2 ( 𝔽 4 ) .
  • Let A GL 2 ( 𝔽 4 ) . Then A ker ( φ ) if and only if det ( A ) = 1 , so

    ker ( φ ) = SL 2 ( 𝔽 4 ) .

The first isomorphism Theorem gives GL 2 ( 𝔽 4 ) SL 2 ( 𝔽 4 ) 𝔽 4 × , thus

| SL 2 ( 𝔽 4 ) | = | GL 2 ( 𝔽 4 ) | 3 = 60 .

So | SL 2 ( 𝔽 4 ) | = | A 5 | , and by (1), SL 2 ( 𝔽 4 ) is isomorphic to a subgroup of A 5 , therefore

SL 2 ( 𝔽 4 ) A 5 .

Note : The center of SL 2 ( 𝔽 4 ) is Z ( SL 2 ( 𝔽 4 ) ) = { I } , thus

PSL 2 ( 𝔽 4 ) = SL 2 ( 𝔽 4 ) A 5

is a simple group: this is not an exception.

With Sagemath:

Last login: Fri Apr  3 09:40:46 on console
bonjour Richard,vous allez accomplir de grandes choses aujourd’hui
developpement $ sage

sage: F.<a> = GF(2**2, name=’a’, modulus=x^2 + x +1 )
sage: G = SL(2,F); G.order()
60
sage: G.gens()

(
[    a     0]  [1 1]
[    0 a + 1], [1 0]
)
sage: G.center().order()
1

User profile picture
2026-04-03 10:53
Comments