-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnormal.xml
More file actions
1388 lines (1260 loc) · 51.6 KB
/
Copy pathnormal.xml
File metadata and controls
1388 lines (1260 loc) · 51.6 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
<?xml version="1.0"?>
<!-- This file is part of the book -->
<!-- This file is part of the book -->
<!-- -->
<!-- Abstract Algebra: Theory and Applications -->
<!-- -->
<!-- Text: Copyright (C) 1997-2025 Thomas W. Judson -->
<!-- Sage: Copyright (C) 2010-2025 Robert A. Beezer -->
<!-- See the file COPYING for copying conditions. -->
<!-- This file is part of the book -->
<!-- -->
<!-- See the file COPYING for copying conditions. -->
<chapter xmlns:xi="http://www.w3.org/2001/XInclude" xml:id="normal">
<title>Normal Subgroups and Factor Groups</title>
<introduction>
<p>
If <m>H</m> is a subgroup of a group <m>G</m>,
then right cosets are not always the same as left cosets;
that is, it is not always the case that <m>gH = Hg</m> for all <m>g \in G</m>.
The subgroups for which this property holds play a critical role in group theory<mdash/>they allow for the construction of a new class of groups,
called factor or quotient groups.
Factor groups may be studied directly or by using homomorphisms,
a generalization of isomorphisms.
We will study homomorphisms in <xref ref="homomorph"/>.
</p>
</introduction>
<!-- % TWJ, 2010/03/31 -->
<!-- % The chapter HOMOMORPHISMS AND FACTOR GROUPS is now -->
<!-- % two chapters: (10) NORMAL SUBGROUPS AND FACTOR GROUPS -->
<!-- % (11) HOMOMORPHISMS -->
<section xml:id="normal-section-factor-groups">
<title>Factor Groups and Normal Subgroups</title>
<subsection xml:id="normal-subsection-normal-subgroups">
<title>Normal Subgroups</title>
<p>
A subgroup <m>H</m> of a group <m>G</m> is <term>normal</term><idx><h>Subgroup</h><h>normal</h></idx><idx><h>Normal subgroup</h></idx>
in G if <m>gH = Hg</m> for all <m>g \in G</m>.
That is, a normal subgroup of a group <m>G</m> is one in which the right and left cosets are precisely the same.
</p>
<example xml:id="normal-example-abelian">
<p>
Let <m>G</m> be an abelian group.
Every subgroup <m>H</m> of <m>G</m> is a normal subgroup.
Since <m>gh = hg</m> for all <m>g \in G</m> and <m>h \in H</m>,
it will always be the case that <m>gH = Hg</m>.
</p>
</example>
<example xml:id="normal-example-s3">
<p>
Let <m>H</m> be the subgroup of <m>S_3</m> consisting of elements <m>(1)</m> and <m>(12)</m>.
Since
<me>
(123) H = \{ (1 \, 2 \, 3), (1 \, 3) \} \quad \text{and} \quad H (1 \, 2 \, 3) = \{ (1 \, 2 \, 3), (2 \, 3) \}
</me>,
<m>H</m> cannot be a normal subgroup of <m>S_3</m>.
However, the subgroup <m>N</m>,
consisting of the permutations <m>(1)</m>, <m>(1 \, 2 \, 3)</m>,
and <m>(1 \, 3 \, 2)</m>, is normal since the cosets of <m>N</m> are
<md>
<mrow>N = \{ (1), (1 \, 2 \, 3), (1 \, 3 \, 2) \}</mrow>
<mrow>(1 \, 2) N = N (1 \, 2) = \{ (1 \, 2), (1 \, 3), (2 \, 3) \}</mrow>
</md>.
</p>
</example>
<p>
The following theorem is fundamental to our understanding of normal subgroups.
</p>
<theorem xml:id="normal-theorem-normal-equivalents">
<statement>
<p>
Let <m>G</m> be a group and <m>N</m> be a subgroup of <m>G</m>.
Then the following statements are equivalent.
<ol>
<li>
<p>
The subgroup <m>N</m> is normal in <m>G</m>.
</p>
</li>
<li>
<p>
For all <m>g \in G</m>, <m>gNg^{-1} \subset N</m>.
</p>
</li>
<li>
<p>
For all <m>g \in G</m>, <m>gNg^{-1} = N</m>.
</p>
</li>
</ol>
</p>
</statement>
<proof>
<p>
(1) <m>\Rightarrow</m> (2).
Since <m>N</m> is normal in <m>G</m>,
<m>gN = Ng</m> for all <m>g \in G</m>.
Hence, for a given <m>g \in G</m> and <m>n \in N</m>,
there exists an <m>n'</m> in <m>N</m> such that <m>g n = n' g</m>.
Therefore, <m>gng^{-1} = n' \in N</m> or <m>gNg^{-1} \subset N</m>.
</p>
<p>
(2) <m>\Rightarrow</m> (3).
Let <m>g \in G</m>.
Since <m>gNg^{-1} \subset N</m>,
we need only show <m>N \subset gNg^{-1}</m>.
For <m>n \in N</m>, <m>g^{-1}ng=g^{-1}n(g^{-1})^{-1} \in N</m>.
Hence, <m>g^{-1}ng = n'</m> for some <m>n' \in N</m>.
Therefore, <m>n = g n' g^{-1}</m> is in <m>g N g^{-1}</m>.
</p>
<p>
(3) <m>\Rightarrow</m> (1).
Suppose that <m>gNg^{-1} = N</m> for all <m>g \in G</m>.
Then for any <m>n \in N</m> there exists an
<m>n' \in N</m> such that <m>gng^{-1} = n'</m>.
Consequently, <m>gn = n' g</m> or <m>gN \subset Ng</m>.
Similarly, <m>Ng \subset gN</m>.
</p>
</proof>
</theorem>
</subsection>
<subsection xml:id="normal-subsection-factor-groups">
<title>Factor Groups</title>
<p>
If <m>N</m> is a normal subgroup of a group <m>G</m>,
then the cosets of <m>N</m> in <m>G</m> form a group <m>G/N</m> under the operation <m>(aN) (bN) = abN</m>.
This group is called the <term>factor</term><idx><h>Group</h><h>factor</h></idx>
or <term>quotient group</term><idx><h>Group</h><h>quotient</h></idx>
of <m>G</m> and <m>N</m>.
<notation>
<usage><m>G/N</m></usage>
<description>factor group of <m>G</m> mod <m>N</m></description>
</notation>
Our first task is to prove that <m>G/N</m> is indeed a group.
</p>
<theorem>
<statement>
<p>
Let <m>N</m> be a normal subgroup of a group <m>G</m>.
The cosets of <m>N</m> in <m>G</m> form a group <m>G/N</m> of order <m>[G:N]</m>.
</p>
</statement>
<proof>
<p>
The group operation on <m>G/N</m> is <m>(a N ) (b N)= a b N</m>.
This operation must be shown to be well-defined;
that is, group multiplication must be independent of the choice of coset representative.
Let <m>aN = bN</m> and <m>cN = dN</m>.
We must show that
<me>
(aN) (cN) = acN = bd N = (b N)(d N)
</me>.
Then <m>a = b n_1</m> and <m>c = d n_2</m> for some <m>n_1</m> and <m>n_2</m> in <m>N</m>.
Hence,
<md>
<mrow>acN & = b n_1 d n_2 N</mrow>
<mrow>& = b n_1 d N</mrow>
<mrow>& = b n_1 N d</mrow>
<mrow>& = b N d</mrow>
<mrow>& = b d N</mrow>
</md>.
The remainder of the theorem is easy:
<m>eN = N</m> is the identity and
<m>g^{-1} N</m> is the inverse of <m>gN</m>.
The order of <m>G/N</m> is,
of course, the number of cosets of <m>N</m> in <m>G</m>.
</p>
</proof>
</theorem>
<p>
It is very important to remember that the elements in a factor group are
<em>sets of elements</em> in the original group.
</p>
<example xml:id="normal-example-factor-s3">
<p>
Consider the normal subgroup of <m>S_3</m>,
<m>N = \{ (1), (1 \, 2 \, 3), (1 \, 3 \, 2) \}</m>.
The cosets of <m>N</m> in <m>S_3</m> are <m>N</m> and <m>(12) N</m>.
The factor group <m>S_3 / N</m> has the following multiplication table.
</p>
<p>
<me>
\begin{array}{c|cc}
& N & (1 \, 2) N \\ \hline
N & N & (1 \, 2) N \\
(1 \, 2) N & (1 \, 2) N & N
\end{array}
</me>
</p>
<p>
This group is isomorphic to <m>{\mathbb Z}_2</m>.
At first, multiplying cosets seems both complicated and strange;
however, notice that <m>S_3 / N</m> is a smaller group.
The factor group displays a certain amount of information about <m>S_3</m>.
Actually, <m>N = A_3</m>, the group of even permutations,
and <m>(1 \, 2) N = \{ (1 \, 2), (1 \, 3), (2 \, 3) \}</m> is the set of odd permutations.
The information captured in <m>G/N</m> is parity;
that is, multiplying two even or two odd permutations results in an even permutation,
whereas multiplying an odd permutation by an even permutation yields an odd permutation.
</p>
</example>
<example xml:id="normal-example-factor-z3">
<p>
Consider the normal subgroup
<m>3 {\mathbb Z}</m> of <m>{\mathbb Z}</m>.
The cosets of <m>3 {\mathbb Z}</m> in <m>{\mathbb Z}</m> are
<md>
<mrow>0 + 3 {\mathbb Z} & = \{ \ldots, -3, 0, 3, 6, \ldots \}</mrow>
<mrow>1 + 3 {\mathbb Z} & = \{ \ldots, -2, 1, 4, 7, \ldots \}</mrow>
<mrow>2 + 3 {\mathbb Z} & = \{ \ldots, -1, 2, 5, 8, \ldots \}</mrow>
</md>.
The group <m>{\mathbb Z}/ 3 {\mathbb Z}</m> is given by the Cayley table below.
</p>
<p>
<me>
\begin{array}{c|ccc}
+ & 0 + 3{\mathbb Z} & 1 + 3{\mathbb Z} & 2 + 3{\mathbb Z} \\\hline
0 + 3{\mathbb Z} & 0 + 3{\mathbb Z} & 1 + 3{\mathbb Z} & 2 + 3{\mathbb Z} \\
1 + 3{\mathbb Z} & 1 + 3{\mathbb Z} & 2 + 3{\mathbb Z} & 0 + 3{\mathbb Z} \\
2 + 3{\mathbb Z} & 2 + 3{\mathbb Z} & 0 + 3{\mathbb Z} & 1 + 3{\mathbb Z}
\end{array}
</me>
</p>
<p>
In general, the subgroup <m>n {\mathbb Z}</m> of <m>{\mathbb Z}</m> is normal.
The cosets of <m>{\mathbb Z } / n {\mathbb Z}</m> are
<md>
<mrow>n {\mathbb Z}</mrow>
<mrow>1 + n {\mathbb Z}</mrow>
<mrow>2 + n {\mathbb Z}</mrow>
<mrow>\vdots</mrow>
<mrow>(n-1) + n {\mathbb Z}</mrow>
</md>.
The sum of the cosets <m>k + n{\mathbb Z}</m> and
<m>l + n{\mathbb Z}</m> is <m>k+l + n{\mathbb Z}</m>.
Notice that we have written our cosets additively,
because the group operation is integer addition.
</p>
</example>
<example xml:id="normal-example-factor_dn">
<p>
Consider the dihedral group <m>D_n</m>,
generated by the two elements <m>r</m> and <m>s</m>, satisfying the relations
<md>
<mrow>r^n & = \identity</mrow>
<mrow>s^2 & = \identity</mrow>
<mrow>srs & = r^{-1}</mrow>
</md>.
The element <m>r</m> actually generates the cyclic subgroup of rotations,
<m>R_n</m>, of <m>D_n</m>.
Since <m>srs^{-1} = srs = r^{-1} \in R_n</m>,
the group of rotations is a normal subgroup of <m>D_n</m>;
therefore, <m>D_n / R_n</m> is a group.
Since there are exactly two elements in this group,
it must be isomorphic to <m>{\mathbb Z}_2</m>.
</p>
</example>
</subsection>
</section>
<section xml:id="normal-section-simplicity-of-an">
<title>The Simplicity of the Alternating Group</title>
<introduction>
<p>
Of special interest are groups with no nontrivial normal subgroups.
Such groups are called <idx><h>Group</h><h>simple</h></idx><idx><h>Simple group</h></idx><term>simple groups</term>.
Of course, we already have a whole class of examples of simple groups,
<m>{\mathbb Z}_p</m>, where <m>p</m> is prime.
These groups are trivially simple since they have no proper subgroups other than the subgroup consisting solely of the identity.
Other examples of simple groups are not so easily found.
We can, however, show that the alternating group,
<m>A_n</m>, is simple for <m>n \geq 5</m>.
The proof of this result requires several lemmas.
</p>
<lemma xml:id="normal-lemma-1-normal-3cycle">
<statement>
<p>
The alternating group <m>A_n</m> is generated by <m>3</m>-cycles for <m>n \geq 3</m>.
</p>
</statement>
<proof>
<p>
To show that the <m>3</m>-cycles generate <m>A_n</m>,
we need only show that any pair of transpositions can be written as the product of <m>3</m>-cycles.
Since <m>(a, b) = (b, a)</m>,
every pair of transpositions must be one of the following:
<md>
<mrow>(a,b)(a,b) & = \identity</mrow>
<mrow>(a,b)(c,d) & = (a,c,b)(a,c,d)</mrow>
<mrow>(a,b)(a,c) & = (a,c,b)</mrow>
</md>.
</p>
</proof>
</lemma>
<lemma xml:id="normal-lemma-2-normal-3cycle">
<statement>
<p>
Let <m>N</m> be a normal subgroup of <m>A_n</m>, where <m>n \geq 3</m>.
If <m>N</m> contains a <m>3</m>-cycle, then <m>N = A_n</m>.
</p>
</statement>
<proof>
<p>
We will first show that <m>A_n</m> is generated by <m>3</m>-cycles of the specific form <m>(i,j,k)</m>,
where <m>i</m> and <m>j</m> are fixed in
<m>\{ 1, 2, \ldots,
n \}</m> and we let <m>k</m> vary.
Every <m>3</m>-cycle is the product of <m>3</m>-cycles of this form, since
<md>
<mrow>(i, a, j) & = (i, j, a)^2</mrow>
<mrow>(i, a, b) & = (i, j, b) (i, j, a)^2</mrow>
<mrow>(j, a, b) & = (i, j, b)^2 (i, j, a)</mrow>
<mrow>(a, b, c) & = (i, j, a)^2 (i, j, c) (i, j, b)^2 (i, j, a)</mrow>
</md>.
Now suppose that <m>N</m> is a nontrivial normal subgroup of <m>A_n</m> for
<m>n \geq 3</m> such that <m>N</m> contains a <m>3</m>-cycle of the form <m>(i, j, a)</m>.
Using the normality of <m>N</m>, we see that
<me>
[(i, j)(a, k)](i, j, a)^2 [(i, j)(a, k)]^{-1} = (i, j, k)
</me>
is in <m>N</m>.
Hence, <m>N</m> must contain all of the <m>3</m>-cycles <m>(i, j, k)</m> for <m>1 \leq k \leq n</m>.
By <xref ref="normal-lemma-1-normal-3cycle"/>, these <m>3</m>-cycles generate <m>A_n</m>;
hence, <m>N = A_n</m>.
</p>
</proof>
</lemma>
<lemma xml:id="normal-lemma-3-normal-3cycle">
<statement>
<p>
For <m>n \geq 5</m>,
every nontrivial normal subgroup <m>N</m> of <m>A_n</m> contains a <m>3</m>-cycle.
</p>
</statement>
<proof>
<p>
Let <m>\sigma</m> be an arbitrary element in a normal subgroup <m>N</m>.
There are several possible cycle structures for <m>\sigma</m>.
<ul>
<li>
<p>
<m>\sigma</m> is a <m>3</m>-cycle.
</p>
</li>
<li>
<p>
<m>\sigma</m> is the product of disjoint cycles,
<m>\sigma = \tau(a_1, a_2, \ldots, a_r) \in N</m>, where <m>r \gt 3</m>.
</p>
</li>
<li>
<p>
<m>\sigma</m> is the product of disjoint cycles,
<m>\sigma = \tau(a_1, a_2, a_3)(a_4, a_5, a_6)</m>.
</p>
</li>
<li>
<p>
<m>\sigma = \tau(a_1, a_2, a_3)</m>,
where <m>\tau</m> is the product of disjoint 2-cycles.
</p>
</li>
<li>
<p>
<m>\sigma = \tau (a_1, a_2) (a_3, a_4)</m>,
where <m>\tau</m> is the product of an even number of disjoint 2-cycles.
</p>
</li>
</ul>
If <m>\sigma</m> is a <m>3</m>-cycle, then we are done.
If <m>N</m> contains a product of disjoint cycles, <m>\sigma</m>,
and at least one of these cycles has length greater than 3, say <m>\sigma = \tau(a_1, a_2, \ldots, a_r)</m>, then
<me>
(a_1, a_2, a_3)\sigma(a_1, a_2, a_3)^{-1}
</me>
is in <m>N</m> since <m>N</m> is normal; hence,
<me>
\sigma^{-1}(a_1, a_2, a_3)\sigma(a_1, a_2, a_3)^{-1}
</me>
is also in <m>N</m>.
Since
<md>
<mrow>\sigma^{-1}(a_1, a_2, a_3)\sigma(a_1, a_2, a_3)^{-1} & = \sigma^{-1}(a_1, a_2, a_3)\sigma(a_1, a_3, a_2)</mrow>
<mrow>& = (a_1, a_2, \ldots, a_r)^{-1}\tau^{-1}(a_1, a_2, a_3) \tau(a_1, a_2, \ldots, a_r)(a_1, a_3, a_2)</mrow>
<mrow>& = (a_1, a_r, a_{r-1}, \ldots, a_2 )(a_1, a_2, a_3) (a_1, a_2, \ldots, a_r)(a_1, a_3, a_2)</mrow>
<mrow>& = (a_1, a_3, a_r)</mrow>
</md>,
<m>N</m> must contain a <m>3</m>-cycle;
hence, <m>N = A_n</m>.
</p>
<p>
Now suppose that <m>N</m> contains a disjoint product of the form
<me>
\sigma = \tau(a_1, a_2, a_3)(a_4, a_5, a_6)
</me>.
Then
<me>
\sigma^{-1}(a_1, a_2, a_4)\sigma(a_1, a_2, a_4)^{-1} \in N
</me>
since
<me>
(a_1, a_2, a_4)\sigma(a_1, a_2, a_4)^{-1} \in N
</me>.
So
<md>
<mrow>\sigma^{-1}(a_1, a_2, a_4) \sigma(a_1, a_2, a_4)^{-1} & = [ \tau (a_1, a_2, a_3) (a_4, a_5, a_6) ]^{-1} (a_1, a_2, a_4) \tau (a_1, a_2, a_3) (a_4, a_5, a_6) (a_1, a_2, a_4)^{-1}</mrow>
<mrow>& = (a_4, a_6, a_5) (a_1, a_3, a_2) \tau^{-1}(a_1, a_2, a_4) \tau (a_1, a_2, a_3) (a_4, a_5, a_6) (a_1, a_4, a_2)</mrow>
<mrow>& = (a_4, a_6, a_5)(a_1, a_3, a_2) (a_1, a_2, a_4) (a_1, a_2, a_3) (a_4, a_5, a_6)(a_1, a_4, a_2)</mrow>
<mrow>& = (a_1, a_4, a_2, a_6, a_3)</mrow>
</md>.
So <m>N</m> contains a disjoint cycle of length greater than 3, and we can apply the previous case.
</p>
<p>
Suppose <m>N</m> contains a disjoint product of the form <m>\sigma = \tau(a_1, a_2, a_3)</m>,
where <m>\tau</m> is the product of disjoint 2-cycles.
Since <m>\sigma \in N</m>, <m>\sigma^2 \in N</m>, and
<md>
<mrow>\sigma^2 & = \tau(a_1, a_2, a_3)\tau(a_1, a_2, a_3)</mrow>
<mrow>& =(a_1, a_3, a_2)</mrow>
</md>.
So <m>N</m> contains a <m>3</m>-cycle.
</p>
<p>
The only remaining possible case is a disjoint product of the form
<me>
\sigma = \tau (a_1, a_2) (a_3, a_4)
</me>,
where <m>\tau</m> is the product of an even number of disjoint <m>2</m>-cycles.
But
<me>
\sigma^{-1}(a_1, a_2, a_3)\sigma(a_1, a_2, a_3)^{-1}
</me>
is in <m>N</m> since <m>(a_1, a_2, a_3)\sigma(a_1, a_2, a_3)^{-1}</m> is in <m>N</m>; and so
<md>
<mrow>\sigma^{-1}(a_1, a_2, a_3)\sigma(a_1, a_2, a_3)^{-1} & = \tau^{-1} (a_1, a_2) (a_3, a_4) (a_1, a_2, a_3) \tau (a_1, a_2)(a_3, a_4)(a_1, a_2, a_3)^{-1}</mrow>
<mrow>& = (a_1, a_3)(a_2, a_4)</mrow>
</md>.
Since <m>n \geq 5</m>, we can find
<m>b \in \{1, 2, \ldots,
n \}</m> such that <m>b \neq a_1, a_2, a_3, a_4</m>.
Let <m>\mu = (a_1, a_3, b)</m>.
Then
<me>
\mu^{-1} (a_1, a_3)(a_2, a_4) \mu (a_1, a_3)(a_2, a_4) \in N
</me>
and
<md>
<mrow>\mu^{-1} (a_1, a_3)(a_2, a_4) \mu (a_1, a_3)(a_2, a_4) & = (a_1, b a_3)(a_1, a_3)(a_2, a_4) (a_1, a_3, b)(a_1, a_3)(a_2, a_4)</mrow>
<mrow>& = (a_1 a_3 b )</mrow>
</md>.
Therefore, <m>N</m> contains a <m>3</m>-cycle.
This completes the proof of the lemma.
</p>
</proof>
</lemma>
<!-- TWJ - 1/13/2014 -->
<!-- nontrivial added to the lemma statement. Suggested by M. Faucette. -->
<theorem xml:id="normal-theorem-an-simple">
<statement>
<p>
The alternating group, <m>A_n</m>,
is simple for <m>n \geq 5</m>.
</p>
</statement>
<proof>
<p>
Let <m>N</m> be a normal subgroup of <m>A_n</m>.
By <xref ref="normal-lemma-3-normal-3cycle"/>, <m>N</m> contains a <m>3</m>-cycle.
By <xref ref="normal-lemma-2-normal-3cycle"/>, <m>N = A_n</m>;
therefore, <m>A_n</m> contains no proper nontrivial normal subgroups for <m>n \geq 5</m>.
</p>
</proof>
</theorem>
<paragraphs component="sage-blurb">
<title>Sage</title>
<p>
Sage can easily determine if a subgroup is normal or not.
If so, it can create the quotient group.
However, the construction creates a new permuation group,
isomorphic to the quotient group,
so its utility is limited.
</p>
</paragraphs>
</introduction>
<subsection xml:id="normal-subsection-historical-note">
<title>Historical Note</title>
<p>
One of the foremost problems of group theory has been to classify all <idx><h>Group</h><h>simple</h></idx>simple finite groups.
This problem is over a century old and has been solved only in the last few decades of the twentieth century.
In a sense, finite simple groups are the building blocks of all finite groups.
The first nonabelian simple groups to be discovered were the alternating groups.
Galois was the first to prove that <m>A_5</m> was simple.
Later, mathematicians such as C. Jordan<idx><h>Jordan, C.</h></idx>
and L. E. Dickson<idx><h>Dickson, L. E.</h></idx>
found several infinite families of matrix groups that were simple.
Other families of simple groups were discovered in the 1950s.
At the turn of the century, William Burnside<idx><h>Burnside, William</h></idx>
conjectured that all nonabelian simple groups must have even order.
In 1963, W. Feit<idx><h>Feit, W.</h></idx>
and J. Thompson<idx><h>Thompson, J.</h></idx>
proved Burnside's conjecture and published their results in the paper
<q>Solvability of Groups of Odd Order,</q>
which appeared in the <pubtitle>Pacific Journal of Mathematics</pubtitle>.
Their proof, running over 250 pages,
gave impetus to a program in the 1960s and 1970s to classify all finite simple groups.
Daniel Gorenstein<idx><h>Gorenstein, Daniel</h></idx>
was the organizer of this remarkable effort.
One of the last simple groups was the
<q>Monster,</q> discovered by <idx><h>Greiss, R.</h></idx>R. Greiss.
The Monster, a <m>196{,}833 \times 196{,}833</m> matrix group,
is one of the 26 sporadic, or special, simple groups.
These sporadic simple groups are groups that fit into no infinite family of simple groups.
Some of the sporadic groups play an important role in physics.
</p>
</subsection>
</section>
<reading-questions>
<exercise label="rq-normal-equilateral">
<statement>
<p>
Let <m>G</m> be the group of symmetries of an equilateral triangle,
expressed as permutations of the vertices numbered <m>1,2,3</m>.
Let <m>H</m> be the subgroup <m>H=\langle (1\,2) \rangle</m>.
Build the left and right cosets of <m>H</m> in <m>G</m>.
</p>
</statement>
<response/>
</exercise>
<exercise label="rq-normal-is-normal">
<statement>
<p>
Based on your answer to the previous question,
is <m>H</m> normal in <m>G</m>?
Explain why or why not.
</p>
</statement>
<response/>
</exercise>
<exercise label="rq-normal-8Z">
<statement>
<p>
The subgroup <m>8\mathbb Z</m> is normal in <m>\mathbb Z</m>.
In the factor group <m>\mathbb Z/8\mathbb Z</m>
perform the computation <m>(3+8\mathbb Z)+(7+8\mathbb Z)</m>.
</p>
</statement>
<response/>
</exercise>
<exercise label="rq-normal-equivalent">
<statement>
<p>
List two statements about a group <m>G</m> and a subgroup <m>H</m> that are equivalent to
<q><m>H</m> is normal in <m>G</m>.</q>
</p>
</statement>
<response/>
</exercise>
<exercise label="rq-normal-factor">
<statement>
<p>
In your own words, what is a factor group?
</p>
</statement>
<response/>
</exercise>
</reading-questions>
<!-- Exercises with Solutions -->
<!-- File: normal.xml -->
<!-- Title: Normal Subgroups and Factor Groups -->
<exercises xml:id="normal-exercises" filenamebase="normal">
<title>Exercises</title>
<exercise number="1" xml:id="normal-exercise-normal-subgroup">
<statement>
<p>
For each of the following groups <m>G</m>,
determine whether <m>H</m> is a normal subgroup of <m>G</m>.
If <m>H</m> is a normal subgroup,
write out a Cayley table for the factor group <m>G/H</m>.
<ol>
<li>
<p>
<m>G = S_4</m> and <m>H = A_4</m>
</p>
</li>
<li>
<p>
<m>G = A_5</m> and <m>H = \{ (1), (1 \, 2 \, 3), (1 \, 3 \, 2) \}</m>
</p>
</li>
<li>
<p>
<m>G = S_4</m> and <m>H = D_4</m>
</p>
</li>
<li>
<p>
<m>G = Q_8</m> and <m>H = \{ 1, -1, I, -I \}</m>
</p>
</li>
<li>
<p>
<m>G = {\mathbb Z}</m> and <m>H = 5 {\mathbb Z}</m>
</p>
</li>
</ol>
</p>
</statement>
<hint>
<p>
(a)
<me>
\begin{array}{c|cc}
& A_4 & (1 \, 2)A_4 \\ \hline
A_4 & A_4 & (1 \, 2) A_4 \\
(1 \, 2) A_4 & (1 \, 2) A_4 & A_4
\end{array}
</me>
</p>
<p>
(c) <m>D_4</m> is not normal in <m>S_4</m>.
</p>
</hint>
</exercise>
<exercise number="2" xml:id="normal-exercise-D4">
<statement>
<p>
Find all the subgroups of <m>D_4</m>.
Which subgroups are normal?
What are all the factor groups of <m>D_4</m> up to isomorphism?
</p>
</statement>
</exercise>
<exercise number="3" xml:id="normal-exercise-Q8">
<statement>
<p>
Find all the subgroups of the quaternion group, <m>Q_8</m>.
Which subgroups are normal?
What are all the factor groups of <m>Q_8</m> up to isomorphism?
</p>
</statement>
</exercise>
<exercise number="4" xml:id="normal-exercise-triangular-matrices">
<statement>
<p>
Let <m>T</m> be the group of nonsingular upper triangular
<m>2 \times 2</m> matrices with entries in <m>{\mathbb R}</m>;
that is, matrices of the form
<me>
\begin{pmatrix}
a & b \\
0 & c
\end{pmatrix}
</me>,
where <m>a</m>,
<m>b</m>, <m>c \in {\mathbb R}</m> and <m>ac \neq 0</m>.
Let <m>U</m> consist of matrices of the form
<me>
\begin{pmatrix}
1 & x \\
0 & 1
\end{pmatrix}
</me>,
where <m>x \in {\mathbb R}</m>.
<ol>
<li>
<p>
Show that <m>U</m> is a subgroup of <m>T</m>.
</p>
</li>
<li>
<p>
Prove that <m>U</m> is abelian.
</p>
</li>
<li>
<p>
Prove that <m>U</m> is normal in <m>T</m>.
</p>
</li>
<li>
<p>
Show that <m>T/U</m> is abelian.
</p>
</li>
<li>
<p>
Is <m>T</m> normal in <m>GL_2( {\mathbb R})</m>?
</p>
</li>
</ol>
</p>
</statement>
</exercise>
<exercise number="5" xml:id="normal-exercise-intersection">
<statement>
<p>
Show that the intersection of two normal subgroups is a normal subgroup.
</p>
</statement>
</exercise>
<exercise number="6" xml:id="normal-exercise-abelian">
<statement>
<p>
If <m>G</m> is abelian, prove that <m>G/H</m> must also be abelian.
</p>
</statement>
</exercise>
<exercise number="7" xml:id="normal-exercise-H-GmodH">
<statement>
<p>
Prove or disprove: If <m>H</m> is a normal subgroup of <m>G</m> such that <m>H</m> and <m>G/H</m> are abelian,
then <m>G</m> is abelian.
</p>
</statement>
</exercise>
<!--Todo Expand the solution to #8.-->
<exercise number="8" xml:id="normal-exercise-cyclic">
<statement>
<p>
If <m>G</m> is cyclic, prove that <m>G/H</m> must also be cyclic.
</p>
</statement>
<hint>
<p>
If <m>a \in G</m> is a generator for <m>G</m>,
then <m>aH</m> is a generator for <m>G/H</m>.
</p>
</hint>
</exercise>
<exercise number="9" xml:id="normal-exercise-H-GmodH-cyclic">
<statement>
<p>
Prove or disprove: If <m>H</m> and <m>G/H</m> are cyclic,
then <m>G</m> is cyclic.
</p>
</statement>
</exercise>
<exercise number="10" xml:id="normal-exercise-index-2">
<statement>
<p>
Let <m>H</m> be a subgroup of index <m>2</m> of a group <m>G</m>.
Prove that <m>H</m> must be a normal subgroup of <m>G</m>.
Conclude that <m>S_n</m> is not simple for <m>n \geq 3</m>.
</p>
</statement>
</exercise>
<exercise number="11" xml:id="normal-exercise-one-subgroup">
<statement>
<p>
If a group <m>G</m> has exactly one subgroup <m>H</m> of order <m>k</m>,
prove that <m>H</m> is normal in <m>G</m>.
</p>
</statement>
<hint>
<p>
For any <m>g \in G</m>, show that the map <m>i_g : G \to G</m> defined by
<m>i_g : x \mapsto gxg^{-1}</m> is an isomorphism of <m>G</m> with itself.
Then consider <m>i_g(H)</m>.
</p>
</hint>
</exercise>
<exercise number="12" xml:id="normal-exercise-centralizer">
<statement>
<p>
Define the <term>centralizer</term>
of an element <m>g</m> in a group <m>G</m> to be the set
<me>
C(g) = \{ x \in G : xg = gx \}
</me>.
Show that <m>C(g)</m> is a subgroup of <m>G</m>.
If <m>g</m> generates a normal subgroup of <m>G</m>,
prove that <m>C(g)</m> is normal in <m>G</m>.
</p>
</statement>
<hint>
<p>
Suppose that <m>\langle g \rangle</m> is normal in <m>G</m> and let <m>y</m> be an arbitrary element of <m>G</m>.
If <m>x \in C(g)</m>, we must show that
<m>y x y^{-1}</m> is also in <m>C(g)</m>.
Show that <m>(y x y^{-1}) g = g (y x y^{-1})</m>.
</p>
</hint>
</exercise>
<exercise number="13" xml:id="normal-exercise-center">
<statement>
<p>
Recall that the <term>center</term>
of a group <m>G</m> is the set
<me>
Z(G) = \{ x \in G : xg = gx \text{ for all } g \in G \}
</me>.
<ol>
<li>
<p>
Calculate the center of <m>S_3</m>.
</p>
</li>
<li>
<p>
Calculate the center of <m>GL_2 ( {\mathbb R} )</m>.
</p>
</li>
<li>
<p>
Show that the center of any group <m>G</m> is a normal subgroup of <m>G</m>.
</p>
</li>
<li>
<p>
If <m>G / Z(G)</m> is cyclic,
show that <m>G</m> is abelian.
</p>
</li>
</ol>
</p>
</statement>
</exercise>
<exercise number="14" xml:id="normal-exercise-commutator">
<statement>
<p>
Let <m>G</m> be a group and let <m>G' = \langle aba^{- 1} b^{-1} \rangle</m>;
that is, <m>G'</m> is the subgroup of all finite products of elements in <m>G</m> of the form <m>aba^{-1}b^{-1}</m>.
The subgroup <m>G'</m> is called the
<term>commutator subgroup</term> of <m>G</m>.
<notation>
<usage><m>G'</m></usage>
<description>commutator subgroup of <m>G</m></description>
</notation>
<ol>
<li>
<p>
Show that <m>G'</m> is a normal subgroup of <m>G</m>.
</p>
</li>
<li>
<p>
Let <m>N</m> be a normal subgroup of <m>G</m>.
Prove that <m>G/N</m> is abelian if and only if <m>N</m> contains the commutator subgroup of <m>G</m>.
</p>
</li>
</ol>
</p>
</statement>
<hint>
<p>
(a) Let <m>g \in G</m> and <m>h \in G'</m>.
If <m>h = aba^{-1}b^{-1}</m>, then
<md>
<mrow>ghg^{-1} & = gaba^{-1}b^{-1}g^{-1}</mrow>
<mrow>& = (gag^{-1})(gbg^{-1})(ga^{-1}g^{-1})(gb^{-1}g^{-1})</mrow>
<mrow>& = (gag^{-1})(gbg^{-1})(gag^{-1})^{-1}(gbg^{-1})^{-1}</mrow>
</md>.
We also need to show that if
<m>h = h_1 \cdots h_n</m> with <m>h_i = a_i b_i a_i^{-1} b_i^{-1}</m>,
then <m>ghg^{-1}</m> is a product of elements of the same type.
However, <m>ghg^{-1} = g h_1 \cdots h_n g^{-1} = (gh_1g^{-1})(gh_2g^{-1}) \cdots (gh_ng^{-1})</m>.
</p>
</hint>
</exercise>
</exercises>
<section xml:id="normal-sage" component="sage-info">
<title>Sage</title>
<introduction>
<p>
Sage has several convenient functions that will allow us to investigate quickly if a subgroup is normal,
and if so, the nature of the resulting quotient group.
But for an initial understanding,
we can also work with the raw cosets.
Let us get our hands dirty first,
then learn about the easy way.
</p>
</introduction>
<subsection>
<title>Multiplying Cosets</title>
<p>
The definiton of a factor group requires a normal subgroup,
and then we <em>define</em> a way to <q>multiply</q>
two cosets of the subgroup to produce another coset.
It is important to realize that we can interpret the definition of a normal subgroup to be <em>exactly</em>
the condition we need for our new multiplication to be workable.
We will do two examples <mdash/> first with a normal subgroup,
then with a subgroup that is not normal.
</p>
<p>
Consider the dihedral group <m>D_{8}</m> that is the symmetry group of an <m>8</m>-gon.
If we take the element that creates a quarter-turn,
we can use it generate a cyclic subgroup of order 4.
This will be a normal subgroup
(trust us for the moment on this).
First, build the (right) cosets (notice there is no output):
</p>
<sage>
<input>
G = DihedralGroup(8)
quarter_turn = G('(1,3,5,7)(2,4,6,8)')
S = G.subgroup([quarter_turn])
C = G.cosets(S)
</input>
</sage>
<p>
So <c>C</c> is a list of lists,
with every element of the group <c>G</c> occuring exactly once somewhere.
You could ask Sage to print out <c>C</c> for you if you like,
but we will try to avoid that here.
We want to multiply two cosets (lists) together.
How do we do this?
Take <em>any</em> element out of the first list,
and <em>any</em> element out of the second list and multiply them together
(which we know how to do since they are elements of <c>G</c>).
Now we have an element of <c>G</c>.
What do we do with this element,
since we really want a coset as the result of the product of two cosets?
Simple <mdash/> we see which coset the product is in.
Let us give it a try.
We will multiply coset <m>1</m> with coset <m>3</m>