-
Notifications
You must be signed in to change notification settings - Fork 2
/
structure.tex
executable file
·2845 lines (2387 loc) · 103 KB
/
structure.tex
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
\chapter{The Structure of Groups}
We are interested in understanding the structure of groups, particularly finite
groups, as a way of potentially distinguishing groups. In this
section we will see a number of ways of looking at structure within a group.
\section{The Subgroup Lattice}
At a very coarse level, if two groups are isomorphic then their subgroups
must be in bijective correspondence with one another.
\begin{proposition}\label{prop:subgroupisom}
Let $G$ and $H$ be two groups, and let $\Sub(G)$ and $\Sub(H)$ be the set
of subgroups of $G$ and $H$ respectively. If $G \isom H$ then there is a
bijection between $\Sub(G)$ and $\Sub(H)$.
\end{proposition}
\begin{proof}
Since $G \isom H$ there is an isomorphism $\alpha : G \to H$, and its
inverse function $\alpha^{-1}: H \to G$ is also an isomorphism by
Proposition~\ref{prop:homomorphismfacts}. Since by
Proposition~\ref{prop:homsubgroup}, the image $\alpha(K)$ of a subgroup $K$
of $G$ is a subgroup of $H$, we can define a function
\begin{align*}
\overline{\alpha} : \Sub(G) & \to \Sub(H) \\
K & \mapsto \alpha(K).
\end{align*}
The function $\overline{\alpha}$ is one-to-one, since if we have two
subgroups $K_{1}$ and $K_{2}$ of $G$ such that $\overline{\alpha}(K_{1}) =
\overline{\alpha}(K_{2})$, then
\[
K_{1} = \alpha^{-1}(\alpha(K_{1})) = \alpha^{-1}(\overline{\alpha}(K_{1})) =
\alpha^{-1}(\overline{\alpha}(K_{12})) = \alpha^{-1}(\alpha(K_{2})) =
K_{2},
\]
since $\alpha^{-1} \circ \alpha$ is the identity function.
The function $\overline{\alpha}$ is onto, since if $K$ is a subgroup of
$H$, then $\alpha^{-1}(K)$ is a subgroup of $G$, and
\[
\overline{\alpha}(\alpha^{-1}(K)) = \alpha(\alpha^{-1}(K)) = K
\]
since $\alpha \circ \alpha^{-1}$ is the identity function.
So $\overline{\alpha}$ is a bijection.
\end{proof}
\begin{corollary}
If $G$ and $H$ are finite groups with different numbers of subgroups, then
$G$ and $H$ cannot be isomorphic.
\end{corollary}
\begin{example}
From Example~\ref{eg:C4subgroups} $C_{4}$, we know that $C_{4}$ has 3
subgroups. On the other hand, Example~\ref{eg:4groupsubgroups} tells us
that $V$ has $5$ subgroups, so $V$ is not isomorphic to $C_{4}$.
\end{example}
However, it is certainly conceivable that two groups may have the same
number of subgroups, but fail to be isomorphic. In this case we need to
investigate the relationships between subgroups of a group. For instance, if
we have a group $G$ and subgroups $H$ and $K$ of $G$ such that $K \subseteq H$,
then it is immediate from Corollary~\ref{cor:subgrouptest} that $K$ is a
subgroup of $H$. So a good starting point is to consider which subgroups are
contained in other subgroups.
\begin{example}
From Example~\ref{eg:C4subgroups} $C_{4} = \{1, a, a^{2}, a^{3}\}$ has the subgroups
$\{1\}$, $\langle a^{2} \rangle = \{1, a^{2}\}$ and
$\{1, a, a^{2}, a^{3}\}$. We can easily see that $\{1\} \le \langle a^{2}
\rangle \le C_{4}$.
\end{example}
Noting that each of these is subgroups is contained in the next, we can
represent this situation diagramatically as follows:
\begin{picture}(2,6)(-1,-1)
\put(0,0){\makebox(0,0){$\{1\}$}}
\put(0,0.5){\line(0,1){1}}
\put(0,2){\makebox(0,0){$\langle a^{2} \rangle$}}
\put(0,2.5){\line(0,1){1}}
\put(0,4){\makebox(0,0){$C_{4}$}}
\end{picture}
This sort of diagram is a graphical representation of the \defn{subgroup
lattice}{lattice!subgroup} of the group. The idea is that if a
subgroup is contained in another, with no intermediate subgroups, we write
it higher on the page and join the two subgroups with a line. We also try
to draw the diagram so that subgroups with the same number of elements are
the same distance up the page.
Here are some more examples.
\begin{example}
From Example~\ref{eg:4groupsubgroups}, the vierergruppe $V = \{1, a, b, ab\}$
has the subgroups $\{1\}$,
$\langle a \rangle = \{1, a\}$, $\langle b \rangle = \{1, b\}$,
$\langle ab \rangle = \{1, ab\}$ and $\{1, a, b, ab\}$.
The subgroup lattice of $V$ is:
\begin{picture}(6,6)(-3,-1)
\put(0,0){\makebox(0,0){$\{1\}$}}
\put(0,0.5){\line(0,1){1}}
\put(0.5,0.5){\line(1,1){1}}
\put(-0.5,0.5){\line(-1,1){1}}
\put(-2,2){\makebox(0,0){$\langle a \rangle$}}
\put(0,2){\makebox(0,0){$\langle b \rangle$}}
\put(2,2){\makebox(0,0){$\langle ab \rangle$}}
\put(0,2.5){\line(0,1){1}}
\put(1.5,2.5){\line(-1,1){1}}
\put(-1.5,2.5){\line(1,1){1}}
\put(0,4){\makebox(0,0){$V$}}
\end{picture}
\end{example}
\begin{example}
From Example~\ref{eg:C6subgroups}, the cyclic group or order $6$, $C_{6} =
\{1, a, a^{2}, a^{3}, a^{4}, a^{5}\}$
has the subgroups $\{1\}$,
$\langle a^{3} \rangle = \{1, a^{3}\}$,
$\langle a^{2} \rangle = \{1, a^{2}, a^{4}\}$,
and $C_{6}$.
The subgroup lattice of $C_{6}$ is:
\begin{picture}(6,8)(-3,-1)
\put(0,0){\makebox(0,0){$\{1\}$}}
\put(-0.5,0.5){\line(-1,1){1}}
\put(0.25,0.5){\line(1,2){1.5}}
\put(-2,2){\makebox(0,0){$\langle a^{3} \rangle$}}
\put(2,4){\makebox(0,0){$\langle a^{2} \rangle$}}
\put(-1.75,2.5){\line(1,2){1.5}}
\put(1.5,4.5){\line(-1,1){1}}
\put(0,6){\makebox(0,0){$C_{6}$}}
\end{picture}
\end{example}
\begin{example}
Let $p$ be a prime number, and $C_{p}$ the cyclic group of order $p$.
From Example~\ref{eg:Cpsubgroups} $C_{p}$ only has the trivial subgroups $\{1\}$ and $C_{p}$.
The subgroup lattice of $C_{p}$ is always:
\begin{picture}(2,4)(-1,-1)
\put(0,0){\makebox(0,0){$\{1\}$}}
\put(0,0.5){\line(0,1){1}}
\put(0,2){\makebox(0,0){$C_{p}$}}
\end{picture}
\end{example}
\begin{example}
From Example~\ref{eg:D8subgroups}, the dihedral group\index{group!dihedral}
of order $8$, $D_{8} = \{1, a, a^{2}, a^{3}, b, ab, a^{2}, a^{3}\}$
has subgroups $\{1\}$,
$\langle a^{2} \rangle = \{1, a^{2}\}$,
$\langle b \rangle = \{1, b\}$,
$\langle ab \rangle = \{1, ab\}$,
$\langle a^{2}b \rangle = \{1, a^{2}b\}$,
$\langle a^{3}b \rangle = \{1, a^{3}b\}$,
$\langle a \rangle = \{1, a, a^{2}, a^{3}\}$,
$\langle a^{2}, b \rangle = \{1, a^{2}, b, a^{2}b\}$,
$\langle a^{2}, ab \rangle = \{1, a^{2}, ab, a^{3}b\}$,
and $D_{8}$.
The subgroup lattice of $D_{8}$ is:
\begin{picture}(10,8)(-5,-1)
\put(0,0){\makebox(0,0){$\{1\}$}}
\put(0,0.5){\line(0,1){1}}
\put(0.5,0.5){\line(1,1){1}}
\put(0.5,0.25){\line(2,1){3}}
\put(-0.5,0.5){\line(-1,1){1}}
\put(-0.5,0.25){\line(-2,1){3}}
\put(-4,2){\makebox(0,0){$\langle b \rangle$}}
\put(-2,2){\makebox(0,0){$\langle a^{2}b \rangle$}}
\put(0,2){\makebox(0,0){$\langle a^{2} \rangle$}}
\put(2,2){\makebox(0,0){$\langle ab \rangle$}}
\put(4,2){\makebox(0,0){$\langle a^{3}b \rangle$}}
\put(0,2.5){\line(0,1){1}}
\put(3.5,2.5){\line(-1,1){1}}
\put(2,2.5){\line(0,1){1}}
\put(0.5,2.5){\line(1,1){1}}
\put(-3.5,2.5){\line(1,1){1}}
\put(-0.5,2.5){\line(-1,1){1}}
\put(-2,2.5){\line(0,1){1}}
\put(-2,4){\makebox(0,0){$\langle a^{2}, b \rangle$}}
\put(0,4){\makebox(0,0){$\langle a \rangle$}}
\put(2,4){\makebox(0,0){$\langle a^{2}, ab \rangle$}}
\put(0,4.5){\line(0,1){1}}
\put(1.5,4.5){\line(-1,1){1}}
\put(-1.5,4.5){\line(1,1){1}}
\put(0,6){\makebox(0,0){$D_{8}$}}
\end{picture}
\end{example}
Notice that in these diagrams, there is always a unique smallest subgroup which
is bigger than any pair of subgroups. This is a corollary of
Theorem~\ref{thm:subgroupgenbyset}.
\begin{corollary}
If $G$ is a group and $H$ and $K$ are subgroups of $G$, then $\langle H
\union K \rangle$ is the smallest subgroup which contains both $H$ and $K$.
\end{corollary}
This subgroup is usually quite different from the union of the two sets.
Indeed, we have the following:
\begin{proposition}
Let $H$ and $K$ be subgroups of $G$. Then $H \union K$ is a subgroup if and only
if either $H \subseteq K$ or $K \subseteq H$.
\end{proposition}
\begin{proof}
If $H \subseteq K$, then $H \union K = K$, so $H \union K$ is a subgroup.
Similarly, if $K \subseteq H$, then $H \union K = H$, so $H \union K$ is
a subgroup.
Conversely, if neither $H$ nor $K$ is a subset of the other, then there is
some $x \in H \setminus K$ and $y \in K \setminus H$. Also $x^{-1} \in H$,
since $H$ is a subgroup. But then if $xy \in H$, we have $x^{-1}(xy) = y
\in H$, but since $y \in K \setminus H$, this means that $y \notin H$, which
is a contradicition. Therefore $xy \notin H$. But a similar argument
shows that $xy \notin K$. So $xy \notin H \union K$. So $H \union K$
is not a subgroup of $G$.
\end{proof}
The following theorem shows us that there is also a subgroup which is contained
in both $H$ and $K$.
\begin{theorem}
Let $(G, \ast, e)$ be a group, and $H$ and $K$ subgroups of $G$. Then
$H \intersect K$ is the largest subgroup of $G$ which is contained in both
$H$ and $K$.
\end{theorem}
\begin{proof}
We first need to show that $H \intersect K$ is a subgroup. If $x$,
$y \in H \intersect K$, then $xy^{-1} \in H$, since $H$ is a subgroup,
and $xy^{-1} \in K$, since $K$ is a subgroup. Therefore $xy^{-1} \in
H \intersect K$, and so by Corollary~\ref{cor:subgrouptest},
$H \intersect K$ is a subgroup of $G$.
Since $H \intersect K$ is the largest set contained in both $H$ and $K$,
it must also be the largest subgroup contained in both.
\end{proof}
We will denote $\langle H \union K \rangle$ by $H \vee K$ and call it the
\defn{join}{join!of subgroups} of $H$ and $K$. We will denote $H \intersect K$
by $H \wedge K$, and call it the \defn{meet}{meet!of subgroups} of $H$ and $K$.
The reason for this terminology will be come clear when we look at abstract
lattices.
The significance of the lattice of subgroups is that if two groups do not have
similar lattices of subgroups, they cannot be isomorphic, so it provides a
nice pictorial way of demonstrating that two groups are distinct. To show
this, we first need to show that homomorphisms preserve the relationship of
inclusion of subgroups.
\begin{proposition}\label{prop:homsubgrouporderpreserving}
If $G$ and $H$ are groups, $\alpha : G \to H$ is a homomorphism, and $K_{1}$
and $K_{2}$ are subgroups of $G$ with $K_{1} \subseteq K_{2}$, then
$\alpha(K_{1})$ is a subgroup of $\alpha(K_{2})$.
Furthermore, if $\alpha$ is a monomorphism, and $K_{1} \subset K_{2}$,
then $\alpha(K_{1})$ not equal to $\alpha(K_{2})$.
\end{proposition}
\begin{proof}
We know from Proposition~\ref{prop:homsubgroup} that $\alpha(K_{1})$ and
$\alpha(K_{2})$ are subgroups of $H$, and it is immediate from the
definition of the image of a set under a function that $\alpha(K_{1})
\subseteq \alpha(K_{2})$ if $K_{1} \subseteq K_{2}$. So $\alpha(K_{1})
\le \alpha(K_{2})$.
If $\alpha$ is a monomorphism in addition, then since there is some $g \in
K_{2}$, but not in $K_{1}$, we cannot have $\alpha(h) = \alpha(g)$ for any
$h \in K_{1}$ (otherwise $\alpha$ would not be one-to-one). Hence
$\alpha(K_{1})$ is properly contained in $\alpha(K_{2})$.
\end{proof}
\begin{corollary}\label{cor:hommeetandjoin}
If $G$ and $H$ are groups, $\alpha : G \to H$ is a homomorphism, and $K_{1}$
and $K_{2}$ are subgroups of $G$, then $\alpha(K_{1} \vee K_{2}) =
\alpha(K_{1}) \vee \alpha(K_{2})$ and $\alpha(K_{1} \wedge K_{2}) =
\alpha(K_{1}) \wedge \alpha(K_{2})$.
\end{corollary}
\begin{proof}
We know that $\alpha(K_{1}) \vee \alpha(K_{2})$ is the smallest
subgroup which contains both $\alpha(K_{1})$ and $\alpha(K_{2})$, but
since $K_{1}$ and $K_{2} \subseteq K_{1} \vee K_{2}$, we have that
$\alpha(K_{1})$ and $\alpha(K_{2}) \subseteq \alpha(K_{1} \vee K_{2})$,
hence $\alpha(K_{1}) \vee \alpha(K_{2}) \subseteq \alpha(K_{1} \vee
K_{2})$.
Conversely, if $\alpha^{-1}(\alpha(K_{1}) \vee \alpha(K_{2}))$ is a
subgroup of $G$ which contains both $K_{1}$ and $K_{2}$, so $K_{1} \vee
K_{2} \subseteq \alpha^{-1}(\alpha(K_{1}) \vee \alpha(K_{2}))$, and hence
\[
\alpha(K_{1} \vee K_{2}) \subseteq \alpha(\alpha^{-1}(\alpha(K_{1}) \vee
\alpha(K_{2}))) = \alpha(K_{1}) \vee \alpha(K_{2}).
\]
Hence $\alpha(K_{1}) \vee \alpha(K_{2}) = \alpha(K_{1} \vee K_{2})$.
The proof of the case for $\wedge$ is left as an exercise.
\end{proof}
We will say that two groups $G$ and $H$ have corresponding, or
isomorphic, subgroup lattices if there is a bijection $f$ from
$\Sub(G)$ to $\Sub(H)$ so that $f(K_{1}) \vee f(K_{2}) = f(K_{1} \vee
K_{2})$, and $f(K_{1}) \wedge f(K_{2}) = f(K_{1} \wedge K_{2})$.
\begin{corollary}\label{cor:latticeisomtest}
If $G$ and $H$ are two groups whose subgroup lattices do not
correspond, then $G$ and $H$ are not isomorphic.
\end{corollary}
\begin{proof}
If $G$ and $H$ are isomorphic, then
Proposition~\ref{prop:subgroupisom} tells us that
$\overline{\alpha}$ is a bijection from $\Sub(G)$ to $\Sub(H)$, and
Corollary~\ref{cor:hommeetandjoin} says that
$\overline{\alpha}(K_{1} \vee K_{2}) = \overline{\alpha}(K_{1}) \vee
\overline{\alpha}(K_{2})$ and $\overline{\alpha}(K_{1} \wedge K_{2})
= \overline{\alpha}(K_{1}) \wedge \overline{\alpha}(K_{2})$. So
isomorphic groups have corresponding subgroup lattices.
The contrapositive of this result is the corollary.
\end{proof}
\begin{example}
The groups $C_{4}$ and $V$ have different subgroup lattices, so they
are not isomorphic.
\end{example}
Note that the converse of the corollary is not true. We know, for example,
that if $p$ is prime, the groups $C_{p}$ all have corresponding subgroup
lattices, yet the groups are clearly not isomorphic.
\subsection*{Exercises}
\begin{exercises}
\item Find the subgroup lattice of the group $D_{6}$.
\item Find the subgroup lattice of the group $C_{8}$.
\item Find the subgroup lattice of the group $C_{2} \cross C_{4}$.
\item Find the subgroup lattice of the group $C_{2} \cross C_{2} \cross
C_{2}$.
\item Find the subgroup lattice of the group $D_{10}$.
\item Find the subgroup lattice of the group $D_{12}$.
\item Find the subgroup lattice of the group $A_{4}$
\item Complete the proof of Corollary~\ref{cor:hommeetandjoin}.
\end{exercises}
\section{Extension: Lattices}
The pattern that subgroups of a group make under inclusion is a particular
example of a general phenomenon. The key idea is that we know when one
subgroup is ``larger'' than another, that we can find the largest thing
smaller than two subgroups (the meet) and that we can find the smallest thing
larger than the two subgroups (the join).
This idea is essentially the same as what happens with general subsets of a set.
We know when one subset is ``larger'' than another, we can find the
largest thing smaller than two subsets (the intersection) and we can find the
smallest thing larger than the two subsets (the union).
To explore this similarity further, we need to introduce a general concept that
we can use to model the idea of one thing being larger then another.
\begin{definition}
Let $X$ and $Y$ be sets. A \defn{relation}{relation} between $X$ and $Y$
is a subset $R$ of $X \cross Y$, where $x \in X$ and $y \in Y$ are
considered to be related by $R$ if and only if $(x,y) \in R$.
We write $xRy$ if $(x,y) \in R$. If $X = Y$ we say that $R$ is a relation
on $X$.
\end{definition}
Note that you should not confuse this definition of relation with the notion
of a relation on the elements of a group.
The concept of a relation is extremely general, and can be used to model a
great many fundamental mathematical concepts.
\begin{example}
If $X$ is any set, equality can be regarded as the relation $R = \{(x,x) : x
\in X\} \subseteq X \cross X$. Here $xRy$ if and only if $(x,y) \in R$ if and
only if $x = y$.
\end{example}
\begin{example}
If $X$ and $Y$ are any sets and $f : X \to Y$ is a function, the graph
$R = \{(x, f(x)): x \in X\} \subset X \cross Y$ is a relation where $xRy$ if and only if
$y = f(x)$. In fact functions are sometimes defined in this way as a
special case of the concept of a relation.
\end{example}
\begin{example}
In the real numbers, the set $L = \{ (x,y) : x \le y\} \in \reals \cross \reals$
is a relation where $xLy$ if and only if $x \le y$.
\end{example}
\begin{example}
If $\powerset(X)$ is the power set of some set $X$, then the set
$\subseteq = \{(A,B): \text{$A$ is a subset of $B$}\}$ is a relation
where $A \subseteq B$ if and only if $A$ is a subset of $B$.
\end{example}
\begin{example}
If $G$ is a group, and $X$ is the set of subgroups of $G$, then the set
$\le = \{(A,B): \text{$A$ is a subgroup of $B$}\}$ is a relation where
$A \le B$ if and only $A$ is a subgroup of $B$.
\end{example}
Because of the generality of relations, we need to impose some additional
conditions to make them useful in modelling particular situations.
\begin{definition}
Let $X$ and $Y$ be sets, and $R$ a relation on $X$. Let $x, y$ and $z \in X$.
We say that $R$ is \defn{reflexive}{relation!reflexive} if $xRx$ for all
$x \in X$.
We say that $R$ is \defn{symmetric}{relation! symmetric} if $xRy$ implies
$yRx$.
We say that $R$ is \defn{antisymmetric}{relation! antisymmetric} if $xRy$ and
$yRx$ implies $x = y$.
We say that $R$ is \defn{transitive}{relation!transitive} if $xRy$ and
$yRz$ implies $xRz$.
A \defn{partial order}{order!partial} on $X$ is a relation on $X$ which is
reflexive, transitive and antisymmetric.
\end{definition}
\begin{example}
The $\le$, $<$, $>$ and $\ge$ relations on any set of numbers. All are
antisymmetric and transitive, but not symmetric. The relations $\le$
and $\ge$ are reflexive, but $<$ and $>$ are not.
\end{example}
\begin{example}
The relation $\subseteq$ of $\powerset(X)$ is a partial order.
\end{example}
\begin{example}
The relation $\le$ on the set of subgroups of a group is a partial order.
\end{example}
Notice that if $\preceq$ is a partial order on a
set $X$, and $x$, $y \in X$, then it may be the case that neither $x \preceq y$
nor $y \preceq x$. If this is the case, we say that $x$ and $y$ are
\defn{incomparable elements}{incomparable elements} of $X$.
\begin{example}
The sets $\{1\}$ and $\{2,3\}$ are incomparable elements of
$\powerset(\{1,2,3\})$ under the subset partial order $\subseteq$.
\end{example}
So a partial order seem to encapsulate the general idea of something being
bigger than something else. Now we need to model the idea of a meet and a
join.
\begin{definition}
If $X$ is a set, $\preceq$ is a partial order on $X$, and $x$ and $y \in X$,
then $a \in X$ is a \defn{lower bound}{bound!lower} for $x$ and $y$ if $a \preceq x$ and
$a \preceq y$. We say that $a$ is the \defn{greatest lower
bound}{bound!greatest lower} of $x$ and $y$ if given any lower bound
$z$ of $x$ and $y$, we have that $z \preceq a$.
Similarly, $a$ is an \defn{upper bound}{bound!upper} for $x$ and $y$ if
$x \preceq a$ and $y \preceq a$. We say that $a$ is the \defn{least upper
bound}{bound!least upper} of $x$ and $y$ if given any upper bound
$z$ of $x$ and $y$, we have that $a \preceq z$.
In general, we denote the greatest lower bound of $x$ and $y$ by $x \wedge y$,
and the least upper bound of $x$ and $y$ by $x \vee y$.
A \defn{lattice}{lattice} $(X, \preceq)$ is a set with a partial order such that
every pair of elements has a greatest lower bound and a least upper bound.
\end{definition}
The examples of partial orders earlier in this section all have the lattice
property.
\begin{example}
The pair $(\reals, \le)$ is a lattice. Since for any $x$ and $y$, we have
$x \le y$ or $y \le x$ (or both), then $x \vee y = \min x,y$ and
$x \wedge y = \max x,y$.
\end{example}
\begin{example}
If $X$ is any set, then the pair $(\powerset(X), \subseteq)$ is a
lattice. Given any two subsets $A$ and $B$ of $X$, we have $A
\wedge B = A \union B$ and $A \vee B = A \intersect B$.
\end{example}
\begin{example}
The subgroup relation $\le$ on the set of subgroups $\Sub(G)$ of a
group $G$ makes $(\Sub(G), \le)$ a lattice, since if $H$ and $K \in
\Sub(G)$ we have $H \vee K = \langle H \union K \rangle$ and $H
\wedge K = H \intersect K$.
\end{example}
\begin{example}\label{eg:abstractlattice}
Let $X = \{0, x, y, 1\}$, and let $\preceq$ be the partial order
defined by $0 \preceq x$, $0 \preceq y$, $0 \preceq x$, $0 \preceq
1$, $x \preceq 1$, $y \preceq 1$ and $y \preceq 1$. Then $(X,
\preceq)$ is a lattice, and we can represent it diagramatically as
\begin{picture}(6,6)(-3,-1)
\put(0,0){\makebox(0,0){$0$}}
\put(0,0.5){\line(0,1){1}}
\put(0.5,0.5){\line(1,1){1}}
\put(-0.5,0.5){\line(-1,1){1}}
\put(-2,2){\makebox(0,0){$x$}}
\put(0,2){\makebox(0,0){$y$}}
\put(2,2){\makebox(0,0){$z$}}
\put(0,2.5){\line(0,1){1}}
\put(1.5,2.5){\line(-1,1){1}}
\put(-1.5,2.5){\line(1,1){1}}
\put(0,4){\makebox(0,0){$1$}}
\end{picture}
\end{example}
In the previous section, we showed that if the subgroup lattice of two
groups didn't agree, then the groups could not be isomorphic. The
heart of the result was showing that the isomorphism $\alpha$ between the
groups produced a function between the subgroups $\overline{\alpha}$
which preserved meet and join.
\begin{definition}
Let $(X, \preceq)$ and $(Y, \le)$ be two partially ordered sets. A
function $\alpha : X \to Y$ is an order-preserving function if whenever
we have $x$ and $y \in X$ such that $x \preceq y$, we have $\alpha(x)
\le \alpha(y)$.
If $(X, \preceq)$ and $(Y, \le)$ are lattices, then $\alpha: X \to
Y$ is a lattice homomorphism if $\alpha(x \vee y) = \alpha(x) \vee
\alpha(y)$, and $\alpha(x \wedge y) = \alpha(x) \wedge \alpha(y)$.
If $\alpha$ is a bijective lattice homomorphism, we say that it is
a lattice isomorphism.
\end{definition}
\begin{example}
Let $(X, \preceq)$ be as in Example~\ref{eg:abstractlattice}, and
$V$ be the four-group.
The function $\alpha : X \to \Sub(V)$ defined by the table
\[
\begin{array}{cc}
t & \alpha(t) \\
\hline
0 & \{e\} \\
x & \{e, a\} \\
y & \{e, b\} \\
z & \{e, ab\} \\
1 & V
\end{array}
\]
is a lattice isomorphism. Perhaps the easiest way to grasp this
fact is to observe that the diagrams for each lattice correspond.
\end{example}
\begin{example}
Consider the homomorphism $\alpha : V \to C_{4}$ of
Example~\ref{eg:4grouphom}. The corresponding map between
subgroups of these groups is $\overline{\alpha}$, and is given by
the following table
\[
\begin{array}{cc}
H & \overline{\alpha}(H) \\
\hline
\{e\} & \{e\} \\
\{e, a\} & \{e, a^{2}\} \\
\{e, b\} & \{e, a^{2}\} \\
\{e, ab\} & \{e\} \\
V & \{e, a^{2}\}
\end{array}
\]
is a lattice homomorphism.
\end{example}
The essential content of
Proposition~\ref{prop:homsubgrouporderpreserving} and
Corollary~\ref{cor:hommeetandjoin} is then:
\begin{proposition}
If $G$ and $H$ are groups, and $\alpha: G \to H$ is a homomorphism,
then $\overline{\alpha} : \Sub(G) \to \Sub(H)$ is an
order-preserving map.
\end{proposition}
\begin{corollary}\label{cor:grouphomtolathom}
If $G$ and $H$ are groups, and $\alpha: G \to H$ is a homomorphism,
then $\overline{\alpha} : \Sub(G) \to \Sub(H)$ is a lattice
homomorphism.
\end{corollary}
So we can then re-phrase Corollary~\ref{cor:latticeisomtest} in the
following way:
\begin{corollary}
If $G$ and $H$ are groups, and the subgroup lattices of $G$ and $H$
are not isomorphic, then $G$ and $H$ are not isomoprhic.
\end{corollary}
We can use Exercise~\ref{ex:orderfrommeetandjoin} to prove the
following proposition.
\begin{proposition}\label{prop:latticehomisorderpreserve}
Let $(X, \preceq)$ and $(Y, \le)$ be lattices, and $\alpha : X \to
Y$ a lattice homomorphism. Then $\alpha$ is an order-preserving
function.
\end{proposition}
\begin{proof}
See Exercise~\ref{ex:latticehomisorderpreserve}.
\end{proof}
In fact, we could prove Corollary~\ref{cor:hommeetandjoin} directly,
and use this proposition to conclude that
Proposition~\ref{prop:homsubgrouporderpreserving} must hold.
So the abstract concept of a lattice helps us understand the structure
of subgroups within a group, just as the abstract structure of a group
helps us understand concrete situations such as the symmetries of a
set.
\subsection*{Exercises}
\begin{exercises}
\item\label{ex:orderfrommeetandjoin} Let $\preceq$ be a partial
order on $X$. Show that if $x \preceq y$ that $x \wedge y = x$ and
$x \vee y = y$.
\item\label{ex:latticehomisorderpreserve} Prove
Proposition~\ref{prop:latticehomisorderpreserve}.
\item Consider the natural numbers $\naturals$ with the ``divides''
relation $x \mid y$ if and only if $y = kx$ for some $k \in \naturals$
(ie.\ if $x$ divides $y$). Show that $\mid$ is a partial order, and that
$x \wedge y$ is the greatest common divisor of $x$ and $y$ and $x \vee y$
is the least common multiple of $x$ and $y$.
\item Show that if $\preceq$ is a partial order on $X$, then the reverse
relation $\succeq$ defined by $x \succeq y$ if and only if $y \preceq x$ is
a partial order. Show that $(X, \preceq)$ is a lattice if and only if
$(X, \succeq)$ is a lattice.
\item Let $F(D, \reals)$ be the set of real-valued functions on some fixed
domain $D \subseteq \reals$ (ie.~the typical functions considered in calculus).
Show that the relation defined by $f \le g$ if $f(x) \le g(x)$ for all
$x \in D$ is a partial order.
Give an example of two functions which are incomparable.
Show that $(F(D, \reals), \le)$ is a lattice, where $f \wedge g$ and
$f \vee g$ are the functions defined by
\[
(f \wedge g)(x) = \min f(x), g(x) \qquad \text{and} \qquad
(f \vee g)(x) = \max f(x), g(x)
\]
respectively.
\end{exercises}
\section{The Centre and Centralizers}
Abelian groups are much nicer to work with algebraically than non-Abelian
groups. However, even in the case of non-Abelian groups there may be large
parts of the group which commute with each other.
Recall that two elements $x$ and $y \in G$ commute with one another if
\[
xy = yx.
\]
Multiplying both sides on the right by $x^{-1}$, we can state this
equivalently as saying that $x$ and $y$ commute if and only if
\[
xyx^{-1} = y,
\]
or, multiplying on the other side, if and only if
\[
x^{-1}yx = y.
\]
The set of all elements which commute with every other element of the
group is called the \defn{centre}{centre} of the group,
denoted by $Z(G)$. At the very least we have the identity $e \in
Z(G)$, but it is potentially much larger.
\begin{example}
The centre of $D_{6}$ is $\{1\}$. Clearly $1$ always commutes with any
element of $D_{6}$. For the other elements we can always find an element
with which it does not commute. For example, $a$ does not commute with
$b$, since $ba = (a^{2})b \ne ab$. The same equation shows that $a^{2}$
does not commute with $b$. So $a$, $a^{2}$ and $b$ are not in the centre.
Similarly $(ab)a = a^{3}b = a^{2}(ab)$, so $ab$ does not commute with $a$,
and $(a^{2}b)a = a^{4}b = a^{2}(a^{2}b)$, so $a^{2}b$ does not commute
with $a$.
\end{example}
\begin{example}\label{eg:D8centre}
The centre of $D_{8}$ is $\{1, a^{2}\}$. This follows since $a^{n}a^{2} =
a^{n+2} = a^{2}a^{n}$ and
\[
(a^{n}b)a^{2} = a^{n}a^{3}ba = a^{n+3}a^{3}b = a^{n+6}b = a^{n+2}b =
a^{2}(a^{n}b).
\]
for $n = 0, 1, 2, 3$. So $a^{2} \in Z(D_{8})$.
On the other hand $(a^{n}b)a = a^{n}a^{3}b = a^{3}(a^{n}b)$ for $n = 0, 1,
2, 3$, so $a$, $a^{3}$, and $a^{n}b$ are not in the centre.
\end{example}
\begin{example}
The centre of $GL_{n}(\reals)$ is the set
\[
\reals^{\times} I_{n} = \left\{\begin{bmatrix}
a & 0 & \cdots 0 \\
0 & a & \cdots 0 \\
\vdots & \vdots & \ddots & \vdots \\
0 & 0 & \cdots a \\
\end{bmatrix} : a \in \reals^{\times} \right\}.
\]
It is easy to verify with matrix multiplication that every element of this
set commutes with every matrix.
To simplify calculations, we will just look at the case $n = 2$. To see that
these are the only possible elements of the centre, we note that if
\[
\begin{bmatrix}
a & b \\
c & d
\end{bmatrix} \in Z(GL_{2}(\reals))
\]
then we must have
\[
\begin{bmatrix}
a & b \\
c & d
\end{bmatrix}
\begin{bmatrix}
0 & 1 \\
1 & 0
\end{bmatrix}
=
\begin{bmatrix}
0 & 1 \\
1 & 0
\end{bmatrix}
\begin{bmatrix}
a & b \\
c & d
\end{bmatrix},
\]
or,
\[
\begin{bmatrix}
b & a \\
d & c
\end{bmatrix}
=
\begin{bmatrix}
c & d \\
a & b
\end{bmatrix}
\]
and so we conclude that $a = d$ and $b = c$. We also must have
\[
\begin{bmatrix}
a & b \\
b & a
\end{bmatrix}
\begin{bmatrix}
0 & -1 \\
1 & 0
\end{bmatrix}
=
\begin{bmatrix}
0 & -1 \\
1 & 0
\end{bmatrix}
\begin{bmatrix}
a & b \\
b & a
\end{bmatrix},
\]
or,
\[
\begin{bmatrix}
b & -a \\
a & -b
\end{bmatrix}
=
\begin{bmatrix}
-b & -a \\
a & b
\end{bmatrix}
\]
so $b = -b$. Hence $b = 0$, and so a matrix is in the centre only if it
is in the set $\reals^{\times}I_{2}$.
\end{example}
The centre is an extremely nice subset of the group.
\begin{proposition}\label{prop:centresubgroup}
Let $G$ be a group. Then $Z(G)$ is an Abelian subgroup of $G$.
\end{proposition}
\begin{proof}
Given $x$, $y \in Z(G)$, we observe that for any $z \in G$ we have
\[
(xy)z = xzy = z(xy),
\]
so $xy \in Z(G)$. Similarly,
\[
x^{-1}z = x^{-1}zxx^{-1} = zx^{-1},
\]
so $x^{-1} \in Z(G)$. Hence $Z(G)$ is a subgroup of $G$.
It is immediate that $Z(G)$ is also Abelian, since every element of $Z(G)$
commutes with every element of $G$, and $Z(G)$ is a subgroup.
\end{proof}
You can think of the centre as being a measure of how close the group $G$ is
to being Abelian. If $Z(G) = G$, then the group is Abelian, while if $Z(G)$
is a large subgroup, then $G$ can be thought of having a large Abelian
component. On the other hand, if $Z(G) = \{e\}$, the group is very far from
being Abelian.
\begin{proposition}
Let $G$ and $H$ be isomorphic groups. Then $Z(G)$ and $Z(H)$ are
isomorphic groups.
\end{proposition}
\begin{proof}
We know that there is an isomorphism $\alpha : G \to H$. If $x \in Z(G)$,
then for any $y \in H$, we have that there is some unique $u \in G$ such
that $\alpha(u) = y$, and
\[
\alpha(x)y = \alpha(x)\alpha(u) = \alpha(xu) = \alpha(ux) =
\alpha(u)\alpha(x) = y\alpha(x).
\]
So $\alpha(x) \in Z(H)$. An identical argument shows that if $x \in
Z(H)$, then $\alpha^{-1}(x) \in Z(G)$.
Hence $\alpha(Z(G)) = Z(H)$, and the restriction of $\alpha$ to $Z(G)$ is
an isomorphism between the centres.
\end{proof}
\begin{corollary}
If $G$ and $H$ have centres which are not isomorphic, then $G$ and $H$ are
not isomorphic.
\end{corollary}
More generally, rather than asking which elements commute with the entire
group we might ask which elements commute with some subset of the group.
If $X \subset G$ is any subset of the group $G$,
then the \defn{centralizer}{centralizer} of $X$ is the set of all elements
which commute with every element of $X$, ie.
\[
Z_{G}(X) = \{y \in G : yx = xy\} = \{y \in G : y^{-1}xy = x\} =
\{y \in G : yxy^{-1} = x\}.
\]
This set always contains at least the identity element $e$.
\begin{proposition}
Let $G$ be a group, and $X \subset G$. Then $Z_{G}(X)$ is a
subgroup of $G$. If $Y \subseteq X$, then $Z_{G}(X)$ is a subgroup of
$Z_{G}(Y)$.
\end{proposition}
\begin{proof}
The proof of the first part of this proposition is essentially the same
as the proof of the first part of Proposition~\ref{prop:centresubgroup}, but
with $z \in X$ rather than $z \in G$.
The second part follows from the fact that if $zx = xz$ for every $x \in
X$, then it must also hold for every element of $Y$, since $Y \subseteq
X$. Therefore $Z_{G}(X) \subseteq Z_{G}(Y)$.
\end{proof}
In particular, this proposition implies that $Z(G) = Z_{G}(G) \subseteq
Z_{G}(X)$ for all $X$.
The case where $X$ contains a single element $g$ is important enough to have
its own, slightly different notation. We define
\[
Z_{G}(g) = \{y \in G : yg = gy\} = \{y \in G : y^{-1}gy = g\} =
\{y \in G : ygy^{-1} = g\}.
\]
\begin{example}
The consider the element $a$ of $D_{6}$. Then $Z_{D_{6}}(a) = \{e,
a, a^{2}\}$. The elements $b$, $ab$ and $a^{2}b$ are not elements
of $Z_{D_{6}}(a)$. Similarly, we have:
\begin{align*}
Z_{D_{6}}(e) &= D_{6},\\
Z_{D_{6}}(a^{2}) &= \{e, a, a^{2}\},\\
Z_{D_{6}}(b) &= \{e, b\},\\
Z_{D_{6}}(ab) &= \{e, ab\},\\
Z_{D_{6}}(a^{2}b) &= \{e, a^{2}b\},\\
\end{align*}
\end{example}
Once again, these subsets have very nice properties.
\begin{proposition}
Let $G$ be a group and $g \in G$. Then $\langle g \rangle$ is a subgroup of
$G$. Furthermore, $Z_{G}(g) = G$ if and only if $g \in Z(G)$
\end{proposition}
\begin{proof}
We note that $g \in Z_{G}(g)$, and since $\langle g \rangle$ is the
smallest subgroup of $G$ containing $g$, we have that $\langle g \rangle$
must be a subgroup of $Z_{G}(g)$.
If $g \in Z(G)$, $gx = xg$ for all $x \in G$, so $Z_{G}(g) = G$.
On the other hand, if $Z_{G}(g) = G$, then that implies that for any $x
\in G$, $xg = gx$, and so $g \in Z(G)$.
\end{proof}
You can think of the centralizer of $g$ as measuring how close $g$ is to
being an element of the centre, or how close it is to commuting with
everything.
The centralizer plays a key role in the discussion of conjugacy later
in this chapter. We finish up with one last result which links the
centre and centralizers of elements.
\begin{proposition}
Let $G$ be a group. Then $Z(G)$ is the intersection of all the
subgroups $Z_{G}(g)$.
\end{proposition}
\begin{proof}
We know that $Z(G) \subseteq Z_{G}(g)$ for every $g$, so
\[
Z(G) \subseteq \bigcap_{g \in G} Z_{G}(g).
\]
On the other hand, if $x \in Z_{G}(g)$ for every $g \in G$, then
$xg = gx$ for every $g \in G$, and so $x \in Z(G)$. Hence
\[
\bigcap_{g \in G} Z_{G}(g) \subseteq Z(G).
\]
\end{proof}
\subsection*{Exercises}
\begin{exercises}
\item Find the centre of the group $C_{2} \cross D_{6}$.
\item Find the centre of the group $D_{10}$.
\item Show that $Z(D_{2n}) = \{1\}$ if $n$ is odd, and $Z(D_{2n}) =
\{1, a^{n/2}\}$ if $n$ is even.
\item Find the centralizers of each element of $D_{8}$.
\item Find the centralizers of each element of $C_{2} \cross D_{6}$.
\item Find the centralizers of each element of $S_{4}$. What is
the center of this group?
\item Show that $Z_{G}(X) = Z_{G}(\langle X \rangle)$.
\end{exercises}
\section{Cosets}
There are other subsets of groups which it seems should have some
significance. For example in $S_{3}$, the set of ``reflection
permutations'', ie. those permutations with odd parity, is $\{ (1,2),
(1,3), (2,3) \}$ and is not a subgroup. Nevertheless, the elements
have a commonality. To understand such a situation, we need to
introduce some new notation.
If $\ast: A \cross B \to C$ is any binary relation, then given any
$x \in X$ and $Y \subseteq B$, we define
\[
x \ast Y = \{ x \ast y: y \in Y\} \subseteq C.
\]
Similarly, if $y \in B$ and $X \subseteq A$, we define
\[
X \ast y = \{ x \ast y: x \in X\} \subseteq C.
\]
And analagously, we define
\[
X \ast Y = \{ x \ast y: x \in X, y \in Y\} \subseteq C.
\]
We will often omit the operation $\ast$ and simply write $xY$, $Xy$
and $XY$ respectively.
If $\ast$ is a binary operation on $A$, and $X \subseteq A$, we will
sometimes write
\[
X^{n} = \underbrace{X \ast X \ast \cdots \ast X}_{\text{$n$ times}}.
\]
This is far from ideal notation, since it conflicts with the
Cartesian product
\[