-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathChristopherButler.tex
More file actions
executable file
·2313 lines (1860 loc) · 158 KB
/
Copy pathChristopherButler.tex
File metadata and controls
executable file
·2313 lines (1860 loc) · 158 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
\documentclass[a4paper , 11pt]{book}
\usepackage{amsmath}
\usepackage[english]{babel}
\usepackage{xcolor}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsthm}
\usepackage[utf8]{inputenc}
\usepackage[colorinlistoftodos]{todonotes}
\usepackage{graphicx}
\usepackage{mathrsfs}
\usepackage{amsbsy}
\usepackage{array}
\usepackage{tabu}
\usepackage[nottoc]{tocbibind}
\usepackage[toc,page]{appendix}
\usepackage{lipsum,appendix}
\usepackage{tikz}
\usepackage[margin=1.5in]{geometry}
\newcommand{\minus}{\scalebox{0.75}[1.0]{$-$}}
\newtheorem{theorem}{Theorem}[chapter]
\newtheorem*{theorem-non}{Theorem}
\newtheorem{corollary}[theorem]{Corollary}
\newtheorem{lemma}[theorem]{Lemma}
\newtheorem{proposition}[theorem]{Proposition}
\theoremstyle{definition}
\newtheorem{definition}{Definition}[section]
\newtheorem*{definition-non}{Definition}
\theoremstyle{remark}
\newtheorem*{remark}{Remark}
\newtheorem{notation}{Notation}
\newtheorem*{notation-non}{Notation}
\newtheorem*{lagrange}{\emph{\textbf{Lagrange's Theorem}}}
\newtheorem*{cauchy}{\emph{\textbf{Cauchy's Theorem}}}
\newtheorem*{1stiso}{\emph{\textbf{First Isomorphism Theorem}}}
\newtheorem*{2ndiso}{\emph{\textbf{Second Isomorphism Theorem}}}
\newtheorem*{3rdiso}{\emph{\textbf{Third Isomorphism Theorem}}}
\newtheorem*{1stsylow}{\emph{\textbf{First Sylow Theorem}}}
\newtheorem*{2ndsylow}{\emph{\textbf{Second Sylow Theorem}}}
\newtheorem*{3rdsylow}{\emph{\textbf{Third Sylow Theorem}}}
\newtheorem*{4thsylow}{\emph{\textbf{Fourth Sylow Theorem}}}
\newtheorem*{orbstab}{\emph{\textbf{Orbit-Stabiliser Theorem}}}
\newcolumntype{P}[1]{>{\centering\arraybackslash}p{#1}}
\setlength{\parindent}{0pt}
\newcommand{\inv}{^{\raisebox{.2ex}{$\scriptscriptstyle-1$}}}
\begin{document}
\frontmatter
\title{Dickson's Classification of Finite Subgroups of the Two-dimensional Special Linear Group over an Algebraically Closed Field}
\author{Christopher Butler}
\date{\today}
\maketitle
\cleardoublepage
\begin{center}
\Large \textbf{Popular Science Summary}
\end{center}
In order to explain what this paper is about, it is necessary to first define a few of the mathematical concepts which it concerns. A \textit{group} is a set of objects, called \textit{elements}, together with a rule, called an \textit{operation}, which tells us how two elements combine with each other to make a third. Furthermore, to be considered a group it must also satisfy 4 conditions, called \textit{axioms}. One of which is that the group must be \textit{closed} under it's operation. This means that whenever any two elements in the group are combined, the resulting element is also part of the group. The remaining axioms require that the group must also be \textit{associative}, have an \textit{identity} element and each element must have an \textit{inverse}. The way in which the elements in a group act with each other is called the group's \textit{structure}. If 2 groups have the same number of elements and share the same structure, then they are regarded as being \textit{isomorphic} to each other, which essentially means that they equivalent. Many everyday things can be regarded as groups, such as the symmetries of geometrical objects, or the number systems we use. \\
\\
The set of 2 x 2 matrices whose \textit{determinant} is equal to 1, together with the operation of ordinary matrix multiplication, forms a group called the \textit{special linear group}. This is a group because the product of 2 matrices has a determinant equal to the product of the determinants of the 2 matrices, so since 1 x 1 = 1, this new element also belongs to the group, hence the axiom of being closed is satisfied. Furthermore, it is crucial that the entries in the matrices are taken from a specified \textit{ring} or \textit{field}. Rings and fields are, like groups, abstract mathematical objects, albeit they satisy even more axioms than groups do. Crucially, rings and fields have both an additive and a multiplicative identity. \\
\\
This paper focuses on $SL(2,F)$, which is the two-dimensional special linear group whose entries are taken from an \textit{algebraically closed} field. Algebraically closed fields are infinite in size, which means that the resulting special linear group is also infinite. A \textit{subgroup} of a group is simply a group with the added requirement that each of it's elements must also belong to the original group. Thus a finite subgroup of $SL(2,F)$ is any finite set of elements belonging to this infinite group $SL(2,F)$, which satisfy the 4 axioms of being a group. \\
\\
This paper classifies all the possible structures which a finite subgroup of $SL(2,F)$ could have. The result has implications within the study of finite \textit{simple} groups. This classification was first done by American mathematician Leonard Eugene Dickson in 1901. The purpose of this reformulation is to make it accessible to a wider audience by providing a more detailed explanation at the various stages of the proof.
\cleardoublepage
\begin{center}
\Large \textbf{Abstract}
\end{center}
This paper is a reformulation of Leonard Dickson's complete classification of the finite subgroups of the two-dimensional special linear group over an arbitrary algebraically closed field, $SL(2,F)$. The approach is to construct a class equation of the conjugacy classes of maximal abelian subgroups of an arbitrary finite subgroup of $SL(2,F)$. In turn, this leads to only 10 possible classes of structures of this subgroup up to isomorphism.
\cleardoublepage
\begin{center}
\Large \textbf{Acknowledgements}
\end{center}
I would like to take this opportunity to thank my advisor Arne Meurman. This paper would not have been possible without the guidance and insight he gave during our weekly discussions.
\cleardoublepage
\tableofcontents
\newpage\phantom{blabla}
\thispagestyle{plain}
\mainmatter
\setcounter{chapter}{-1}
\newpage
\thispagestyle{plain}
\begin{center}
\Large \textbf{Introduction}
\end{center}
\addcontentsline{toc}{section}{Introduction}
The general linear group of degree $n$ is the group formed by the set of $n$ x $n$ invertible matrices, together with the operation of ordinary matrix multiplication, with the entries of each matrix coming from a specific ring or field. The special linear group is a subgroup of the general linear group, namely those matrices with a deteminant equal to 1. In this work, we focus on the two-dimensional case, with entries coming from an algebraically closed field, $F$. This is denoted by $GL(2,F)$ for the general linear group and $SL(2,F)$ for the special linear group. Recall that an algebraically closed field is a field which contains the roots to any non-constant polynomial in $F[x]$, with coefficients in $F$. They are infinite in size and two such examples are the field of complex numbers and the field of algebraic numbers. \\
\vspace{-0.2mm}
\\
In 1901, Leonard Eugene Dickson published his book \textit{Linear Groups, with an Exposition of the Galois Field Theory} \cite{dickson}. In this work, he obtains a complete classification of the finite subgroups of $SL(2,F)$. This paper is a reformulation of Dickson's classification theorem and loosely follows Chapter 3, $\mathsection$6 in Michio Suzuki’s book \textit{Group Theory I} \cite{suzuki}. This classification theorem is of particular interest in the study of finite simple groups and Suzuki himself describes it as \textit{one of the indispensable tools in studying the basic properties of linear groups which underlie the concept of $p$-stability} \cite[p.392]{suzuki}. \\
\vspace{-0.2mm}
\\
The paper begins with a brief overview of some preliminary requirements which are necessary to the understanding of the proof. They are standard group theory results which may or may not have been covered in a first course given on group theory, the majority of which are cited without proof. A more advanced reader may choose to skip over this chapter. \\
\vspace{-0.2mm}
\\
The main body of work begins in Chapter 1 and focuses on the infinite group $SL(2,F)$. We make some important observations about the conjugacy of the elements in this group and the centre of the group. Some important elements and subgroups of $SL(2,F)$ are defined and their centralisers and normalisers determined. We show that the action of $SL(2,F)$ on the projective line is triply transitive, which is a vital tool used several times throughout the paper in determining group structure. \\
\vspace{-0.2mm}
\\
In Chapter 2 we consider an arbitrary finite subgroup $G$ of $SL(2,F)$. The notion of a \textit{maximal abelian subgroup} is introduced and utilised to construct a class equation, whereby $G$ is partitioned into the conjugacy classes of it's maximal abelian subgroups. This plays a crucial role in determining the possible structures of $G$. We find that the number and type of these conjugacy classes are restricted to just 6 different cases. \\
\vspace{-0.2mm}
\\
The final chapter examines these 6 cases individually. In each case we determine the possible structures that $G$ could have. The 10 possible structures of $G$ are finally consolidated into the classification theorem.
\newpage\phantom{blabla}
\thispagestyle{plain}
\chapter[Preliminaries]{Preliminaries}
\chaptermark{Preliminaries}
This section briefly outlines some standard group theory results which perhaps may not have been covered in a first course in Group Theory. Since they are not the main focus of this paper, most of the proofs have been omitted. A more advanced reader may choose to skip this first chapter, using it only for reference purposes as and when the results are subsequently cited.
\section{Some Elementary Theorems}
The following theorems are all well-known fundamental results in group theory. If the reader is interested in the proofs, they can be found in Hungerford \cite{hungerford}.
\begin{lagrange}\label{lagrange} \textit{Let $G$ be a finite group. Then the order of any subgroup of $G$ divides the order of $G$.} \\
\end{lagrange}
\begin{1stiso}\label{1stiso} \textit{Let $\phi :G \rightarrow G'$ be a homomorphism of groups. Then, $$G/Ker \; \phi \cong Im \; \phi.$$ Hence, in particular, if $\phi$ is surjective then, $$G/Ker \; \phi \cong G'.$$} \\
\end{1stiso}
\vspace{-10mm}
\begin{2ndiso}\label{2ndiso} \textit{Let $H$ and $N$ be subgroups of $G$, and $N \vartriangleleft G$. Then, $$H/H \cap N \cong HN/N.$$} \\
\end{2ndiso}
\vspace{-10mm}
\begin{3rdiso}\label{3rdiso} \textit{Let $H$ and $K$ be normal subgroups of $G$ and $K \subset H$. Then $H/K$ is a normal subgroup of $G/K$ and, $$(G/K)/(H/K) \cong G/H.$$} \\
\end{3rdiso}
\vspace{-10mm}
\begin{cauchy}\label{cauchy} \textit{If the order of a finite group $G$ is divisible by a prime number $p$, then $G$ has an element of order $p$.} \\
\end{cauchy}
\section{Sylow Theory}
In 1872, Norweigian mathematician Peter Ludwig Sylow published his theorems regarding the number of subgroups of a fixed order that a given finite group contains. Today these are collectively known as the Sylow Theorems and play a vital role in determining the structure of finite groups. I will use the results of these theorems several times throughout this paper and I state them here without proof. If the reader would like to read further, the proofs can be found in most introductory texts on group theory, such as Bhattacharya \cite{bhattacharya}, except Corollary \ref{5thsylow} which can be found in Alperin and Bell \cite[p.64]{alperin} . \\
\begin{definition-non} Let $G$ be a finite group and $p$ a prime, a \textbf{Sylow $\pmb{p}$-subgroup} of $G$ is a subgroup of order $p^r$, where $p^{r+1}$ does not divide the order of $G$. \\
\\
Let $p$ be a prime. A group $G$ is called a \textbf{$\pmb{p}$-group} if the order of each of it's elements is a power of $p$. Similarly, a subgroup $H$ of $G$ is called a \textbf{$\pmb{p}$-subgroup} if the order of each of it's elements is a power of $p$.
\end{definition-non}
In each of the following results, $G$ is a finite group of order $p^r m$, where $p$ is a prime which does not divide $m$. \\
\\
\makebox[\textwidth][s]{\textbf{First Sylow Theorem.} \textit{If $p^k$ divides $|G|$, then $G$ has a subgroup of order $p^k$.}} \\
\begin{2ndsylow} \textit{All Sylow $p$-subgroups of G are conjugate.} \\
\end{2ndsylow}
\begin{3rdsylow} \textit{The number of Sylow $p$-subgroups $n_p$ divides $m$ and satisfies $n_p \equiv 1 ($mod $p)$.} \\
\end{3rdsylow}
\begin{corollary}\label{4thsylow} \textit{A Sylow $p$-subgroup of $G$ is unique if and only if it is normal.} \\
\end{corollary}
\begin{corollary}\label{5thsylow} \textit{Any $p$-subgroup of $G$ is contained in a Sylow $p$-subgroup.} \\
\end{corollary}
\section{Group Action}
\begin{definition-non} Let $G$ be a group and $X$ be a set. Then $G$ is said to \textbf{act} on $X$ if there is a map $\phi : G \times X \rightarrow X$, with $\phi(a,x)$ denoted by $a^*x$, such that for $a,b \in G$ and $x \in X$, the following 2 properties hold:
\begin{align*} &(i) \quad a\,^*(b\,^*x) = (ab)^*x,
\\ &(ii) \quad I_G\,^*x = x.
\end{align*}
The map $\phi$ is called the \textbf{group action} of $G$ on $X$.
\end{definition-non}
\begin{definition-non} Let $G$ be a group acting on a set $X$ and let $x \in X$. Then the set,
\begin{align*} Stab(x) = \{ g \in G : gx = x \},
\end{align*}
is called the \textbf{stabiliser} of $x$ in $G$. Each $g$ in $S_G(x)$ is said to \textbf{fix} $x$, whilst $x$ is said to be a \textbf{fixed point} of each $g$ in $S_G(x)$. Also, the set,
\begin{align*} \text{Orb}(x) = \{ gx : g \in G \},
\end{align*}
is called the \textbf{orbit} of $x$ in $G$.
\end{definition-non}
The orbit and the stabiliser of an element are closely related. The following theorem is a consequence of this relationship and it will be useful throughout this paper. \\
\begin{orbstab} \textit{Let $G$ be a finite group acting on a set $X$. Then for each $x \in X$}, $$|G| = |\text{Orb}(x)| |\text{Stab}(x)|.$$ \\
\end{orbstab}
The following standard theorem will all play a vital roll later on.
\begin{theorem}\label{symhomoker} Let $G$ be a group and $H$ a subgroup of $G$ of finite index $n$. Then there is a homomorphism $\phi : G \longrightarrow S_n$ such that,
\begin{align*} ker(\phi) = \bigcap\limits_{x \in G} x H x^{-1}.
\end{align*}
\end{theorem}
\begin{proof} See \cite[p.110]{bhattacharya} for proof.
\end{proof}
\section{Conjugation}
\begin{definition-non}
Let $G$ be a group and $a$ an element of $G$. An element $b \in G$ is said to be \textbf{conjugate} to $a$ if $b=xax^{-1}$ for some $x \in G$. \\
\\
Let $H_1$ be a proper subgroup of $G$ and fix $x \in G \setminus H_1$. The set $H_2 = \{g \in G : g= xh_1x^{-1}$, $\forall h_1 \in H_1\}$ is said to be a \textbf{conjugate subgroup} of $H_1$. We write $H_2 = xH_1x^{-1}$. It is trivial to show that $H_2$ is a subgroup of $G$.
\end{definition-non}
Conjugation plays an important roll thoughout the paper, in particularly the following properties about conjugate elements and subgroups.
\begin{proposition}\label{conjugateprop} Let $a$, $b$ be conjugate elements of a group $G$ and $A$, $B$ be conjugate subgroups of $G$. Then the following properites hold: \vspace{3mm} \\
(i) If either $a$ or $b$ has finite order, then both $a$ and $b$ have the same order. \vspace{3mm} \\
(ii) $A \cong B$. \\
\end{proposition}
\begin{proof}
(i) Since $a$ and $b$ are conjugate elements in $G$, $b = xax^{-1}$ for some $x \in G$. Suppose that $b$ has finite order and $b^k = I_G$ for some $k \in \mathbb{Z}^+$,
\begin{equation*} I_G = b^k = (xax^{-1})^k = xa^{k}x^{-1} \Rightarrow a^k = I_G.
\end{equation*}
Alternatively suppose that $a$ has finite order and $a^k = I_G$ for some $k \in \mathbb{Z}^+$,
\begin{equation*} a^k = I_G \Rightarrow I_G = xa^{k}x^{-1} = (xax^{-1})^k = b^k.
\end{equation*}
Thus $a^k = I_G \iff b^k = I_G$. Thus $a$ and $b$ have the same order. \\
\\
(ii) Since $A$ and $B$ are conjugate, there exists some $x \in G$ such that $B=xAx^{-1}$. Define the map $\phi$ by,
\begin{align*}
\phi:A &\longrightarrow xAx^{-1}, \\
a_1 &\longmapsto xa_1x^{-1} \tag{$\forall \; a_1 \in A$}. \end{align*}
We show that $\phi$ is a homomorphism between $A$ and $B=xAx^{-1}$.
\begin{equation*}
\phi(a_1a_2) = xa_1a_2x^{-1} = ( xa_1x^{-1})( xa_2x^{-1}) = \phi(a_1) \phi(a_2).
\end{equation*}
\\
Now consider an arbitrary $k \in ker(\phi)$.
\begin{equation*}
k \in ker(\phi) \iff \phi(k) = I_G \iff xkx^{-1} = I_G \iff k = I_G.
\end{equation*}
\\
So $ker(\phi) = \{ I_G \}$ which means $\phi$ is injective. Now let $b_1 \in B = xAx^{-1}$. Thus $b_1 = xa_1x^{-1}$ for some $a_1 \in A$. Since $a_1 \in A$, $\phi(a_1) = xa_1x^{-1} = b_1$ and so $\phi$ is surjective. Thus $\phi$ is an isomorphism and $A$ and $B$ are isomorphic.
\end{proof}
The final part of this proposition is an important result which shows that since conjugate subgroups are isomorphic, conjugation preserves group structure and properties. In particular, conjugate subgroups have the same cardinality and if one is abelian or cyclic, then so is the other.
\section{Automorphism}
\begin{definition-non} An \textbf{automorphism} of a group $G$ is a isomorphism from $G$ onto itself. The set of all automorphisms of $G$ forms a group under composition and is denoted by $Aut(G)$.\\
\\
An \textbf{inner automorphism} is an automorphism whereby $G$ acts on itself by conjugation. That is, each $g \in G$ induces a map, $i_g : G \rightarrow G$, where $i_g(x) = g x g^{-1}$ for each $x \in G$. The set of all inner automorphisms is denoted by $Inn(G)$ and is a normal subgroup of $Aut(G)$ (For proof of this see \cite[p.104]{bhattacharya}.
\end{definition-non}
\section{Direct Product}
\begin{definition-non} If $G_1, G_2,...,G_n$ are groups, we define a coordinate operation on the Cartesian product $G_1 \times G_2 \times...\times G_n$ as follows:
\begin{align*} (a_1, a_2, ..., a_n) (b_1, b_2, ..., b_n) = (a_1 b_1, a_2 b_2, ..., a_n b_n),
\end{align*}
where $a_i, b_i \in G_i$. It is easy to verify that $G_1 \times G_2 \times...\times G_n$ is a group under this operation. This group is called the \textbf{direct product} of $G_1, G_2,...,G_n$.
\end{definition-non}
\begin{lemma} \label{directproductN} Let $A$ and $B$ be normal subgroups of $G$ with $A \cap B = \{ I_G \}$. Then $AB \cong A \times B$.
\end{lemma}
\begin{proof}
First note that the elements of $A$ commute with the elements of $B$, since $\forall \; a \in A$ and $b \in B$,
\begin{align*} aba^{-1}b^{-1} &= a(ba^{-1}b^{-1}) \in A, \tag{since $A \vartriangleleft G$}
\\ aba^{-1}b^{-1} &= (aba^{-1})b^{-1} \in B. \tag{since $B \vartriangleleft G$}
\end{align*}
Therefore $aba^{-1}b^{-1} \in A \cap B = \{ I_G \}$, and $ab = ba$. \\
\\
Define the operation $*$ on $A \times B$ by $(a_1 , b_1)*(a_2 , b_2) = (a_1 a_2 , b_1 b_2)$. Now define the map $\phi$ by,
\begin{align*}
\phi:A \times B &\longrightarrow AB, \\
(a,b) &\longmapsto ab \tag{$\forall \; a \in A, \; b\in B$}. \end{align*}
We show that $\phi$ is a homomorphism between $A \times B$ and $AB$.
\vspace{-0.5mm}
\begin{align*}
\phi((a_1, b_1)*(a_2, b_2)) &= \phi (a_1 a_2 , b_1 b_2) \\
&= a_1 a_2 b_1 b_2 \\
&= a_1 b_1 a_2 b_2 \\
&= \phi(a_1 , b_1) \phi(a_2 , b_2). \end{align*}
Thus $\phi$ is a homomorphism and clearly surjective. It remains to show that it is injective.
\vspace{-0.5mm}
\begin{align*} \phi(a_1 , b_1) &= \phi(a_2 , b_2), \\
a_1 b_1 &= a_2 b_2, \\
a_1 b_1 b_2^{-1} &= a_2, \\
b_1 b_2^{-1} &= a_1^{-1} a_2 \in A \cap B.
\end{align*}
Since $A \cap B = \{ I_G \}$, we have $b_1 b_2^{-1} = I_G = a_1^{-1} a_2$ and so $b_1 = b_2$, $a_1 = a_2$ and $\phi$ is injective. So $\phi$ is an isomorphism and $AB \cong A \times B$.
\\
\end{proof}
\begin{corollary} \label{directproductZ} Let $A$ and $B$ be subgroups of $G$. If $A \cap B = \{ I_G \}$ and $ab = ba$ $\forall a \in A$, $b \in B$. Then $AB \cong A \times B$.
\end{corollary}
\begin{proof} Since $A$ and $B$ commute, the argument outlined in Lemma \ref{directproductN} also holds here.
\end{proof}
\newpage
\chapter[Properties of $\pmb{SL(2,F)}$ over an Algebraically Closed Field]{Properties of $\pmb{SL(2,F)}$ over an Algebraically Closed Field}
\chaptermark{Algebraically Closed Field}
\section{General Notation}
Throughout this paper, $F$ will denote an arbitrary algebraically closed field. For convenince we let $L$ denote the infinite group $SL(2,F)$. The letter $p$ will be used to denote the characteristic of $F$. Recall that the characteristic of a field is the smallest number of times which the multilplicative identity of the field, say 1, needs to be summed to reach the additive identity of the field, say 0. If there is no such number, then we regard $p$ as being zero, otherwise it is always a prime. \\
\\
Unless otherwise stated, the letters $\alpha, \beta, \gamma, \delta, \lambda, \mu$, and $\sigma$ will denote elements of $F$ and $\omega$ and $\rho$ elements of $F^*$, where $F^*$ are the non-zero elements of $F$.
\section[Subsets of $L$]{Subsets of $\pmb{L}$}
In this chapter we make some useful observations about specific elements and subgroups of $L$. We define the following elements of $L$ as follows.
\begin{align*} d_\omega = \begin{bmatrix} \omega & 0 \\ 0 & \omega^{-1} \end{bmatrix}, \qquad t_\lambda = \begin{bmatrix} 1 & 0 \\ \lambda & 1 \end{bmatrix}, \qquad w = \begin{bmatrix} 0 & 1 \\ \minus 1 & 0 \end{bmatrix} \tag{$\omega \in F^*$ and $\lambda \in F$}.
\end{align*}
We also define the following subsets of $L$.
\begin{align*} D= \{d_\omega\}, \qquad T= \{t_\lambda\}, \qquad H=DT.
\end{align*}
Observe that $H$ is the set of all lower triangular matrices in $L$ whilst $Dw$ is the set of all anti-diagonal matrices.
\begin{equation} \label{Hlowertri} H = DT = \{d_\omega t_\lambda\} = \left\{ \begin{bmatrix} \omega & 0 \\ 0 & \omega^{-1} \end{bmatrix} \begin{bmatrix} 1 & 0 \\ \lambda & 1 \end{bmatrix} \right\} = \left\{ \begin{bmatrix} \omega & 0 \\ \lambda \omega^{-1} & \omega^{-1} \end{bmatrix} \right\}. \end{equation}
\begin{equation} \label{antidiag} Dw = \{ d_\omega w \} = \left\{ \begin{bmatrix} \omega & 0 \\ 0 & \omega^{-1} \end{bmatrix} \begin{bmatrix} 0 & 1 \\ -1 & 0 \end{bmatrix} \right\} = \left\{ \begin{bmatrix} 0 & \omega \\ \minus\omega^{-1} & 0 \end{bmatrix} \right\}. \end{equation}
These elements and subgroups are fundamental to this paper and this notation will be used throughout.
\begin{lemma}\label{6.1}
For any $\omega, \rho \in F^*$ and $\lambda, \mu \in F$ we have:
\begin{align*} d_\omega d_{\rho}= d_{\omega\rho}, \quad t_\lambda t_\mu = t_{\lambda + \mu}, \quad d_\omega t_\lambda d^{-1}_\omega = t_\sigma \quad \! \! (\sigma=\lambda \omega^{-2}), \quad w d_\omega w^{-1} = d^{-1}_\omega.
\end{align*}
\end{lemma}
\vspace{0mm}
\begin{proof}
These identities are all easily shown by matrix multiplication:
\begin{align*} d_\omega d_\rho = \begin{bmatrix} \omega & 0 \\ 0 & \omega\inv \end{bmatrix} \begin{bmatrix} \rho & 0 \\ 0 & \rho\inv \end{bmatrix} &= \begin{bmatrix} \omega \rho & 0 \\ 0 & \omega\inv \rho\inv \end{bmatrix} = d_{\omega \rho}.
\\[1.5ex]
t_\lambda t_\mu = \begin{bmatrix} 1 & 0 \\ \lambda & 1 \end{bmatrix} \begin{bmatrix} 1 & 0 \\ \mu & 1 \end{bmatrix} &= \begin{bmatrix} 1 & 0 \\ \lambda + \mu & 1 \end{bmatrix} = t_{\lambda + \mu}.
\\[1.5ex]
d_\omega t_\lambda d^{-1}_\omega = \! \begin{bmatrix} \omega & 0 \\ 0 & \omega\inv \end{bmatrix} \begin{bmatrix} 1 & 0 \\ \lambda & 1 \end{bmatrix} \begin{bmatrix} \omega\inv & 0 \\ 0 & \omega \end{bmatrix} &= \begin{bmatrix} \omega & 0 \\ 0 & \omega\inv \end{bmatrix} \! \begin{bmatrix} \omega\inv & 0 \\ \lambda \omega\inv & \omega \end{bmatrix} \! = \! \begin{bmatrix} 1 & 0 \\ \lambda \omega^{-2} & 1 \end{bmatrix} \! = t_\sigma.
\\[1.5ex]
w d_\omega w\inv = \begin{bmatrix} 0 & 1 \\ \minus 1 & 0 \end{bmatrix} \begin{bmatrix} \omega & 0 \\ 0 & \omega\inv \end{bmatrix} \begin{bmatrix} 0 & \minus 1 \\ 1 & 0 \end{bmatrix} &= \begin{bmatrix} 0 & 1 \\ \minus 1 & 0 \end{bmatrix} \begin{bmatrix} 0 & \minus \omega \\ \omega\inv & 0 \end{bmatrix} \! = \! \begin{bmatrix} \omega\inv & 0 \\ 0 & \omega \end{bmatrix} \!= d^{-1}_\omega. \end{align*}
\end{proof}
\begin{lemma}\label{6.1b}
(i) The sets $D$ and $T$ are subgroups of $L$ and
\begin{equation*} D\cong F^*, \qquad T \cong F. \end{equation*}
(ii) $T$ is a normal subgroup of $H$ and $H / T \cong D$.
\end{lemma}
\vspace{0mm}
\begin{proof}
(i) The function $\psi: F^* \rightarrow D$ defined by $\psi(\omega) = d_\omega$ is a homomorphism between the group $F^*$ under normal multiplication and $D$ under normal matrix multiplication:
\begin{align*} \psi(\omega \rho) = d_{\omega \rho} = d_\omega d_\rho = \psi(\omega) \psi(\rho). \tag{by Lemma \ref{6.1}}
\end{align*}
Observe that $\psi$ is trivially injective and surjective and thus an isomorphism. So $D\cong F^*$ and $D$ is a subgroup of $L$.\\
\\
The function $\phi: F \rightarrow T$ defined by $\phi(\lambda) = t_\lambda$ is a homomorphism between the group $F$ under addition and $T$ under normal matrix multiplication:
\begin{align*} \phi(\lambda + \mu) = t_{\lambda + \mu} = t_\lambda t_\mu = \phi(\lambda) \phi(\mu). \tag{by Lemma \ref{6.1}}
\end{align*}
It's clear that $\phi$ is injective and surjective and thus an isomorphism. So $ T \cong F$ and $T$ is a subgroup of $L$. \\
\\
(ii) Let $t_\mu$ and $d_\omega t_\lambda$ be arbitrary elements of $T$ and $H$ respectively. Conjugating $t_\mu$ by $d_\omega t_\lambda$ gives,
\begin{align*} (d_\omega t_\lambda) t_\mu (d_\omega t_\lambda)^{-1} &= (d_\omega t_\lambda) t_\mu (t^{-1}_\lambda d^{-1}_\omega) \\[1.5ex]
&=
d_\omega (t_\lambda t_\mu t_{-\lambda}) d^{-1}_\omega \qquad \tag{since $t^{-1}_\lambda=t_{-\lambda}$} \\[1.5ex]
&=
d_\omega t_\mu d^{-1}_\omega \tag{by Lemma \ref{6.1}} \\[1.5ex]
&= t_\sigma \in T. \tag{where $\sigma = \mu \omega^{-2}$ by Lemma \ref{6.1}}
\end{align*}
Since $t_\mu$ was chosen arbitrarily from $T$ we have ($d_\omega t_\lambda) T (d_\omega t_\lambda)^{-1} = T$ and since $d_\omega t_\lambda$ was chosen arbitrarily from $H$, we have that $T \vartriangleleft H$. \\
\\
The function $\pi: H \rightarrow D$ defined by $\pi(d_\omega t_\lambda) = d_\omega$ is a homomorphism between $H$ under normal matrix multiplication and $D$ under normal matrix multiplication:
\begin{align*} \pi(d_\omega t_\lambda d_\rho t_\mu) &= \pi(d_\omega d_\rho t_\sigma t_\mu) \tag{where $\sigma = \lambda \rho^{2}$ by Lemma \ref{6.1}}
\\ &= d_\omega d_\rho
\\ &= \pi(d_\omega t_\lambda)\pi(d_\rho t_\mu).
\end{align*}
We see that $\pi$ is trivially surjective and has kernel
\begin{align*} ker(\pi) &= \{ d_\omega t_\lambda \in H : \pi(d_\omega t_\lambda) = I_L \} = T.
\end{align*}
Thus by the First Isomorphism Theorem,
\begin{align*} H / ker(\pi) &\cong \text{Im}(\pi), \\
H / T &\cong D.
\end{align*}
\end{proof}
\section[The Centre of $L$]{The Centre of $\pmb{L}$}
\begin{definition-non}
The \textbf{centre} $Z(G)$ of a group $G$ is the set of elements of $G$ that commute with every element of $G$.
\begin {equation*} Z(G) = \{ z \in G : \forall g \in G, \hspace{6pt} gz=zg \}. \end{equation*}
It is an immediate observation that $Z(G)$ is a normal subgroup of $G$, since for each $z \in Z$, $gzg^{-1} = gg^{-1}z = z$, $\forall g \in G$. It's also clear that a group is abelian if and only if $Z(G)=G$.
\end{definition-non}
For ease of notation, $Z(L)$ will be denoted simply by $Z$ throughout the rest of this paper.
\begin{lemma}\label{6.2}
$Z = \langle \minus I_L \rangle$.
\end{lemma}
\begin{proof} Take an arbitrary element $x=\begin{bmatrix} \alpha & \beta \\ \gamma & \delta \end{bmatrix} \in L$ and an arbitrary element $z = \begin{bmatrix} z_1 & z_2 \\ z_3 & z_4 \end{bmatrix} \in Z$ and consider their product:
\begin{align}\label{myeq1} zx = \begin{bmatrix} z_1 & z_2 \\ z_3 & z_4 \end{bmatrix} \begin{bmatrix} \alpha & \beta \\ \gamma & \delta \end{bmatrix} &= \begin{bmatrix} \alpha & \beta \\ \gamma & \delta \end{bmatrix} \begin{bmatrix} z_1 & z_2 \\ z_3 & z_4 \end{bmatrix} = xz, \nonumber \\[1.5ex]
\begin{bmatrix} z_1 \alpha + z_2 \gamma & z_1 \beta + z_2 \delta \\ z_3 \alpha + z_4 \gamma & z_3 \beta + z_4 \delta \end{bmatrix} &= \begin{bmatrix} z_1 \alpha + z_3 \beta & z_2 \alpha + z_4 \beta \\ z_1 \gamma + z_3 \delta & z_2 \gamma + z_4 \delta \end{bmatrix}.
\end{align}
\noindent Equating either the top left or bottom right entries, we see that $z_2 \gamma = z_3 \beta$. Since $\beta$ and $\gamma$ can take any values in $F$, for equality to always hold we must have $z_2 = 0 = z_3$. Hence equation (\ref{myeq1}) simplifies to
\begin{equation*} \begin{bmatrix} z_1 \alpha & z_1 \beta \\ z_4 \gamma & z_4 \delta \end{bmatrix} = \begin{bmatrix} z_1 \alpha & z_4 \beta \\ z_1 \gamma & z_4 \delta \end{bmatrix}. \end{equation*}
\noindent Thus \begin{equation*} z_1 = z_4 \qquad \text{and} \qquad z = \begin{bmatrix} z_1 & 0 \\ 0 & z_1 \end{bmatrix}. \end{equation*}
\noindent Since we are working in the special linear group, det$(z)=1$, thus $z_1 = \pm 1$ and $Z = \langle \minus I_L \rangle$ as required. Observe that this is a cyclic group of order 2 except in the case of $p=2$ where $\minus I_L = I_L$. \\
\end{proof}
\begin{lemma} \label{6.2b} If $p\neq 2$, then $L$ contains a unique element of order 2. \\
\end{lemma}
\begin{proof} Consider an arbitrary element $x \in L$ with order 2. That is $x^2 = I_L$, $x \neq I_L$ and thus $x=x^{-1}$.
\begin{equation*} x = \begin{bmatrix} \alpha & \beta \\ \gamma & \delta \end{bmatrix} = \begin{bmatrix} \alpha & \beta \\ \gamma & \delta \end{bmatrix}^{-1} = \begin{bmatrix} \delta & \minus \beta \\ \minus \gamma & \alpha \end{bmatrix}.
\end{equation*}
\noindent Thus $\alpha = \delta$, $\beta = \minus \beta \Rightarrow 2\beta = 0$ and $\gamma = \minus \gamma \Rightarrow 2\gamma = 0$. In the case of $p \neq 2$ this gives $\beta = 0 = \gamma$. So
\begin{equation*} x = \begin{bmatrix} \alpha & 0 \\ 0 & \alpha \end{bmatrix}.
\end{equation*}
\noindent Also $\alpha ^2 = 1$ since $x \in$ $SL(2,F)$, so $\alpha = \pm 1$. For $x$ to have order 2, we must have $\alpha = \minus 1$. Hence there is a unique element of order 2, namely $\minus I_L$.
\\
\end{proof}
\section[Conjugacy of the Elements of $L$]{Conjugacy of the Elements of $\pmb{L}$}
\begin{proposition}\label{6.3} Each element of $L$ is conjugate to either $d_\omega$ for some $\omega \in F^*$, or to $\pm t_\lambda$ for some $\lambda \in F$.
\end{proposition}
\begin{proof} Since $F$ is algebraically closed, any element $x \in L$ can be regarded as a linear transformation in the 2 dimensional vector space over $F$, with the eigenvalues $\pi_1$ and $\pi_2$. \\
\\
\textbullet \space If $\pi_1$ and $\pi_2$ are distinct, then $x$ is thus diagonalisable. That is, there exists an invertible matrix $a \in GL(2, F)$ such that $y = axa^{-1}$ is a diagonal matrix. Furthermore, we can multiply $a$ by a suitable scalar to find an element in $L$ which conjugates $x$ and $y$:
\begin{align*} \text{Set } \; b = \frac{a}{\sqrt {\text{det}(a)}}, \quad \text{thus } \; bxb^{-1} =\frac{a}{\sqrt {\text{det}(a)}} \; x \; (\sqrt{\text{det}(a)} \; )\,a^{-1} = axa^{-1} = y.
\end{align*}
Observe that det$(b)=1$, hence $x$ and $y$ are conjugate in $L$. Furthermore, since $y$ is a diagonal matrix it must belong to the set $D$, showing that $x$ is conjugate to $d_\omega$ for some $\omega \in F^*$. \\
\\
\textbullet \space If $\pi_1 = \pi_2$ then $x$ has just one repeated eigenvalue. Suppose that $x$ is diagonalisable. Then there exists an element $c \in GL(2, F)$ and a diagonal matrix $\pi_1 I_G$ such that $x = c(\pi_1 I_G)c^{-1} = \pi_1 I_G$. Thus $x = \pm I_G$, which trivially belongs to both $D$ and $T \times Z$. \\
\\
Now assume that $x$ is not diagonalisable. Chapter 7 of \cite{matrix} shows that there exists an element $d \in GL(2, F)$, such that $x= djd^{-1}$, where, $$j = \begin{bmatrix} \pi_1 & 1 \\ 0 & \pi_1 \end{bmatrix}$$ is the Jordan Normal Form of $x$. By the method described above, we can multiply $d$ by a suitable scalar to show that $x$ is conjugate to $j$ in $L$. Now we conjugate $j$ by an element of $L$ whose top left entry is 0.
\begin{align*} \begin{bmatrix} 0 & -\gamma^{-1} \\ \gamma & \delta \end{bmatrix} \begin{bmatrix} \pi_1 & 1 \\ 0 & \pi_1 \end{bmatrix} \begin{bmatrix} \delta & \gamma^{-1} \\ -\gamma & 0 \end{bmatrix} = \begin{bmatrix} 0 & -\gamma^{-1} \\ \gamma & \delta \end{bmatrix} \begin{bmatrix} \pi_1 \delta - \gamma & \pi_1 \gamma^{-1} \\ -\pi_1 \gamma & 0 \end{bmatrix} = \begin{bmatrix} \pi_1 & 0 \\ -\gamma^{2} & \pi_1 \end{bmatrix}
\end{align*}
\\
Now clearly the determinant of $x$ is equal to the determinant of $j$, namely 1, which means that $\pi_1 = \pm 1$. This shows that $j$ is conjugate in $L$ to some element in $T \times Z$ as well as $x$. Furthermore, since conjugation is transitive, $x$ is conjugate to $\pm t_\lambda$ for some $\lambda \in F$.
\end{proof}
\section{Centralisers \& Normalisers}
\begin{definition-non}
The \textbf{centraliser} $C_G(H)$ of a subset $H$ of a group $G$ is the set of elements of $G$ which commute with each element of $H$.
\begin{equation*} C_G(H) = \{ g \in G : gh=hg, \quad \forall h\in H \}. \end{equation*}
\end{definition-non}
\begin{definition-non}
The \textbf{normaliser} $N_G(H)$ of a subset $H$ of a group $G$ is the set of elements of $G$ which stabilise $H$ under conjugation.
\begin{equation*} N_G(H) = \{ g \in G : gHg^{-1}=H\}. \end{equation*}
\end{definition-non}
Both the centraliser and normaliser of a subset $H$ are subgroups of $G$. Note also that the centraliser is a stronger condition than the normaliser and any element in the centraliser of $H$ is also in its normaliser. If $H$ is a singleton then it's clear that its centraliser and normaliser are equal.\\
\begin{proposition}\label{6.4i}
(i) $N_L(T_1) \subset H$, where $T_1$ is any subgroup of $T$ with order greater than 1. \\
\\
(ii) $C_L(\pm t_\lambda) = T \times Z$ where $\lambda \neq 0$.
\end{proposition}
\begin{proof} (i) Let $t_\lambda$ be an arbitary element of $T_1$ with $\lambda \neq 0$. To determine the normaliser of $T_1$ in $L$ we consider which $x \in L$ satisfy $x t_\lambda x^{-1} \in T_1$.
\begin{align*} x t_\lambda x^{-1} &= \begin{bmatrix} \alpha & \beta \\ \gamma & \delta \end{bmatrix} \begin{bmatrix} 1 & 0 \\ \lambda & 1 \end{bmatrix} \begin{bmatrix} \delta & \minus \beta \\ \minus \gamma & \alpha \end{bmatrix}
\\[1.5ex] &= \begin{bmatrix} \alpha & \beta \\ \gamma & \delta \end{bmatrix} \begin{bmatrix} \delta & \minus \beta \\ \delta \lambda - \gamma & \alpha - \beta \lambda \end{bmatrix}
\\[1.5ex] &= \begin{bmatrix} \alpha \delta - \beta \gamma + \beta \delta \lambda & \minus \beta^2 \lambda \\ \delta^2 \lambda & \alpha \delta - \beta \gamma - \beta \delta \lambda \end{bmatrix}.
\end{align*}
Since $x t_\lambda x^{-1} \in T_1$ we have $\minus \beta^2 \lambda = 0$ and since $\lambda \neq 0$, we have $\beta = 0$. Since $t_\lambda$ was chosen arbitrarily, any element which normalises $T_1$ is a lower diagonal matrix and is therefore in $H$ by (\ref{Hlowertri}). Thus $N_L(T_1) \subset H$ as required. \\
\\
(ii) To determine the centraliser of $t_\lambda$ in $L$, we consider which $y \in L$ satisfy $y t_\lambda = t_\lambda y$ for an arbitrarily chosen $t_\lambda$, with $\lambda \neq 0$. \\
\vspace{-0.5mm}
\begin{align}\label{6.3proof2} y t_\lambda &= t_\lambda y, \nonumber \\[1.5ex]
\begin{bmatrix} \alpha & \beta \\ \gamma & \delta \end{bmatrix} \begin{bmatrix} 1 & 0 \\ \lambda & 1 \end{bmatrix} &= \begin{bmatrix} 1 & 0 \\ \lambda & 1 \end{bmatrix} \begin{bmatrix} \alpha & \beta \\ \gamma & \delta \end{bmatrix}, \nonumber \\[1.5ex]
\begin{bmatrix} \alpha + \beta \lambda & \beta \\ \gamma + \delta \lambda & \delta \end{bmatrix} &= \begin{bmatrix} \alpha & \beta \\ \gamma + \alpha \lambda & \delta + \beta \lambda \end{bmatrix}.
\end{align}
\vspace{.5mm}
Equating the top left entries of (\ref{6.3proof2}) gives $\alpha + \beta \lambda = \alpha$ which means $\beta = 0$ since $\lambda \neq 0$ by assumption. Equating the bottom left entries gives that $\alpha = \delta$. Finally, since det$(y) = 1$, we have $\alpha \delta = 1$ so $\alpha = \pm 1$. Thus a $y \in C_L(t_\lambda)$ is
\begin{align*} y &= \begin{bmatrix} \alpha & 0 \\ \gamma & \alpha \end{bmatrix}. \tag{where $\alpha = \pm 1$}
\end{align*}
So $y = \pm t_\sigma$ for some $\sigma \in F$, and $TZ = \{ \pm t_\sigma \} \subset C_L(t_\lambda)$. Now take an arbitrary $t_\mu z \in TZ$.
\begin{align*} (t_\mu z) t_\lambda &= t_\lambda (t_\mu z),
\\ t_\mu t_\lambda z &= t_\lambda t_\mu z, \tag{since $z \in Z$}
\\ t_{\mu + \lambda} &= t_{\mu + \lambda}.
\end{align*}
Thus $t_\mu z$ and indeed the whole of $TZ$ is contained in $ C_L(t_\lambda)$, so $C_L(t_\lambda) = TZ$. \\
\\
Since $T$ commutes elementwise with $Z$ and $T \cap Z = \{ I_G \}$, we can apply Corollary \ref{directproductZ} and assert that $C_L(t_\lambda) = TZ \cong T \times Z$ as required. The centraliser of $\minus t_\lambda$ is also $T \times Z$, since an element $x$ commutes with $\minus t_\lambda$ if and only if it commutes with $t_\lambda$:
\begin{align*} xt_\lambda = t_\lambda x \iff \minus(x t_\lambda) = \minus (t_\lambda x) \iff x(\minus t_\lambda) = (\minus t_\lambda)x.
\end{align*}
Note that in case of $\lambda = 0$, $\pm t_\lambda \in Z$ and thus it's centraliser is the whole of $L$.
\end{proof}
\begin{proposition}\label{6.4ii}
(i) $N_L(D_1) = \langle D , w \rangle$, where $D_1$ is any subgroup of $D$ with order greater than 2. \\
\\
(ii) $C_L(d_\omega)= D$ where $\omega \neq \pm 1$.
\end{proposition}
\begin{proof} (i) Since $|D_1| > 3$, we can choose a $d_\omega \in D_1 \! \setminus \! Z$, that is where $\omega \neq 1$. To determine the normaliser of $D_1$ in $L$ we consider which $x \in L$ satisfy $x d_\omega x^{-1} \in D_1$.
\begin{align}\label{6.3proof3} xd_\omega x^{-1} &= \begin{bmatrix} \alpha & \beta \\ \gamma & \delta \end{bmatrix} \begin{bmatrix} \omega & 0 \\ 0 & \omega^{-1} \end{bmatrix} \begin{bmatrix} \delta & \minus \beta \\ \minus \gamma & \alpha \end{bmatrix} \nonumber \\[1.5ex]
&= \begin{bmatrix} \alpha & \beta \\ \gamma & \delta \end{bmatrix} \begin{bmatrix} \delta \omega & \minus \beta \omega \\ \minus \gamma \omega^{-1} & \alpha \omega^{-1} \end{bmatrix} \nonumber \\[1.5ex]
&= \begin{bmatrix} \alpha \delta \omega - \beta \gamma \omega^{-1} & \alpha \beta (\omega^{-1} - \omega) \\ \gamma \delta (\omega - \omega^{-1}) & \alpha \delta \omega^{-1} - \beta \gamma \omega \end{bmatrix} \in D_1.
\end{align}
Since (\ref{6.3proof3}) is in $D_1$, the top right and bottom left entries must be 0. Since $\omega \neq \pm 1$, we have $\omega \neq \omega^{-1}$ and so $\alpha \beta = 0 = \gamma \delta$. \\
\\
\textbullet \space If $\alpha = 0$, then $\beta$ and $\gamma$ are non-zero since det$(x) = 1$, thus $\delta = 0$. So det$(x) = \minus \gamma \beta = 1$ and $\minus \gamma = \beta^{-1}$. (\ref{6.3proof3}) becomes $$\begin{bmatrix} \omega^{-1} & 0 \\ 0 & \omega \end{bmatrix} = d^{-1}_\omega.$$Since $D_1$ is a group, it contains the inverse of each of it's elements, so $d^{-1}_\omega \in D_1$ as required. In this case we have $x \in wD$. \\
\\
\textbullet \space If $\alpha \neq 0$, then similarly $\beta = 0$, $\delta = \alpha^{-1}$ and $\gamma = 0$. (\ref{6.3proof3}) now becomes $$\begin{bmatrix} \omega & 0 \\ 0 & \omega^{-1} \end{bmatrix} = d_\omega \in D_1.$$This time we have $x \in D$. So $x \in D \cup wD = \langle D , w \rangle$ and any element which normalises $D_1$ is in $\langle D , w \rangle$, thus $N_L(D_1) \subset \langle D , w \rangle$. \\
\\
Now take an arbitrary $y \in \langle D , w \rangle = D \cup wD$. If $y \in D$ then $y = d_{\rho 1}$, for some $\rho 1 \in F^*$.
\begin{align*} d_{\rho 1} d_\omega d^{-1}_{\rho 1} = d_\omega \in D_1. \tag{by Lemma \ref{6.1}}
\end{align*}
If $y \in wD$ then $y = w d_{\rho 2}$, for some $ d_{\rho 2} \in F^*$.
\begin{align*} (w d_{\rho 2}) d_\omega (w d_{\rho 2})^{-1} &= w d_{\rho 2} d_\omega d^{-1}_{\rho 2} w^{-1}
\\ &= w d_\omega w^{-1}
\\ &= d^{-1}_\omega \in D_1 \tag{by Lemma \ref{6.1}}.
\end{align*}
Thus $y$ indeed who whole of $\langle D , w \rangle$ is contained in $N_L(D_1)$. This inclusion gives the desired result, $N_L(D_1) = \langle D , w \rangle$. \\
\\
(ii) Now we consider which $y \in L$ satisfy $y d_\omega = d_\omega y$ for an arbitrarily chosen $d_\omega$, with $\omega \neq \pm 1$.
\begin{align}\label{6.3proof4} y d_ \omega &= d_\lambda y, \nonumber \\[1.5ex]
\begin{bmatrix} \alpha & \beta \\ \gamma & \delta \end{bmatrix} \begin{bmatrix} \omega & 0 \\ 0 & \omega^{-1} \end{bmatrix} &= \begin{bmatrix} \omega & 0 \\ 0 & \omega^{-1} \end{bmatrix} \begin{bmatrix} \alpha & \beta \\ \gamma & \delta \end{bmatrix}, \nonumber \\[1.5ex]
\begin{bmatrix} \alpha \omega & \beta \omega^{-1} \\ \gamma \omega & \delta \omega^{-1} \end{bmatrix} &= \begin{bmatrix} \alpha \omega & \beta \omega \\ \gamma \omega^{-1} & \delta \omega^{-1} \end{bmatrix}.
\end{align}
Equating the top right and bottom left entries of (\ref{6.3proof4}) gives that $\beta = 0 = \gamma$ since Since $\omega \neq \omega^{-1}$. Thus $\delta = \alpha^{-1}$ and
\begin{align*} x = \begin{bmatrix} \alpha & 0 \\ 0 & \alpha^{-1} \end{bmatrix} \in D.
\end{align*}
Thus $x$ and indeed the whole of $C_L(d_\omega)$ is contained in $D$. Now take an arbitrary $d_\rho \in D$.
\begin{align*} d_\rho d_\omega = d_{\rho \omega} = d_\omega d_\rho.
\end{align*}
So clearly $D \subset C_L(d_\omega)$ and thus $C_L(d_\omega) = D$ as required.
\end{proof}
\begin{proposition} \label{conjcent} Let $a$ and $b$ be conjugate elements in a group $G$. Then $\exists \, x \in G$ such that $xC_G(a)x^{-1} = C_G(b)$. \vspace{3mm}
\end{proposition}
\begin{proof}
This proposition essentially claims that conjugate elements have conjugate centralisers. Since $a$ and $b$ are conjugate there exists an $x \! \in \! G$ such that $b = xax^{-1}$. Let $g$ be an arbitrary element of $C_G(a)$. Then,
\begin{align*} (xgx^{-1})(xax^{-1}) &= xgax^{-1} \\
&= xagx^{-1} \tag{since $g \in C_G(a)$} \\
&= (xax^{-1})(xgx^{-1}). \end{align*}
Thus $xgx^{-1} \in C_G(xax^{-1})$. Since $g$ was chosen arbitrarily, $$xC_G(a)x^{-1} \subset C_G(xax^{-1}) = C_G(b).$$
Conversely, let $h$ be an arbitary element of $C_G(xax^{-1})$. Then,
\begin{align*} (x^{-1}hx)a &= x^{-1}h(xax^{-1})x \\
&= x^{-1}(xax^{-1})hx \tag{since $h \in C_G(xax^{-1})$} \\
&= a(x^{-1}hx). \end{align*}
So $x^{-1}hx \in C_G(a)$ and since $h$ was arbitrarily chosen from $C_G(xax^{-1})$, \linebreak $x^{-1}C_G(xax^{-1})x \subset C_G(a)$. Multiplication on the left by $x$ and on the right by $x^{-1}$ gives $C_G(b) = C_G(xax^{-1}) \subset xC_G(a)x^{-1}$. Since we have shown that each set contains the other, $xC_G(a)x^{-1} = C_G(b)$ as required. \\
\end{proof}
\begin{corollary}\label{6.5}
The centraliser of an element $x$ in $L$ is abelian unless $x$ belongs to the centre of $L$. \vspace{3mm}
\end{corollary}
\begin{proof} This is almost an immediate consequence of the preceding results. Propositions \ref{6.4i} and \ref{6.4ii} show that an element of the form $\pm t_\lambda$ which does not lie in the centre of $L$ has centraliser $T \times Z$, whilst a non-central element of the form $d_\omega$ has centraliser $D$. Both $T$ and $D$ are abelian since they are isomoprhic to $F$ and $F^*$ respectively. Let $t_\lambda z_1$ and $t_\mu z_2$ be arbitrary elements of $T \times Z$.
\vspace{-.5mm}
\begin{align*} (t_\lambda z_1)(t_\mu z_2) &= t_\lambda t_\mu z_2 z_1 \tag{since $z_1 \in Z$}
\\ &= t_\mu t_\lambda z_2 z_1 \tag{since $T$ is abelian}
\\ &= (t_\mu z_2)(t_\lambda z_1). \tag{since $z_2 \in Z$}
\end {align*}
Thus $T \times Z$ is also abelian. Since every element of $L$ is conjugate to $d_\omega$ or $\pm t_\lambda$ by Proposition \ref{6.3} and conjugate elements have conjugate centralisers by Proposition \ref{conjcent}, the centraliser of each $x \in L \setminus Z$ is conjugate to either $T \times Z$ or $D$. Proposition \ref{conjugateprop}(iii) shows that conjugate subgroups are isomorphic and therefore have the same structure, thus since both $T \times Z$ and $D$ are abelian, $C_L(x)$ is also abelian. Note that in general this does hold for $x \in Z$, since its centraliser is the whole of $L$ which is not abelian unless $L = Z$.
\end{proof}
\section{The Projective Line \& Triple Transitivity}
It is convenient to sometimes take a geometric viewpoint and regard the elements of $L$ as pairs of vectors in the 2-dimensional vector space over $F$, which we will denote $V$. An element of $L$ is thus a linear transformation of $V$.
\begin{definition-non} Let $\mathscr{L}$ be the set of all 1-dimensional subspaces of $V$. A subset $\mathscr{S}$ of $\mathscr{L}$ is called a \textbf{subspace} of $\mathscr{L}$ if there is a subspace $U$ of $V$ such that $\mathscr{S}$ is the set of all 1-dimensional spaces of $U$. We have dim $U =$ dim $\mathscr{S} + 1$. The set $\mathscr{L}$ on which this concept of subspaces is defined is called the \textbf{projective line} on $V$ and an element of $\mathscr{L}$ is a 0-dimensional subspace of $\mathscr{L}$ and consequently called a \textbf{point}. The projective line can be considered as a straight line in the field, plus a point at infinity.
\end{definition-non}
Any 1-dimensional subspace of $V$ is a set of vectors of the form $\eta u$, where $u$ is a non-zero vector of $V$ and $\eta \in F^*$. Thus the points of $\mathscr{L}$ are equivalence classes with the following relation defined on the set of vectors of $V$.
\begin{align*} u = \begin{bmatrix} u_1 \\ u_2 \end{bmatrix} \sim \begin{bmatrix} v_1 \\ v_2 \end{bmatrix} = v \iff u = \eta v, \qquad (\text{for $\eta \in F^*$}).
\end{align*}
Notice that $u$ and $v$ are equivalent if and only if $u_1 v_2 = v_1 u_2$. Importantly each point $P_i$ of $\mathscr{L}$ can be represented by a corresponding equivalence class of vectors of $V$, that is, $P$ corresponds to $u$ if $P = u_1 / u_2$. In the case when $u_2 = 0$, this corresponds to the point at infinity.
\begin{definition-non} Let $S$ be a permutation group which acts on a set $X$ and $\{ x_1, x_2, x_3 \}$ and $\{ x_1', x_2', x_3' \}$ be two subsets of distinct elements of $X$. Then $S$ is said be \textbf{triply transitive} on $X$ if there is an element $\pi \in S$ such that,
\begin{align*} x^{\pi}_i = x'_i, \qquad(\text{$i$ = 1,2 or 3}).
\end{align*}
\end{definition-non}
\begin{theorem} \label{6.6}
Let $\mathscr{L}$ be the projective line over the field $F$. Then $L$ is triply transitive on the set of the points of $\mathscr{L}$. \vspace{3mm}
\end{theorem}
\begin{proof} Let $P_1$, $P_2$ and $P_3$ be distinct points of $\mathscr{L}$ and $p_i$ be a vector in $V$ corresponding to $P_i$. Since each $P_i$ is distinct, $p_1$, $p_2$ and $p_3$ are thus pairwise linearly independent. Thus $p_1$ and $p_2$ form a basis for $V$ and it's clear that there exist $\alpha, \beta \in F^*$ such that,
\begin{align*} p_3 = \alpha p_1 + \beta p_2.
\end{align*}
Now, let $Q_1$, $Q_2$ and $Q_3$ be three more distinct points of $\mathscr{L}$ and $q_i$ be a vector in $V$ corresponding to $Q_i$. Similarly, by the above argument, there exist $\gamma, \delta \in F^*$ such that,
\begin{align*} q_3 = \gamma q_1 + \delta q_2.
\end{align*}
Let $\pi \in GL(2,F)$ be the linear transformation which sends $\alpha p_1$ to $\gamma q_1$ and $\beta p_2$ to $\delta q_2$. Thus,
\begin{align*} \pi(p_3) = \pi(\alpha p_1 + \beta p_2) = \pi(\alpha p_1) + \pi(\beta p_2) = \gamma q_1 + \delta q_2 = q_3
\end{align*}
Hence we get $P^\pi_1 = Q_1$, $P^\pi_2 = Q_2$ and $P^\pi_3 = Q_3$ and $GL(2,F)$ is triply transitive. Now set,
\begin{align*} \eta = \sqrt{\frac{1}{\text{det }\pi}}.
\end{align*}
Consider the mapping $\theta$ which sends $\alpha p_1$ to $\eta \gamma q_1$ and $\beta p_2$ to $\eta \delta q_2$. Observe that,
\begin{align*} \text{det }\theta = \eta^2 \, \text{det } \pi = 1
\end{align*}
So $\theta \in SL(2,F) = L$ and since $P^\theta_1 = Q_1$, $P^\theta_2 = Q_2$ and $P^\theta_3 = Q_3$, we have that $L$ is also triply transitive.
\end{proof}
The following proposition looks at what happens when the group $L$ acts on the projective line $\mathscr{L}$.
\begin{proposition} \label{6.7} (i) Each element of the form $d_\omega$ (with $\omega \neq \pm 1$), fixes the same two points on the projective line $\mathscr{L}$ and fix no other point. \vspace{3mm} \\
(ii) Each element of the form $\pm t_\lambda$ (with $\lambda \neq 0$), fixes the same point $P$ on $\mathscr{L}$ and fix no other point. Furthermore, \emph{Stab}$(P) = H$. \vspace{3mm} \\
(iii) All conjugate elements have the same number of fixed points on $\mathscr{L}$. \vspace{3mm} \\
(iv) Any noncentral element of $L$ has at most 2 fixed points on $\mathscr{L}$.
\end{proposition}
\begin{proof}
(i) Let $P$ be a fixed a point of an arbitrary $d_\omega \in D$, with $\omega \neq \pm 1$ and let $u$ belong to the corresponding equivalence class of vectors of $V$ to $P$. \\
\begin{align*} d_\omega u = \begin{bmatrix} \omega & 0 \\ 0 & \omega^{-1} \end{bmatrix} \begin{bmatrix} u_1 \\ u_2 \end{bmatrix} &= \begin{bmatrix} u_1 \omega \\ u_2 \omega^{-1} \end{bmatrix} \sim \begin{bmatrix} u_1 \\ u_2 \end{bmatrix},
\\[1.5ex] u_1 u_2 \omega &= u_1 u_2 \omega^{-1}.
\end{align*}
Since $\omega \neq \pm 1$, $\omega$ does not equal $\omega^{-1}$, and so either $u_1 = 0$ or $u_2 = 0$. Thus $u$ is equivalent to either the vector $\begin{bmatrix} 0 \\ 1 \end{bmatrix}$ or $\begin{bmatrix} 1 \\ 0 \end{bmatrix}$ and these correspond to 2 distinct points of $\mathscr{L}$ which are fixed by $d_\omega$. \\
\\
(ii) Let $P$ be a fixed a point of an arbitrary $t_\lambda$, with $\lambda \neq 0$, and let $u$ be the corresponding element of $V$ to $P$. \\
\begin{align*} t_\lambda u = \begin{bmatrix} 1 & 0 \\ \lambda & 1 \end{bmatrix} \begin{bmatrix} u_1 \\ u_2 \end{bmatrix} &= \begin{bmatrix} u_1 \\ u_1 \lambda + u_2 \end{bmatrix} \sim \begin{bmatrix} u_1 \\ u_2 \end{bmatrix},
\\[1.5ex] u_1 u_2 &= {u_1}^2 \lambda + u_1 u_2.
\end{align*}
This gives ${u_1}^2 \lambda = 0$ and since $\lambda \neq 0$ we have $u_1 = 0$. Thus $t_\lambda$ has just one fixed point, $P$ which corresponds to the equivalence class of $\begin{bmatrix} 0 \\ 1 \end{bmatrix}$ in $V$. We show also that $P$ is also the only fixed point of $-t_\lambda$, with $\lambda \neq 0$.
\begin{align*} -t_\lambda u = \begin{bmatrix} -1 & 0 \\ \lambda & -1 \end{bmatrix} \begin{bmatrix} u_1 \\ u_2 \end{bmatrix} &= \begin{bmatrix} -u_1 \\ u_1 \lambda - u_2 \end{bmatrix} \sim \begin{bmatrix} u_1 \\ u_2 \end{bmatrix},
\\[1.5ex] -u_1 u_2 &= {u_1}^2 \lambda - u_1 u_2.
\end{align*}
So again $u_1 =0$ and $-t_\lambda$ fixes $P$ and no other point. We now calculate the stabiliser of $P$ in $L$, by considering which $x \in L$ fix $P$. \\
\begin{align*} x u = \begin{bmatrix} \alpha & \beta \\ \gamma & \delta \end{bmatrix} \begin{bmatrix} 0 \\ 1 \end{bmatrix} &= \begin{bmatrix} \beta \\ \delta \end{bmatrix} \sim \begin{bmatrix} 0 \\ 1 \end{bmatrix}.
\end{align*}
Thus $\beta = 0$ and $x \in H$. Since $x$ was chosen arbitrarily from Stab$(P)$, we have Stab$(P) \subset H$. Now let an arbitrarily chosen $y \in H$ act on $P$. \\
\begin{align*} y u = \begin{bmatrix} \alpha & 0 \\ \gamma & \alpha^{-1} \end{bmatrix} \begin{bmatrix} 0 \\ 1 \end{bmatrix} &= \begin{bmatrix} 0 \\ \alpha^{-1} \end{bmatrix} \sim \begin{bmatrix} 0 \\ 1 \end{bmatrix}.
\end{align*}
Thus $y$ and indeed $H$ is contained in Stab$(P)$, so Stab$(P) = H$ as desired. \\
\\
(iii) Let $P_i$ $(i = 1,2,...)$ be the fixed points of $x\in L$ and let $y$ be conjugate to $x$ in $L$. That is, there exists a $g \in L$ such that $x = gyg^{-1}$.
\begin{align*} x P_i &= P_i,
\\ gyg^{-1} P_i &= P_i,
\\ y(g^{-1} P_i) &= (g^{-1} P_i).
\end{align*}
This shows that $P_i$ is a fixed point of $x$ if and only if $g^{-1} P_i$ is a fixed point of $y$. Thus conjugate elements have the same number of fixed points. \\
\\
(iv) By Proposition \ref{6.3}(i), every element of $L$ is conjugate to either $d_\omega$ or $\pm t_\lambda$, so since conjugate elements have the same number of fixed points, every element of $L \! \setminus \! Z$ has either the same number of fixed points as $d_\omega$ (with $\omega \neq \pm 1$), namely 2, or the same number as $\pm t_\lambda$, (with $\lambda \neq 0$), namely 1.
\end{proof}
\chapter[The Maximal Abelian Subgroup Class Equation]{The Maximal Abelian Subgroup Class Equation}
\chaptermark{The Class Equation}
\section[A finite subgroup of $L$]{A Finite Subgroup of $\pmb{L}$}
We now return to the realm of finite groups and consider $G$ to be an arbitrary finite subgroup of $L$. We will still continue to use $Z$ to denote the centre of $L$, and will use $Z(G)$ whenever we refer to the centre of $G$. \\
\\
Observe that if $Z$ is not contained in $G$, then $Z$ must contain a non-identity element, thus $|Z| = 2$ and $p \neq 2$ by Lemma \ref{6.2}. Recall that $L$ has a unique element of order 2 by Lemma \ref{6.2b}, $\minus I_L$, which is not in $G$, therefore $G$ has no element of order 2. \\
\\
By Cauchy's Theorem, which says that if a prime $p$ divides the order of a finite group, then the group contains an element of order $p$, we deduce that 2 does not divide the order of $G$. \\
\\
This means that $|G|$ and $|Z|$ are relatively prime, so $G \cap Z = \{ I_L \}$ and we can use Corollary \ref{directproductZ} to show that $GZ \cong G \times Z$. This shows that regardless of whether $G$ contains $Z$ or not, its structure is uniquely determined by $GZ$, so it suffices to only consider the case when $Z \subset G$.
\section{Maximal Abelian Subgroups}
\begin{definition-non} Let $H$ and $J$ be subgroups of a group $G$ where $H$ is abelian. $H$ is called \textbf{maximal abelian} if $J$ is not abelian whenever $H \subsetneq J$. \\
\\
A group $G$ is said to be \textbf{elementary abelian} if it is abelian and every non-trivial element has order $p$, where $p$ is prime.
\end{definition-non}
\begin{notation-non} Let $\mathfrak{M}$ denote the set of all maximal abelian subgroups of $G$.
\end{notation-non}
\vspace{3mm}
Maximal abelian subgroups play an important role in determining the structure of $G$. In particular, every element in $G$ must be contained in some maximal abelian subgroup, since every element commutes at least with itself and $Z$. This will allow us to decompose $G$ into the conjugacy classes of these maximal abelian subgroups. Note also that unless $G=Z$, $Z$ is not a maximal abelian subgroup, because for each $x \in G \! \setminus \! Z$, $\langle Z,x \rangle$ is clearly a larger abelian subgroup than $Z$. \\
\\
We will shortly prove an important theorem regarding the maximal abelian subgroups of $G$, but in order to do so we require the following two lemmas. \\
\begin{lemma}\label{primecentre}
If $G$ is a finite group of order $p^m$ where $p$ is prime and $m>0$, then $p$ divides $|Z(G)|$.
\end{lemma}
\begin{proof}
Let $C(x)$ be the set of elements of $G$ which are conjugate in $G$ to $x$, we call this the conjugacy class of $x$. Bhattacharya shows that the set of all conjugacy classes form a partition of $G$ \cite[p.112]{bhattacharya}. Now consider the following rearranged class equation of $G$, where $S$ is a subset of $G$ containing exactly one element from each conjugacy class not contained in $Z(G)$.
\begin{equation} \label{cen2}
|G| - \sum_{x \in S} [G:N_G(x)] = |Z(G)|.
\end{equation}
Since $|G| = p^m$, each subgroup of $G$ is of order $p^k$ for some $k \leq m$. In particular each $N_G(x)$ has order $p^k$ and is strictly contained in $G$ since $x \not \in Z(G)$ by assumption. Thus each $[G:N_G(x)] > 1$, and are therefore divisible by $p$. Since $p$ divides the left hand side of (\ref{cen2}), it must also divide the right, thus $p$ divides $|Z(G)|$.
\end{proof}
\begin{lemma}\label{finsubcyc}
Every finite subgroup of a multiplicative group of a field is cyclic.
\end{lemma}
\begin{proof} See \cite[p.41]{suzuki}.
\end{proof}
\begin{theorem}\label{6.8} Let $G$ be an arbitrary finite subgroup of $L$ containing $Z$. \\
(i) If $x \in G \! \setminus \! Z$ then we have $C_G(x) \in \mathfrak{M}$. \vspace{3mm} \\
(ii) For any two distinct subgroups $A$ and $B$ of $\mathfrak{M}$, we have
\begin{align*} A \cap B = Z. \end{align*}
(iii) An element $A$ of $\mathfrak{M}$ is either a cyclic group whose order is relatively prime to $p$, or of the form $Q \times Z$ where $Q$ is an elementary abelian Sylow $p$-subgroup of $G$. \vspace{3mm} \\
(iv) If $A \in \mathfrak{M}$ and $|A|$ is relatively prime to $p$, then we have $[N_G(A): A] \leq 2$. Furthermore, if $[N_G(A): A] = 2$, then there is an element $y$ of $N_G(A) \! \setminus \! A$ such that,
\vspace{-1mm}
\begin{align*} yxy^{-1} = x^{-1} \qquad \forall x \in A.\end{align*}
(v) Let $Q$ be a Sylow $p$-subgroup of $G$. If $Q \neq \{I_G\}$, then there is a cyclic subgroup $K$ of $G$ such that $N_G(Q) = QK$. If $|K| > |Z|$, then $K \in \mathfrak{M}$. \\
\end{theorem}
\begin{proof} (i) Let $x$ be chosen arbitrarily from $G \! \setminus \! Z$. Then by Corollary \ref{6.5}, $C_L(x)$ is abelian. By definition, $C_G(x) = C_L(x) \cap G$, and using the elementary fact that the intersection of 2 groups is itself a group, we have $C_G(x) < C_L(x)$. Now since every subgroup of an abelian group is abelian, $C_G(x)$ is also abelian. \\
\\
Now let $J$ be a maximal abelian subgroup of $G$ containing $C_G(x)$. Since $J$ is abelian and $x \in C_G(x) \subset J$, we have $jx=xj$, $\forall j \in J$, thus $J \subset C_G(x)$. Therefore $J=C_G(x)$ and $C_G(x) \in \mathfrak{M}$. \\
\\
(ii) Consider $x \in A \cap B$. Since both $A$ and $B$ are abelian, $x$ commutes with each $a \in A$ and $b \in B$ and thus $C_G(x)$ contains both $A$ and $B$. If $x \in G \setminus Z$, then $C_G(x) \in \mathfrak{M}$ by (i) and because $A$ and $B$ are distinct we have $A \subsetneq A \cup B \subset C_G(x)$. This contradicts the fact that $A$ is maximum abelian and thus $x \in Z$. Finally, note that Z is contained in every maximal abelian subgroup, since otherwise we would have the contradiction that $\langle A, Z \rangle$ would generate a larger abelian subgroup than $A$. Hence $A \cap B = Z$. \\
\\
(iii) First consider the trivial case of $G=Z$. Here $G$ is the only element of $\mathfrak{M}$. If $p \neq 2$ then $|G|=2$ and $G$ is a cyclic group whose order is relatively prime to $p$. If $p=2$ then $G = I_G$ which is trivially a $S_p$-subgroup. \\
\\
Now assume $G \neq Z$. Since $Z \not \in \mathfrak{M}$, each $A \in \mathfrak{M}$ contains at least one $x \not \in Z$. By Proposition \ref{6.3} this $x$ is conjugate to either $d_\omega$ or $\pm t_\lambda$ in $L$. It suffices to only consider these cases: \\
\\
\textbullet \space $\pmb{x}$ \textbf{conjugate to} $\pmb{d_\omega}$ \textbf{in} $\pmb {L}$. There is a $y \in L$ such that $x = y d_\omega y^{-1}$. Since $x \not \in Z$, we have $d_\omega \not \in Z$, because otherwise we get the contradiction,
\begin{align*} x = y d_\omega y^{-1} = d_\omega \in Z.
\end{align*}
Thus $\omega \neq \pm 1$. Let $A = C_G(x)$, since $C_G(x) \in \mathfrak{M}$ by part (i). Observe that
\begin{align*} C_G(d_\omega) &< C_L(d_\omega) \tag{see proof of (i)}
\\ &= D \tag{by Lemma \ref{6.4ii}}
\\ &\cong F^*. \tag{by Lemma \ref{6.1b}}
\end{align*}
Since $A$ is conjugate to $C_G(d_\omega)$ by Proposition \ref{conjcent}, we have that $A$ is isomorphic to a finite subgroup of $F^*$ and by Lemma \ref{finsubcyc}, $A$ is cyclic. By Lagrange's Theorem any finite subgroup of $F^*$ has an order which divides $p^m - 1$ for some $m \in \mathbb{Z}^+$, and since $p \nmid (p^m - 1)$, $|A|$ is relatively prime to $p$. \\
\\
\textbullet \space $\pmb{x}$ \textbf{conjugate to} $\pmb{\pm t_\lambda}$ \textbf{in} $\pmb{L}$. Again let $A = C_G(x) \in \mathfrak{M}$. $A$ is conjugate to $C_G({\pm t_\lambda})$ in $L$ by Proposition \ref{conjcent}. Since $x \notin Z$, we have $\lambda \neq 0$. Observe that
\begin{align*} C_G({\pm t_\lambda}) &< C_L({\pm t_\lambda})
\\&= T \times Z \tag{by Lemma \ref{6.4i}}
\\&\cong F \times Z. \tag{by Lemma \ref{6.1b}}
\end{align*}
So $A$ is isomorphic to a finite subgroup of $F \times Z$, call it $Q \times Z$. Now $A = Q \times Z \cong QZ$ by Corollary \ref{directproductZ}, which means that an arbitrary element of $A$ is of the form $q_1z_1$, where $q_1 \in Q$, $z_1 \in Z$.
\begin{align*} q_1z_1q_2z_2 &= q_2z_2 q_1z_1, \tag{$A \in \mathfrak{M}$}
\\ q_1q_2z_1z_2 &= q_2q_1z_1z_2, \tag{$z_1$, $z_2 \in Z$}
\\ q_1q_2z_1z_2(z_1z_2)^{-1} &= q_2q_1z_1z_2(z_1z_2)^{-1},
\\ q_1q_2 &= q_2q_1.
\end{align*}
Thus $Q$ is also abelian. Recall from the proof of Proposition \ref{6.3}(ii) that all non-trivial elements of $T$ have order $p$, so each non-trivial element of $Q$ has order $p$ which means that $Q$ is elementary abelian. Thus $Q$ has order $p^m$, for some $m \in \mathbb{Z}^+$. \\
\\
Now let $S$ be a Sylow $p$-subgroup containing $Q$. We apply Lemma \ref{primecentre} to determine that $p$ divides $|Z(S)|$, moreover $|Z(S)| \geq p$. \\
\\
If $p=2$, then $Z=I_L$ by Lemma \ref{6.2}. So $|Z| = 1$ and hence $|Z(S)| \geq 2 > |Z|$.\\
If $p > 2$, then $Z = \langle \minus I_L \rangle$ also by Lemma \ref{6.2}. So $|Z| = 2$ and again we get $|Z(S)| > 2 = |Z|$. \\
\\
So $Z(S)$ must contain at least one element which is not in $Z$, let $y$ be one such element. Let $s_1z_1$ be an arbitrary element of $S \times Z$.
\begin{align*}
(s_1z_1)y(s_1z_1)^{-1} &= (s_1z_1)y(z_1^{-1}s_1^{-1})
\\ &= s_1y(z_1z_1^{-1})s_1^{-1} \tag{since $y \in L$, $z_1 \in Z$}
\\ &= y(s_1s_1^{-1}) \tag{since $s_1 \in S$, $y \in Z(S)$}
\\ &= y
\end{align*}
Thus $s_1z_1 \in C_G(y)$ and since it was chosen arbitrarily, $S \times Z \subset C_G(y)$. Also since $y \in G \! \setminus \! Z$ we have $C_G(y) \in \mathfrak{M}$ by part (i).
\begin{equation*}
A = Q \times Z \subset S \times Z \subset C_G(y).
\end{equation*}
Since $A$ and $C_G(y)$ are both in $\mathfrak{M}$ it must be that $A = C_G(y)$. This means $Q = S$ and $Q$ is a Sylow $p$-subgroup of G.\\
\\
(iv) If $|A| \leq 2$ then $A=Z=G$. So $A$ is trivially normal in $G$ and $[N_G(A): A] = 1$. \\
\\
Now assume that $|A| > 2$. Since $|A|$ is relatively prime to $p$, we have that $A$ is a cyclic group conjugate to a finite subgroup of $D$ in $L$ by the proof of part (iii), call this subgroup ${\widetilde{A}}$. Thus both ${\widetilde{A}}$ and $D$ have orders greater than 2. Applying Proposition \ref{6.4ii} we observe that
\begin{align}\label{norm1} N_L({\widetilde{A}}) = \langle D , w \rangle = N_L(D).
\end{align}
Since $A$ and ${\widetilde{A}}$ are conjugate in $L$, there exists an element $z \in L$ such that $zAz^{-1} = {\widetilde{A}}$. This $z$ determines an inner automorphism of $L$ defined by
\begin{align*} i_z: L \longrightarrow L, \qquad \text{where} \quad \! i_z(t) = z t z^{-1} \quad \forall \; t \in L.
\end{align*}
Let $i_z(G) = {\widetilde{G}}$ denote the image of $G$ under $i_z$. Since $A$ is a maximal abelain subgroup of $G$ it's a simple task to show that ${\widetilde{A}}$ is a maximal abelian subgroup of ${\widetilde{G}}$ and I will leave this to the reader to verify. We now show that $i_z(N_G(A)) = N_{\widetilde{G}}({\widetilde{A}})$ . Take an arbitrary $g \in N_G(A)$.
\begin{align*} (z g z^{-1}) {\widetilde{A}} (z g z^{-1})^{-1} &= z g (z^{-1} {\widetilde{A}} z) g^{-1} z^{-1}
\\ &= z (g A g^{-1}) z^{-1} \tag{since $zAz^{-1} = {\widetilde{A}}$ }
\\ &= z A z^{-1} \tag{since $g \in N_G(A)$}
\\ &= {\widetilde{A}}.
\end{align*}
So $z g z^{-1} = i_z(g) \in N_{\widetilde{G}}({\widetilde{A}})$ and since it was chosen arbitrarily, $i_z(N_G(A)) \subset N_{\widetilde{G}}({\widetilde{A}})$. Now take an arbitrary $z h z^{-1} \in N_{\widetilde{G}}({\widetilde{A}})$.
\begin{align*} {\widetilde{A}} &= (z h z^{-1}) {\widetilde{A}} (z h z^{-1})^{-1}
\\ &= z h (z^{-1} {\widetilde{A}} z) h^{-1} z^{-1}
\\ &= z h A h^{-1} z^{-1}. \tag{since $A = z^{-1} {\widetilde{A}} z$}
\end{align*}
Now multiplication on the left by $z^{-1}$ and right by $z$ gives:
\begin{align*} A = z^{-1} {\widetilde{A}} z = h A h^{-1},
\end{align*}
so $h \in N_G(A)$. Furthermore, $z h z^{-1}$ and indeed the whole of $N_{\widetilde{G}}({\widetilde{A}})$ is contained in $i_z(N_G(A))$. Thus $ i_z(N_G(A)) = N_{\widetilde{G}}({\widetilde{A}})$. In particular, we have,
\begin{align}\label{6.8iv1} [N_G(A): A] = [N_{\widetilde{G}}({\widetilde{A}}): {\widetilde{A}}].
\end{align}
Since ${\widetilde{G}} < L$, the normaliser of ${\widetilde{A}}$ in ${\widetilde{G}}$ is simply the normaliser of ${\widetilde{A}}$ in $L$ restricted to ${\widetilde{G}}$, thus $N_{\widetilde{G}}({\widetilde{A}}) < N_L({\widetilde{A}}) = N_L(D)$ by (\ref{norm1}). Now since $D \vartriangleleft N_L(D)$, the Second Isomorphism Theorem shows that,
\begin{align}\label{2iso} N_{\widetilde{G}}({\widetilde{A}})/( N_{\widetilde{G}}({\widetilde{A}}) \cap D) \; \cong \; DN_{\widetilde{G}}({\widetilde{A}}) / D.
\end{align}
\\
Clearly ${\widetilde{A}} \subset {\widetilde{G}} \cap D$. We show that this inclusion is infact an equality. Assume that there exists some $d_\omega \in {\widetilde{G}} \cap D$ which is not in ${\widetilde{A}}$. The group $\langle d_\omega , {\widetilde{A}} \rangle$ is thus an abelian subgroup of ${\widetilde{G}}$, strictly larger than ${\widetilde{A}}$ and contradicting the fact that ${\widetilde{A}}$ is maximal abelian in ${\widetilde{G}}$. Thus ${\widetilde{A}} = {\widetilde{G}} \cap D$. It is trivial to see that ${\widetilde{A}} \subset N_{\widetilde{G}}({\widetilde{A}}) \cap D$. Also $N_{\widetilde{G}}({\widetilde{A}}) \cap D \subset {\widetilde{G}} \cap D = {\widetilde{A}}$. So,
\begin{align}\label{parti} {\widetilde{A}} = N_{\widetilde{G}}({\widetilde{A}}) \cap D.
\end{align}
Observe also that,
\begin{align}\label{index1or2} DN_{\widetilde{G}}({\widetilde{A}}) = \{ D, \langle D, w \rangle \} \subset \langle D, w \rangle = N_L(D).
\end{align}
Now we piece the preceding results together to give the desired result.
\begin{align*} N_{\widetilde{G}}({\widetilde{A}}) / {\widetilde{A}} \; & \cong \; N_{\widetilde{G}}({\widetilde{A}})/( N_{\widetilde{G}}({\widetilde{A}}) \cap D) \tag{by (\ref{parti})}
\\ & \cong \; DN_{\widetilde{G}}({\widetilde{A}}) / D \tag{by (\ref{2iso})}
\\ & \subset N_L(D) / D \tag{by (\ref{index1or2})}
\\ &= \langle D, w \rangle / D \; \cong \; \mathbb{Z}_2.
\end{align*}
We have shown that $N_{\widetilde{G}}({\widetilde{A}}) / {\widetilde{A}}$ is isomorphic to a subset of $\mathbb{Z}_2$. Thus by (\ref{6.8iv1}) we have established that, $$[N_G(A): A] = [N_{\widetilde{G}}({\widetilde{A}}): {\widetilde{A}}] \leq 2.$$
\vspace{-2mm}
For the second part, if $[N_G(A): A] = 2$, then the above argument shows that $N_{\widetilde{G}}({\widetilde{A}}) / {\widetilde{A}} \; \cong \; \mathbb{Z}_2$. Thus $DN_{\widetilde{G}}({\widetilde{A}}) = N_L(D) = \langle D, w \rangle$. This means that $N_{\widetilde{G}}({\widetilde{A}})$ contains some element $wd_\omega$. In fact, since $w d_\omega \not \in D$, we have $w d_\omega \in N_{\widetilde{G}}({\widetilde{A}}) \! \setminus \! {\widetilde{A}}$. Take any element $x \in A$. Since ${\widetilde{A}} = zAz^{-1}$, $zxz^{-1} \in {\widetilde{A}}$, call it $d_\sigma$. Let $y = z^{-1}w d_\omega z$. Since $wd_\omega \in N_{\widetilde{G}}({\widetilde{A}}) \! \setminus \! {\widetilde{A}}$ it follows that $y \in N_G(A)\! \setminus \! A$. We show that this $y$ inverts $x$:
\begin{align*} yxy^{-1} &= (z^{-1}w d_\omega z)(z^{-1} d_\sigma z)(z^{-1}d^{-1}_\omega w^{-1} z)
\\ &= z^{-1} w d_\omega d_\sigma d^{-1}_\omega w^{-1} z
\\ &= z^{-1} w d_\sigma w^{-1} z
\\ &= z^{-1} d^{-1}_\sigma z \tag{by Lemma \ref{6.1}}
\\ &= x^{-1}.
\end{align*}
(v) By part (iii), $Q$ is conjugate to a finite subgroup of $T$ in $L$. In fact, without loss of generality we can assume that $Q \subset T$, moreoever $Q \subset T \cap G$. We show that this is in fact an equality by showing that the reverse inclusion also holds. Let $t_\lambda$ be an arbitrary element of $T \cap G$. Then $\langle t_\lambda, Q \rangle$ is a $p$-group of $G$ which must be equal to $Q$ since it is a Sylow $p$-subgroup of $G$. Thus $t_\lambda \in Q$ and
\begin{align}\label{Q=TNG} Q = T \cap G.
\end{align}
Since $|Q| > 1$, Proposition \ref{6.4i} gives that $N_G(Q) \subset N_L(Q) \subset H$. So $N_G(Q) \subset H \cap G$. Now take an arbitrarily chosen $d_\omega t_\lambda \in H \cap G$ and $t_\mu \in Q$.
\begin{align*} (d_\omega t_\lambda) t_\mu (d_\omega t_\lambda)^{-1} &= d_\omega ( t_\lambda t_\mu t_{-\lambda}) d^{-1}_\omega
\\ &= d_\omega t_\mu d^{-1}_\omega \tag{by Lemma \ref{6.1}}
\\ &= t_\sigma. \tag{where $\sigma = \mu \omega^{-2}$, by Lemma \ref{6.1}}
\end{align*}
Since it is a product of elements of $G$, $t_\sigma \in T \cap G = Q$ by (\ref{Q=TNG}). Thus $d_\omega t_\lambda \in N_G(Q)$ and indeed the whole of $H \cap G$ is contained in $N_G(Q)$ and
\begin{align}\label{normQ=HNG} N_G(Q) = H \cap G.
\end{align}
We now define a map $\phi$ by,
\begin{align*} \phi : N_G(Q) \longrightarrow D, \qquad \text{where} \quad \! \phi(d_\omega t_\lambda) = d_\omega \quad \forall \; d_\omega t_\lambda \in N_G(Q).
\end{align*}
Next we determine the kernel of $\phi$.
\begin{align*} ker(\phi) &= \{ d_\omega t_\lambda \in N_G(Q) : \phi(d_\omega t_\lambda) = I_G \}
\\ &= N_G(Q) \cap T
\\ &= H \cap G \cap T \tag{by (\ref{normQ=HNG})}
\\ &= T \cap G = Q. \tag{by (\ref{Q=TNG})}
\end{align*}
We show that $\phi$ is a group homomorphism. Take $d_\omega t_\lambda$, $d_\rho t_\mu$ from $ N_G(Q)$.
\begin{align*} \phi(d_\omega t_\lambda d_\rho t_\mu) &= \phi(d_\omega d_\rho t_\sigma t_\mu) \tag{where $\sigma = \lambda \rho^2$, by Lemma \ref{6.1}}
\\ &= d_\omega d_\rho
\\ &= \phi(d_\omega t_\lambda) \phi(d_\rho t_\mu).
\end{align*}
Thus by the First Isomorphism Theorem,
\begin{align}\label{6.8viso} N_G(Q) / Q &\cong \phi(N_G(Q)),
\end{align}
Since $N_G(Q)$ is a finite group, it's image under $\phi$ is thus a finite subgroup of $D$. Furthermore, since $D \cong F^*$ (by Lemma \ref{6.1b}), $\phi(N_G(Q))$ is a cyclic group whose order divides $p^m-1$ and is therefore relatively prime to $p$, and by \eqref{6.8viso}, so too is $N_G(Q) / Q$. \\
\\
Let $r$ be the order of $N_G(Q) / Q$. Since it is cyclic, $N_G(Q)/Q$ is generated by a single element, namely a coset of $Q$ in $N_G(Q)$, call it $kQ$. So $|kQ| = r$. Observe that,
\begin{align*} (kQ)^r &= Q,
\\ k^rQ &= Q,
\\ k^r &\in Q.
\end{align*}
Since $Q$ is elementary abelian, each of it's non-trivial elements has order $p$, so $k$ has order $r$ or $rp$. In either case, since gcd$(r,p)=1$, the order of $k^p$ is $r$. Let $K = \langle k^p \rangle$. Now $|K| = r$ and
\begin{align*} |N_G(Q)| &= r|Q|
\\ &= |K||Q|
\\ &= |QK|. \tag{since $Q \cap K = I_G$}
\end{align*}
Thus,
\begin{align}\label{QK} N_G(Q) &= QK.
\end{align}
Now assume $|K| > |Z|$. Since $K$ is abelian, it must be contained in some maximal abelian group $A \in \mathfrak{M}$. By part (iii), $A$ must also be a cyclic group whose order is relatively prime to $p$. \\
\\
Since $A$ is conjugate in $L$ to a subgroup of $D$, each non-central element of $A$ has exactly 2 fixed points on the projective line $\mathscr{L}$ by Proposition \ref{6.7}. Let $A = \langle x \rangle$ and let $P_1$ and $P_2$ be the points fixed by $x$. We show by induction on $n$ that $x^n$ also fixes $P_1$ and $P_2$, for all $n \in \mathbb{Z^+}$. We do this by assuming first that $x^{n-1}$ fixes $P_i$.
\begin{align*} x^n P_i = x(x^{n-1} P_i) = x (P_i) = P_i.
\end{align*}
The importance of this is that since each element of $A$ can be expressed as some power of $x$, they must have the same two fixed points, namely $P_1$ and $P_2$. In other words,
\begin{align}\label{stab} A \subset S_L(P_i), \qquad (\text{$i$ = 1 or 2})
\end{align}
By Proposition \ref{6.7}(ii), each element of $T$ has a common fixed point $P$ and Stab$(P) = H$. Since $K \subset H$, each element in $K$ fixes $P$. Also, since $K \subset A$, this $P$ must be equal to either $P_1$ or $P_2$. Therefore by (\ref{stab}), $A \subset \text{Stab}(P) = H$. We arrive at the following result:
\begin{align*} A &\subset H \cap G
\\ &= N_G(Q) \tag{by (\ref{normQ=HNG})}
\\ &= QK. \tag{by (\ref{QK})}
\end {align*}
Furthermore, we get,
\begin{align*} A &= QK \cap A
\\ &= QK \cap AK \tag{$K \subset A$ so $A = AK$}
\\ &= (Q \cap A)K
\\ &= K \tag{$Q \cap A = I_G$}
\end{align*}
Thus $K \in \mathfrak{M}$. \\
\\
\end{proof}
For the duration of this paper, unless otherwise stated, $Q$ will denote a Sylow $p$-subgroup of $G$ and $K$ will be as described above.
\section{Conjugacy of Maximal Abelian Subgroups}
\begin{definition-non} The set $\mathcal{C}_i = \{ x A_i x^{-1} : x \in G \}$ is called the \textbf{conjugacy class} of $A_i \in \mathfrak{M}$.
\end{definition-non}
\begin{notation-non} Let $A_i^*$ be the non-central part of $A_i \in \mathfrak{M}$, let $\mathfrak{M}^*$ be the set of all $A_i^*$ and let $\mathcal{C}_i^*$ be the conjugacy class of $A_i^*$. \\
\\
For some $A_i \in \mathfrak{M}$ and $A_i^* \in \mathfrak{M}^*$ let,
\begin{align*} C_i = \bigcup\limits_{x \in G} x A_i x^{-1}, \quad \text{and} \quad C_i^* = \bigcup\limits_{x \in G} x A_i^* x^{-1}.
\end{align*}
In other words, $C_i$ denotes the set of elements of $G$ which belong to some element of $\mathcal{C}_i$. It's evident that $C_i^* = C_i \setminus Z$ and that there is a $C_i$ corresponding to each $\mathcal{C}_i$. Clearly we have the relation,
\begin{align}\label{orderorder} |C_i^*| = |A_i^*||\mathcal{C}_i^*|.
\end{align}
\end{notation-non}
\begin{theorem} \label{partitiontheorem} Let $G$ be a finite subgroup of $L$ and $S$ be a subset of $\mathfrak{M}^*$ containing exactly one element from each of its conjugacy classes. \vspace{2mm}
(i) The set of $C_i^*$ form a partition of $G \! \setminus \! Z$. That is,
\begin{align*} G \! \setminus \! Z = \bigcup\limits_{A_i^* \in S} C_i^*, \qquad \text{and} \qquad C_i^* \cap C_j^* = \varnothing, \qquad \forall \; i \neq j.
\end{align*}
(ii) \: \! $|\mathcal{C}_i^*| = |\mathcal{C}_i|$. \vspace{4mm}