-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhw6s.tex
More file actions
executable file
·1740 lines (1457 loc) · 74.7 KB
/
hw6s.tex
File metadata and controls
executable file
·1740 lines (1457 loc) · 74.7 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
% The LaTeX below is mostly computer-generated (for reasons of speed); don't expect it to be very readable. Sorry.
\documentclass[paper=a4, fontsize=12pt]{scrartcl}%
\usepackage[T1]{fontenc}
\usepackage[english]{babel}
\usepackage{amsmath,amsfonts,amsthm,amssymb}
\usepackage{mathrsfs}
\usepackage{sectsty}
\usepackage{hyperref}
\usepackage{graphicx}
\usepackage{framed}
\usepackage{ifthen}
\usepackage{lastpage}
\usepackage{mathdots}
\usepackage[headsepline,footsepline,manualmark]{scrlayer-scrpage}
\usepackage[height=10in,a4paper,hmargin={1in,0.8in}]{geometry}
\usepackage[usenames,dvipsnames]{xcolor}
\usepackage{tikz}
\usepackage{verbatim}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}%
\setcounter{MaxMatrixCols}{30}
%TCIDATA{OutputFilter=latex2.dll}
%TCIDATA{Version=5.50.0.2960}
%TCIDATA{LastRevised=Thursday, May 09, 2019 19:19:28}
%TCIDATA{<META NAME="GraphicsSave" CONTENT="32">}
%TCIDATA{<META NAME="SaveForMode" CONTENT="1">}
%TCIDATA{BibliographyScheme=Manual}
%BeginMSIPreambleData
\providecommand{\U}[1]{\protect\rule{.1in}{.1in}}
%EndMSIPreambleData
\allsectionsfont{\centering \normalfont\scshape}
\setlength\parindent{20pt}
\newcommand{\CC}{\mathbb{C}}
\newcommand{\RR}{\mathbb{R}}
\newcommand{\QQ}{\mathbb{Q}}
\newcommand{\NN}{\mathbb{N}}
\newcommand{\DD}{{\mathbb{D}}}
\newcommand{\PP}{\mathbb{P}}
\newcommand{\KK}{\mathbb{K}}
\newcommand{\LL}{\mathbb{L}}
\newcommand{\MM}{\mathbb{M}}
\newcommand{\FF}{\mathbb{F}}
\newcommand{\Z}[1]{\mathbb{Z}/#1\mathbb{Z}}
\newcommand{\ZZ}{\mathbb{Z}}
\newcommand{\id}{\operatorname{id}}
\newcommand{\op}{\operatorname{op}}
\newcommand{\tildot}{\left. \widetilde{\cdot} \right.}
\newcommand{\lcm}{\operatorname{lcm}}
\newcommand{\set}[1]{\left\{ #1 \right\}}
\newcommand{\abs}[1]{\left| #1 \right|}
\newcommand{\tup}[1]{\left( #1 \right)}
\newcommand{\ive}[1]{\left[ #1 \right]}
\newcommand{\floor}[1]{\left\lfloor #1 \right\rfloor}
\newcommand{\underbrack}[2]{\underbrace{#1}_{\substack{#2}}}
\newcommand{\powset}[2][]{\ifthenelse{\equal{#2}{}}{\mathcal{P}\left(#1\right)}{\mathcal{P}_{#1}\left(#2\right)}}
\newcommand{\mapeq}[1]{\underset{#1}{\equiv}}
\newcommand{\eps}{\varepsilon}
\newcommand{\N}{\operatorname{N}}
\newcommand{\horrule}[1]{\rule{\linewidth}{#1}}
\newcommand{\nnn}{\nonumber\\}
\let\sumnonlimits\sum
\let\prodnonlimits\prod
\let\cupnonlimits\bigcup
\let\capnonlimits\bigcap
\renewcommand{\sum}{\sumnonlimits\limits}
\renewcommand{\prod}{\prodnonlimits\limits}
\renewcommand{\bigcup}{\cupnonlimits\limits}
\renewcommand{\bigcap}{\capnonlimits\limits}
\newtheoremstyle{plainsl}
{8pt plus 2pt minus 4pt}
{8pt plus 2pt minus 4pt}
{\slshape}
{0pt}
{\bfseries}
{.}
{5pt plus 1pt minus 1pt}
{}
\theoremstyle{plainsl}
\newtheorem{theorem}{Theorem}[section]
\newtheorem{proposition}[theorem]{Proposition}
\newtheorem{lemma}[theorem]{Lemma}
\newtheorem{corollary}[theorem]{Corollary}
\newtheorem{conjecture}[theorem]{Conjecture}
\theoremstyle{definition}
\newtheorem{definition}[theorem]{Definition}
\newtheorem{example}[theorem]{Example}
\newtheorem{exercise}[theorem]{Exercise}
\newtheorem{examples}[theorem]{Examples}
\newtheorem{algorithm}[theorem]{Algorithm}
\newtheorem{question}[theorem]{Question}
\theoremstyle{remark}
\newtheorem{remark}[theorem]{Remark}
\newenvironment{statement}{\begin{quote}}{\end{quote}}
\newenvironment{fineprint}{\begin{small}}{\end{small}}
\newcommand{\myname}{Darij Grinberg}
\newcommand{\myid}{00000000}
\newcommand{\mymail}{dgrinber@umn.edu}
\newcommand{\psetnumber}{6}
\ihead{Solutions to homework set \#\psetnumber}
\ohead{page \thepage\ of \pageref{LastPage}}
\ifoot{\myname, \myid}
\ofoot{\mymail}
\begin{document}
\title{ \normalfont {\normalsize \textsc{University of Minnesota, School of
Mathematics} }\\[25pt] \rule{\linewidth}{0.5pt} \\[0.4cm] {\huge Math 4281: Introduction to Modern Algebra, }\\Spring 2019: Homework 6\\\rule{\linewidth}{2pt} \\[0.5cm] }
\author{Darij Grinberg}
\maketitle
%----------------------------------------------------------------------------------------
% EXERCISE 1
%----------------------------------------------------------------------------------------
\rule{\linewidth}{0.3pt} \\[0.4cm]
\section{Exercise 1: The opposite ring}
Let $\mathbb{K}$ be a ring. We define a new binary operation $\left.
\widetilde{\cdot} \right. $ on $\mathbb{K}$ by setting
\[
a \left. \widetilde{\cdot} \right. b = ba \qquad\text{for all } a, b
\in\mathbb{K} .
\]
(Thus, $\left. \widetilde{\cdot} \right. $ is the multiplication of
$\mathbb{K}$, but with the arguments switched.)
\begin{enumerate}
\item[\textbf{(a)}] Prove that the set $\mathbb{K}$, equipped with the
addition $+$, the multiplication $\left. \widetilde{\cdot} \right. $, the
zero $0_{\mathbb{K}}$ and the unity $1_{\mathbb{K}}$, is a ring.
\end{enumerate}
\noindent This new ring is called the \textit{opposite ring} of $\mathbb{K}$,
and is denoted by $\mathbb{K}^{\operatorname{op}}$.
Note that the \textbf{sets} $\mathbb{K}$ and $\mathbb{K}^{\operatorname{op}}$
are identical (so a map from $\mathbb{K}$ to $\mathbb{K}$ is the same as a map
from $\mathbb{K}$ to $\mathbb{K}^{\operatorname{op}}$); but the \textbf{rings}
$\mathbb{K}$ and $\mathbb{K}^{\operatorname{op}}$ are generally not the same
(so a ring homomorphism from $\mathbb{K}$ to $\mathbb{K}$ is not the same as a
ring homomorphism from $\mathbb{K}$ to $\mathbb{K}^{\operatorname{op}}$).
\begin{enumerate}
\item[\textbf{(b)}] Prove that the identity map $\operatorname{id} :
\mathbb{K} \to\mathbb{K}$ is a ring isomorphism from $\mathbb{K}$ to
$\mathbb{K}^{\operatorname{op}}$ if and only if $\mathbb{K}$ is commutative.
\item[\textbf{(c)}] Now, assume that $\mathbb{K}$ is the matrix ring
$\mathbb{L}^{n \times n}$ for some commutative ring $\mathbb{L}$ and some $n
\in\mathbb{N}$. Prove that the map
\[
\mathbb{K} \to\mathbb{K}^{\operatorname{op}}, \qquad A \mapsto A^{T}
\]
(where $A^{T}$, as usual, denotes the transpose of a matrix $A$) is a ring isomorphism.
\end{enumerate}
[\textbf{Hint:} In \textbf{(a)}, you only have to check the ring axioms that
have to do with multiplication. Similarly, in \textbf{(b)}, you are free to
check the one axiom relating to multiplication only. In \textbf{(c)}, you can
use \cite[Exercise 6.5]{detnotes} without proof.]
\subsection{Remark}
This exercise gives some examples of rings $\mathbb{K}$ that are isomorphic to
their opposite rings $\mathbb{K}^{\operatorname{op}}$. See
\url{https://mathoverflow.net/questions/64370/} for examples of rings that are not.
\subsection{Solution}
We shall follow the PEMDAS convention for the order of operations, treating
the new multiplication $\left. \widetilde{\cdot}\right. $ operation as a
multiplicative operation. Thus, the expression \textquotedblleft$a\left.
\widetilde{\cdot}\right. b+c\left. \widetilde{\cdot}\right. d$%
\textquotedblright\ will mean \textquotedblleft$\left( a\left.
\widetilde{\cdot}\right. b\right) +\left( c\left. \widetilde{\cdot
}\right. d\right) $\textquotedblright\ rather than \textquotedblleft%
$a\left. \widetilde{\cdot}\right. \left( b+c\right) \left.
\widetilde{\cdot}\right. d$\textquotedblright.
We are in the slightly confusing situation of having two different
\textquotedblleft multiplications\textquotedblright\ on one and the same set
$\mathbb{K}$: the original multiplication $\cdot$ of the ring $\mathbb{K}$,
and the new multiplication $\left. \widetilde{\cdot}\right. $ of the ring
$\mathbb{K}^{\operatorname*{op}}$ (although we still have not shown that
$\mathbb{K}^{\operatorname*{op}}$ is actually a ring). Let us agree that if
$a,b\in\mathbb{K}$, then the notation \textquotedblleft$ab$\textquotedblright%
\ shall always mean \textquotedblleft$a\cdot b$\textquotedblright\ (that is,
the image of the pair $\left( a,b\right) $ under the original multiplication
$\cdot$, not under the new multiplication $\left. \widetilde{\cdot}\right. $).
The original ring $\mathbb{K}$ satisfies all eight ring axioms (since it is a ring).
\bigskip
\textbf{(a)} Clearly, the addition $+$ and the multiplication $\left.
\widetilde{\cdot}\right. $ are binary operations on $\mathbb{K}$, and the
elements $0_{\mathbb{K}}$ and $1_{\mathbb{K}}$ indeed belong to $\mathbb{K}$.
It remains to prove that these two operations and these two elements make
$\mathbb{K}$ into a ring. In order to do so, we need to verify the ring
axioms. These axioms are the following:
\begin{itemize}
\item \textbf{Commutativity of addition:} We have $a+b=b+a$ for all
$a,b\in\mathbb{K}$.
\item \textbf{Associativity of addition:} We have $a+\left( b+c\right)
=\left( a+b\right) +c$ for all $a,b,c\in\mathbb{K}$.
\item \textbf{Neutrality of zero:} We have $a+0_{\mathbb{K}}=0_{\mathbb{K}%
}+a=a$ for all $a\in\mathbb{K}$.
\item \textbf{Existence of additive inverses:} For any $a\in\mathbb{K}$, there
exists an element $a^{\prime}\in\mathbb{K}$ such that $a+a^{\prime}=a^{\prime
}+a=0_{\mathbb{K}}$.
\item \textbf{Associativity of multiplication:} We have $a\left.
\widetilde{\cdot}\right. \left( b\left. \widetilde{\cdot}\right. c\right)
=\left( a\left. \widetilde{\cdot}\right. b\right) \left. \widetilde{\cdot
}\right. c$ for all $a,b,c\in\mathbb{K}$. (Of course, we \textbf{cannot} use
\textquotedblleft$ab$\textquotedblright\ as an abbreviation for
\textquotedblleft$a\left. \widetilde{\cdot}\right. b$\textquotedblright,
since \textquotedblleft$ab$\textquotedblright\ already stands for the
different product $a\cdot b$.)
\item \textbf{Neutrality of one:} We have $a\left. \widetilde{\cdot}\right.
1_{\mathbb{K}}=1_{\mathbb{K}}\left. \widetilde{\cdot}\right. a=a$ for all
$a\in\mathbb{K}$.
\item \textbf{Annihilation:} We have $a\left. \widetilde{\cdot}\right.
0_{\mathbb{K}}=0_{\mathbb{K}}\left. \widetilde{\cdot}\right. a=0_{\mathbb{K}%
}$ for all $a\in\mathbb{K}$.
\item \textbf{Distributivity:} We have%
\[
a\left. \widetilde{\cdot}\right. \left( b+c\right) =a\left.
\widetilde{\cdot}\right. b+a\left. \widetilde{\cdot}\right.
c\ \ \ \ \ \ \ \ \ \ \text{and}\ \ \ \ \ \ \ \ \ \ \left( a+b\right) \left.
\widetilde{\cdot}\right. c=a\left. \widetilde{\cdot}\right. c+b\left.
\widetilde{\cdot}\right. c
\]
for all $a,b,c\in\mathbb{K}$.
\end{itemize}
The first four of these eight axioms do not involve the new multiplication
$\left. \widetilde{\cdot}\right. $. Thus, they say exactly the same thing as
the corresponding axioms for the original ring $\mathbb{K}$ (with the original
operations $+$ and $\cdot$). Hence, they are satisfied (since the
corresponding axioms for the original ring $\mathbb{K}$ are satisfied). It
thus remains to prove that the remaining four axioms are satisfied. Let us
check this:
[\textit{Proof of the \textquotedblleft Associativity of
multiplication\textquotedblright\ axiom:} Let $a,b,c\in\mathbb{K}$. We must
prove that $a\left. \widetilde{\cdot}\right. \left( b\left.
\widetilde{\cdot}\right. c\right) =\left( a\left. \widetilde{\cdot
}\right. b\right) \left. \widetilde{\cdot}\right. c$.
The definition of the operation $\left. \widetilde{\cdot}\right. $ yields
$b\left. \widetilde{\cdot}\right. c=cb$ and $a\left. \widetilde{\cdot
}\right. b=ba$ and%
\begin{equation}
a\left. \widetilde{\cdot}\right. \left( b\left. \widetilde{\cdot}\right.
c\right) =\underbrace{\left( b\left. \widetilde{\cdot}\right. c\right)
}_{=cb}a=\left( cb\right) a \label{sol.ring.op.a.ass.1}%
\end{equation}
and%
\begin{equation}
\left( a\left. \widetilde{\cdot}\right. b\right) \left. \widetilde{\cdot
}\right. c=c\underbrace{\left( a\left. \widetilde{\cdot}\right. b\right)
}_{=ba}=c\left( ba\right) . \label{sol.ring.op.a.ass.2}%
\end{equation}
But the original ring $\mathbb{K}$ satisfies the \textquotedblleft
Associativity of multiplication\textquotedblright\ axiom (since it is a ring);
thus, $\left( cb\right) a=c\left( ba\right) $. In other words, the right
hand sides of the two equalities \eqref{sol.ring.op.a.ass.1} and
\eqref{sol.ring.op.a.ass.2} are equal. Thus, their left hand sides are also
equal. In other words, $a\left. \widetilde{\cdot}\right. \left( b\left.
\widetilde{\cdot}\right. c\right) =\left( a\left. \widetilde{\cdot
}\right. b\right) \left. \widetilde{\cdot}\right. c$. Thus, the
\textquotedblleft Associativity of multiplication\textquotedblright\ axiom is proven.]
[\textit{Proof of the \textquotedblleft Neutrality of one\textquotedblright%
\ axiom:} Let $a\in\mathbb{K}$. We must prove that $a\left. \widetilde{\cdot
}\right. 1_{\mathbb{K}}=1_{\mathbb{K}}\left. \widetilde{\cdot}\right. a=a$.
But the original ring $\mathbb{K}$ satisfies the \textquotedblleft Neutrality
of one\textquotedblright\ axiom (since it is a ring); thus, $a1_{\mathbb{K}%
}=1_{\mathbb{K}}a=a$.
The definition of the operation $\left. \widetilde{\cdot}\right. $ yields
$a\left. \widetilde{\cdot}\right. 1_{\mathbb{K}}=1_{\mathbb{K}}a=a$ and
$1_{\mathbb{K}}\left. \widetilde{\cdot}\right. a=a1_{\mathbb{K}}=a$.
Combining these two equalities, we find $a\left. \widetilde{\cdot}\right.
1_{\mathbb{K}}=1_{\mathbb{K}}\left. \widetilde{\cdot}\right. a=a$. Thus, the
\textquotedblleft Neutrality of one\textquotedblright\ axiom is proven.]
[\textit{Proof of the \textquotedblleft Annihilation\textquotedblright%
\ axiom:} Let $a\in\mathbb{K}$. We must prove that $a\left. \widetilde{\cdot
}\right. 0_{\mathbb{K}}=0_{\mathbb{K}}\left. \widetilde{\cdot}\right.
a=0_{\mathbb{K}}$.
But the original ring $\mathbb{K}$ satisfies the \textquotedblleft
Annihilation\textquotedblright\ axiom (since it is a ring); thus,
$a0_{\mathbb{K}}=0_{\mathbb{K}}a=0_{\mathbb{K}}$.
The definition of the operation $\left. \widetilde{\cdot}\right. $ yields
$a\left. \widetilde{\cdot}\right. 0_{\mathbb{K}}=0_{\mathbb{K}%
}a=0_{\mathbb{K}}$ and $0_{\mathbb{K}}\left. \widetilde{\cdot}\right.
a=a0_{\mathbb{K}}=0_{\mathbb{K}}$. Combining these two equalities, we find
$a\left. \widetilde{\cdot}\right. 0_{\mathbb{K}}=0_{\mathbb{K}}\left.
\widetilde{\cdot}\right. a=0_{\mathbb{K}}$. Thus, the \textquotedblleft
Annihilation\textquotedblright\ axiom is proven.]
[\textit{Proof of the \textquotedblleft Distributivity\textquotedblright%
\ axiom:} Let $a,b,c\in\mathbb{K}$. We must prove that%
\[
a\left. \widetilde{\cdot}\right. \left( b+c\right) =a\left.
\widetilde{\cdot}\right. b+a\left. \widetilde{\cdot}\right.
c\ \ \ \ \ \ \ \ \ \ \text{and}\ \ \ \ \ \ \ \ \ \ \left( a+b\right) \left.
\widetilde{\cdot}\right. c=a\left. \widetilde{\cdot}\right. c+b\left.
\widetilde{\cdot}\right. c.
\]
But the original ring $\mathbb{K}$ satisfies the \textquotedblleft
Distributivity\textquotedblright\ axiom (since it is a ring); thus,%
\[
c\left( a+b\right) =ca+cb\ \ \ \ \ \ \ \ \ \ \text{and}%
\ \ \ \ \ \ \ \ \ \ \left( b+c\right) a=ba+ca.
\]
The definition of the operation $\left. \widetilde{\cdot}\right. $ yields
$a\left. \widetilde{\cdot}\right. \left( b+c\right) =\left( b+c\right)
a$ and $a\left. \widetilde{\cdot}\right. b=ba$ and $a\left.
\widetilde{\cdot}\right. c=ca$. Thus,%
\[
a\left. \widetilde{\cdot}\right. \left( b+c\right) =\left( b+c\right)
a=ba+ca.
\]
Comparing this with $\underbrace{a\left. \widetilde{\cdot}\right. b}%
_{=ba}+\underbrace{a\left. \widetilde{\cdot}\right. c}_{=ca}=ba+ca$, we
obtain $a\left. \widetilde{\cdot}\right. \left( b+c\right) =a\left.
\widetilde{\cdot}\right. b+a\left. \widetilde{\cdot}\right. c$.
The definition of the operation $\left. \widetilde{\cdot}\right. $ yields
$\left( a+b\right) \left. \widetilde{\cdot}\right. c=c\left( a+b\right)
$ and $a\left. \widetilde{\cdot}\right. c=ca$ and $b\left. \widetilde{\cdot
}\right. c=cb$. Thus,%
\[
\left( a+b\right) \left. \widetilde{\cdot}\right. c=c\left( a+b\right)
=ca+cb.
\]
Comparing this with $\underbrace{a\left. \widetilde{\cdot}\right. c}%
_{=ca}+\underbrace{b\left. \widetilde{\cdot}\right. c}_{=cb}=ca+cb$, we
obtain $\left( a+b\right) \left. \widetilde{\cdot}\right. c=a\left.
\widetilde{\cdot}\right. c+b\left. \widetilde{\cdot}\right. c$.
Thus, we have proven the equalities%
\[
a\left. \widetilde{\cdot}\right. \left( b+c\right) =a\left.
\widetilde{\cdot}\right. b+a\left. \widetilde{\cdot}\right.
c\ \ \ \ \ \ \ \ \ \ \text{and}\ \ \ \ \ \ \ \ \ \ \left( a+b\right) \left.
\widetilde{\cdot}\right. c=a\left. \widetilde{\cdot}\right. c+b\left.
\widetilde{\cdot}\right. c.
\]
Hence, the \textquotedblleft Associativity of multiplication\textquotedblright%
\ axiom is proven.]
We have now shown that the set $\mathbb{K}$, equipped with the addition $+$,
the multiplication $\left. \widetilde{\cdot}\right. $, the zero
$0_{\mathbb{K}}$ and the unity $1_{\mathbb{K}}$, satisfies all the eight ring
axioms. Hence, it is a ring. This solves part \textbf{(a)} of the problem.
\bigskip
\textbf{(b)} $\Longrightarrow:$ Assume that $\operatorname{id}:\mathbb{K}%
\rightarrow\mathbb{K}$ is a ring isomorphism from $\mathbb{K}$ to
$\mathbb{K}^{\operatorname{op}}$. We must prove that $\mathbb{K}$ is commutative.
We have assumed that $\operatorname*{id}$ is a ring isomorphism from
$\mathbb{K}$ to $\mathbb{K}^{\operatorname{op}}$. Thus, in particular,
$\operatorname*{id}$ is a ring homomorphism from $\mathbb{K}$ to
$\mathbb{K}^{\operatorname{op}}$ (since any ring isomorphism must be a ring homomorphism).
Recall that if $\mathbb{U}$ and $\mathbb{V}$ are two rings, and if $f$ is a
ring homomorphism from $\mathbb{U}$ to $\mathbb{V}$, then%
\begin{equation}
f\left( a\cdot b\right) =f\left( a\right) \cdot f\left( b\right)
\ \ \ \ \ \ \ \ \ \ \text{for all }a,b\in\mathbb{U}.
\label{sol.ring.op.b.fwd.1}%
\end{equation}
(Indeed, this is one of the four axioms in our definition of a ring
homomorphism.) But keep in mind that the two \textquotedblleft$\cdot
$\textquotedblright\ signs in the equality \eqref{sol.ring.op.b.fwd.1} have
different meanings: The \textquotedblleft$\cdot$\textquotedblright\ sign on
the left hand side stands for the multiplication of the ring $\mathbb{U}$,
whereas the \textquotedblleft$\cdot$\textquotedblright\ sign on the right hand
side stands for the multiplication of the ring $\mathbb{V}$. Thus,
\eqref{sol.ring.op.b.fwd.1} (applied to $\mathbb{U}=\mathbb{K}$,
$\mathbb{V}=\mathbb{K}^{\operatorname*{op}}$ and $f=\operatorname*{id}$)
yields%
\begin{equation}
\operatorname*{id}\left( a\cdot b\right) =\operatorname*{id}\left(
a\right) \left. \widetilde{\cdot}\right. \operatorname*{id}\left(
b\right) \ \ \ \ \ \ \ \ \ \ \text{for all }a,b\in\mathbb{K}
\label{sol.ring.op.b.fwd.2}%
\end{equation}
(since $\operatorname*{id}$ is a ring homomorphism from $\mathbb{K}$ to
$\mathbb{K}^{\operatorname{op}}$, and since the multiplication of the ring
$\mathbb{K}$ is denoted by \textquotedblleft$\cdot$\textquotedblright\ whereas
the multiplication of the ring $\mathbb{K}^{\operatorname*{op}}$ is denoted by
\textquotedblleft$\left. \widetilde{\cdot}\right. $\textquotedblright).
Now, if $a,b\in\mathbb{K}$, then%
\begin{align*}
ab & =a\cdot b=\operatorname*{id}\left( a\cdot b\right)
=\underbrace{\operatorname*{id}\left( a\right) }_{=a}\left.
\widetilde{\cdot}\right. \underbrace{\operatorname*{id}\left( b\right)
}_{=b}\qquad\left( \text{by \eqref{sol.ring.op.b.fwd.2}}\right) \\
& =a\left. \widetilde{\cdot}\right. b=ba\qquad\left( \text{by the
definition of the operation }\left. \widetilde{\cdot}\right. \right) .
\end{align*}
In other words, the ring $\mathbb{K}$ satisfies the \textquotedblleft
Commutativity of multiplication\textquotedblright\ axiom. In other words, the
ring $\mathbb{K}$ is commutative. This proves the \textquotedblleft%
$\Longrightarrow$\textquotedblright\ direction of part \textbf{(b)}.
$\Longleftarrow:$ Assume that $\mathbb{K}$ is commutative. We must prove that
$\operatorname{id}:\mathbb{K}\rightarrow\mathbb{K}$ is a ring isomorphism from
$\mathbb{K}$ to $\mathbb{K}^{\operatorname{op}}$.
If $a,b\in\mathbb{K}$, then%
\begin{align*}
a\left. \widetilde{\cdot}\right. b & =ba\qquad\left( \text{by the
definition of the operation }\left. \widetilde{\cdot}\right. \right) \\
& =ab\qquad\left( \text{since the ring }\mathbb{K}\text{ is commutative}%
\right) \\
& =a\cdot b.
\end{align*}
Thus, the binary operation $\left. \widetilde{\cdot}\right. $ is identical
with the binary operation $\cdot$.
But the only difference between the rings $\mathbb{K}$ and $\mathbb{K}%
^{\operatorname*{op}}$ is that $\mathbb{K}^{\operatorname*{op}}$ has the
multiplication $\left. \widetilde{\cdot}\right. $ while $\mathbb{K}$ has the
multiplication $\cdot$. (All the remaining structure of $\mathbb{K}$ and
$\mathbb{K}^{\operatorname*{op}}$ is the same.) But since we have shown that
$\left. \widetilde{\cdot}\right. $ is identical with $\cdot$, we see that
this difference is not actually a difference either; the multiplications of
$\mathbb{K}$ and $\mathbb{K}^{\operatorname*{op}}$ are also the same. Hence,
the ring $\mathbb{K}^{\operatorname*{op}}$ is completely identical to the ring
$\mathbb{K}$ (not just as sets, but as rings with all their structure).
But recall that $\operatorname*{id}:\mathbb{K}\rightarrow\mathbb{K}$ is a ring
isomorphism from $\mathbb{K}$ to $\mathbb{K}$. Since the ring $\mathbb{K}%
^{\operatorname*{op}}$ is completely identical to the ring $\mathbb{K}$, we
can replace the last \textquotedblleft$\mathbb{K}$\textquotedblright\ in this
sentence by \textquotedblleft$\mathbb{K}^{\operatorname*{op}}$%
\textquotedblright\ without changing its meaning. Thus, we obtain that
$\operatorname*{id}:\mathbb{K}\rightarrow\mathbb{K}$ is a ring isomorphism
from $\mathbb{K}$ to $\mathbb{K}^{\operatorname*{op}}$. This proves the
\textquotedblleft$\Longleftarrow$\textquotedblright\ direction of part
\textbf{(b)}.
\bigskip
\textbf{(c)} Let us quote the following fact from \cite[Exercise
6.5]{detnotes} (except that we are replacing $\mathbb{K}$ by $\mathbb{L}$):
\begin{proposition}
\label{prop.sol.ring.op.c.transp.helper}Let $\mathbb{L}$ be a commutative
ring. In this proposition, all matrices are over $\mathbb{L}$.
\textbf{(a)} If $u$, $v$ and $w$ are three nonnegative integers, if $P$ is a
$u\times v$-matrix, and if $Q$ is a $v\times w$-matrix, then%
\[
\left( PQ\right) ^{T}=Q^{T}P^{T}.
\]
\textbf{(b)} Every $u\in\mathbb{N}$ satisfies%
\[
\left( I_{u}\right) ^{T}=I_{u}.
\]
\textbf{(c)} If $u$ and $v$ are two nonnegative integers, if $P$ is a $u\times
v$-matrix, and if $\lambda\in\mathbb{L}$, then%
\[
\left( \lambda P\right) ^{T}=\lambda P^{T}.
\]
\textbf{(d)} If $u$ and $v$ are two nonnegative integers, and if $P$ and $Q$
are two $u\times v$-matrices, then%
\[
\left( P+Q\right) ^{T}=P^{T}+Q^{T}.
\]
\textbf{(e)} If $u$ and $v$ are two nonnegative integers, and if $P$ is a
$u\times v$-matrix, then%
\[
\left( P^{T}\right) ^{T}=P.
\]
\end{proposition}
Now, let $\mathbf{T}$ be the map%
\[
\mathbb{K}\rightarrow\mathbb{K}^{\operatorname{op}},\qquad A\mapsto A^{T}.
\]
We must prove that $\mathbf{T}$ is a ring isomorphism.
In class\footnote{specifically, Proposition 5.10.5 in
\href{http://www.cip.ifi.lmu.de/~grinberg/t/19s/notes.pdf}{the class notes};
but the numbering may change}, we have proven that any invertible ring
homomorphism is a ring isomorphism. Hence, it suffices to prove that
$\mathbf{T}$ is an invertible ring homomorphism.
Let us first prove that $\mathbf{T}$ is a ring homomorphism. In order to do
so, we need to verify the following four claims:
\begin{statement}
\textit{Claim 1:} We have $\mathbf{T}\left( a+b\right) =\mathbf{T}\left(
a\right) +\mathbf{T}\left( b\right) $ for all $a,b\in\mathbb{K}$.
\end{statement}
\begin{statement}
\textit{Claim 2:} We have $\mathbf{T}\left( 0_{\mathbb{K}}\right)
=0_{\mathbb{K}^{\operatorname*{op}}}$.
\end{statement}
\begin{statement}
\textit{Claim 3:} We have $\mathbf{T}\left( ab\right) =\mathbf{T}\left(
a\right) \left. \widetilde{\cdot}\right. \mathbf{T}\left( b\right) $ for
all $a,b\in\mathbb{K}$.
\end{statement}
\begin{statement}
\textit{Claim 4:} We have $\mathbf{T}\left( 1_{\mathbb{K}}\right)
=1_{\mathbb{K}^{\operatorname*{op}}}$.
\end{statement}
(Note the \textquotedblleft$\left. \widetilde{\cdot}\right. $%
\textquotedblright\ sign on the right hand side of Claim 3; this is because
$\mathbf{T}\left( a\right) $ and $\mathbf{T}\left( b\right) $ are being
considered as elements of $\mathbb{K}^{\operatorname*{op}}$, and the
multiplication of the ring $\mathbb{K}^{\operatorname*{op}}$ is $\left.
\widetilde{\cdot}\right. $.)
Let us now prove these claims:
[\textit{Proof of Claim 3:} Let $a,b\in\mathbb{K}$. Then, $a\in\mathbb{K}%
=\mathbb{L}^{n\times n}$ and $b\in\mathbb{K}=\mathbb{L}^{n\times n}$. Hence,
$a$ and $b$ are two $n\times n$-matrices over $\mathbb{L}$. The definition of
$\mathbf{T}$ yields $\mathbf{T}\left( ab\right) =\left( ab\right) ^{T}$
and $\mathbf{T}\left( a\right) =a^{T}$ and $\mathbf{T}\left( b\right)
=b^{T}$. The definition of the operation $\left. \widetilde{\cdot}\right. $
yields $\mathbf{T}\left( a\right) \left. \widetilde{\cdot}\right.
\mathbf{T}\left( b\right) =\underbrace{\mathbf{T}\left( b\right) }%
_{=b^{T}}\underbrace{\mathbf{T}\left( a\right) }_{=a^{T}}=b^{T}a^{T}$. But
$\mathbf{T}\left( ab\right) =\left( ab\right) ^{T}=b^{T}a^{T}$ (by
Proposition \ref{prop.sol.ring.op.c.transp.helper} \textbf{(a)}, applied to
$u=n$, $v=n$, $w=n$, $P=a$ and $Q=b$). Comparing these two equalities, we
obtain $\mathbf{T}\left( ab\right) =\mathbf{T}\left( a\right) \left.
\widetilde{\cdot}\right. \mathbf{T}\left( b\right) $. This proves Claim 3.]
[\textit{Proof of Claim 1:} Let $a,b\in\mathbb{K}$. Then, $a\in\mathbb{K}%
=\mathbb{L}^{n\times n}$ and $b\in\mathbb{K}=\mathbb{L}^{n\times n}$. Hence,
$a$ and $b$ are two $n\times n$-matrices over $\mathbb{L}$. The definition of
$\mathbf{T}$ yields $\mathbf{T}\left( a+b\right) =\left( a+b\right) ^{T}$
and $\mathbf{T}\left( a\right) =a^{T}$ and $\mathbf{T}\left( b\right)
=b^{T}$. But $\underbrace{\mathbf{T}\left( a\right) }_{=a^{T}}%
+\underbrace{\mathbf{T}\left( b\right) }_{=b^{T}}=a^{T}b^{T}$. But
$\mathbf{T}\left( a+b\right) =\left( a+b\right) ^{T}=a^{T}+b^{T}$ (by
Proposition \ref{prop.sol.ring.op.c.transp.helper} \textbf{(d)}, applied to
$u=n$, $v=n$, $P=a$ and $Q=b$). Comparing these two equalities, we obtain
$\mathbf{T}\left( a+b\right) =\mathbf{T}\left( a\right) +\mathbf{T}\left(
b\right) $. This proves Claim 1.]
[\textit{Proof of Claim 2:} We have $0_{\mathbb{K}}=0_{n\times n}$ (by the
definition of the ring $\mathbb{K}=\mathbb{L}^{n\times n}$). Applying the map
$\mathbf{T}$ to both sides of this equality, we obtain $\mathbf{T}\left(
0_{\mathbb{K}}\right) =\mathbf{T}\left( 0_{n\times n}\right) =\left(
0_{n\times n}\right) ^{T}$ (by the definition of $\mathbf{T}$). But the
definition of the transpose of a matrix easily yields $\left( 0_{n\times
n}\right) ^{T}=0_{n\times n}$. Hence, $\mathbf{T}\left( 0_{\mathbb{K}%
}\right) =\left( 0_{n\times n}\right) ^{T}=0_{n\times n}$. But the
definition of the ring $\mathbb{K}^{\operatorname*{op}}$ yields $0_{\mathbb{K}%
^{\operatorname*{op}}}=0_{\mathbb{K}}=0_{n\times n}$. Comparing the latter two
equalities, we obtain $\mathbf{T}\left( 0_{\mathbb{K}}\right) =0_{\mathbb{K}%
^{\operatorname*{op}}}$. This proves Claim 2.]
[\textit{Proof of Claim 4:} We have $1_{\mathbb{K}}=I_{n}$ (by the definition
of the ring $\mathbb{K}=\mathbb{L}^{n\times n}$). Applying the map
$\mathbf{T}$ to both sides of this equality, we obtain $\mathbf{T}\left(
1_{\mathbb{K}}\right) =\mathbf{T}\left( I_{n}\right) =\left( I_{n}\right)
^{T}$ (by the definition of $\mathbf{T}$). But Proposition
\ref{prop.sol.ring.op.c.transp.helper} \textbf{(b)} (applied to $u=n$) yields
$\left( I_{n}\right) ^{T}=I_{n}$. Hence, $\mathbf{T}\left( 1_{\mathbb{K}%
}\right) =\left( I_{n}\right) ^{T}=I_{n}$. But the definition of the ring
$\mathbb{K}^{\operatorname*{op}}$ yields $1_{\mathbb{K}^{\operatorname*{op}}%
}=1_{\mathbb{K}}=I_{n}$. Comparing the latter two equalities, we obtain
$\mathbf{T}\left( 1_{\mathbb{K}}\right) =1_{\mathbb{K}^{\operatorname*{op}}%
}$. This proves Claim 4.]
We have now proven all four Claims 1, 2, 3 and 4. Hence, $\mathbf{T}$ is a
ring homomorphism from $\mathbb{K}$ to $\mathbb{K}^{\operatorname*{op}}$ (by
the definition of a ring homomorphism).
Let us next prove that the map $\mathbf{T}$ is invertible. In proving this, we
do not need to concern ourselves with the ring structures (i.e., the
additions, multiplications, zeroes and unities) of $\mathbb{K}$ and
$\mathbb{K}^{\operatorname*{op}}$, but can simply consider $\mathbb{K}$ and
$\mathbb{K}^{\operatorname*{op}}$ as sets (because the invertibility of a map
has nothing to do with any ring structures).
Recall that $\mathbb{K}^{\operatorname*{op}}=\mathbb{K}$ \textbf{as sets}.
Thus, the map $\mathbf{T}$ is a map from $\mathbb{K}$ to $\mathbb{K}$ (since
$\mathbf{T}$ is a map from $\mathbb{K}$ to $\mathbb{K}^{\operatorname*{op}}$).
Hence, the map $\mathbf{T}\circ\mathbf{T}:\mathbb{K}\rightarrow\mathbb{K}$ is
well-defined. Moreover, each $P\in\mathbb{K}$ satisfies%
\begin{align*}
\left( \mathbf{T}\circ\mathbf{T}\right) \left( P\right) & =\mathbf{T}%
\left( \underbrace{\mathbf{T}\left( P\right) }_{\substack{=P^{T}\\\text{(by
the definition of }\mathbf{T}\text{)}}}\right) =\mathbf{T}\left(
P^{T}\right) =\left( P^{T}\right) ^{T}\qquad\left( \text{by the definition
of }\mathbf{T}\right) \\
& =P\qquad\left( \text{by Proposition \ref{prop.sol.ring.op.c.transp.helper}
\textbf{(e)} (applied to }u=n\text{ and }v=n\text{)}\right) \\
& =\operatorname*{id}\left( P\right) .
\end{align*}
In other words, $\mathbf{T}\circ\mathbf{T}=\operatorname*{id}$. Hence, the
maps $\mathbf{T}:\mathbb{K}\rightarrow\mathbb{K}$ and $\mathbf{T}%
:\mathbb{K}\rightarrow\mathbb{K}$ are mutually inverse. Thus, the map
$\mathbf{T}:\mathbb{K}\rightarrow\mathbb{K}$ is invertible. In other words,
the map $\mathbf{T}:\mathbb{K}\rightarrow\mathbb{K}^{\operatorname*{op}}$ is
invertible (since $\mathbb{K}=\mathbb{K}^{\operatorname*{op}}$ as sets).
So we have proven that the map $\mathbf{T}:\mathbb{K}\rightarrow
\mathbb{K}^{\operatorname*{op}}$ is an invertible ring homomorphism from
$\mathbb{K}$ to $\mathbb{K}^{\operatorname*{op}}$. Thus, this map $\mathbf{T}$
is a ring isomorphism from $\mathbb{K}$ to $\mathbb{K}^{\operatorname*{op}}$
(since any invertible ring homomorphism is a ring isomorphism). This solves
part \textbf{(c)} of the exercise.
%----------------------------------------------------------------------------------------
% EXERCISE 2
%----------------------------------------------------------------------------------------
\rule{\linewidth}{0.3pt} \\[0.4cm]
\section{Exercise 2: More ring isomorphisms}
\subsection{Problem}
\begin{enumerate}
\item[\textbf{(a)}] Let $\mathbb{L}$ be a ring. Let $w \in\mathbb{L}$ be an
invertible element. Prove that the map
\[
\mathbb{L} \to\mathbb{L} , \qquad a \mapsto waw^{-1}
\]
is a ring isomorphism.
\item[\textbf{(b)}] Let $\mathbb{K}$ be a ring. Let $W$ be the $n \times
n$-matrix
\[
\left( \left[ i + j = n + 1 \right] \right) _{1\leq i\leq n,\ 1\leq j\leq
n} =
\begin{pmatrix}
0 & \cdots & 0 & 0 & 1\\
0 & \cdots & 0 & 1 & 0\\
0 & \cdots & 1 & 0 & 0\\
\vdots & \iddots & \vdots & \vdots & \vdots\\
1 & \cdots & 0 & 0 & 0
\end{pmatrix}
\in\mathbb{K}^{n \times n}
\]
(where we are using \href{https://en.wikipedia.org/wiki/Iverson_bracket}{the
Iverson bracket notation} again).
Prove that $W = W^{-1}$.
\item[\textbf{(c)}] Let $A = \left( a_{i,j} \right) _{1\leq i\leq n,\ 1\leq
j\leq n} \in\mathbb{K}^{n \times n}$ be any $n \times n$-matrix. Prove that
\[
WAW^{-1} = \left( a_{n+1-i,n+1-j} \right) _{1\leq i\leq n,\ 1\leq j\leq n}.
\]
(In other words, $WAW^{-1}$ is the $n \times n$-matrix obtained from $A$ by
reversing the order of the rows and also reversing the order of the columns.)
\end{enumerate}
\subsection{Remark}
The map
\[
\mathbb{L} \to\mathbb{L} , \qquad a \mapsto waw^{-1}
\]
in part \textbf{(a)} of this exercise is called \textit{conjugation by $w$}.
It is best known in the case of a matrix ring, where it corresponds to a
change of basis for an endomorphism of a vector space. When $\mathbb{K}$ is a
field, the \textbf{only} ring isomorphisms $\mathbb{K}^{n \times n}
\to\mathbb{K}^{n \times n}$ are conjugations by invertible matrices; this is
the Noether--Skolem theorem (in one of its less general variants).
\subsection{Solution}
\textbf{(a)} Let $f$ be the map%
\[
\mathbb{L}\rightarrow\mathbb{L},\qquad a\mapsto waw^{-1}.
\]
We must prove that $f$ is a ring isomorphism.
In class, we have proven that any invertible ring homomorphism is a ring
isomorphism. Hence, it suffices to prove that $f$ is an invertible ring homomorphism.
Let us first prove that $f$ is a ring homomorphism. In order to do so, we need
to verify the following four claims:
\begin{statement}
\textit{Claim 1:} We have $f\left( a+b\right) =f\left( a\right) +f\left(
b\right) $ for all $a,b\in\mathbb{L}$.
\end{statement}
\begin{statement}
\textit{Claim 2:} We have $f\left( 0\right) =0$.
\end{statement}
\begin{statement}
\textit{Claim 3:} We have $f\left( ab\right) =f\left( a\right) f\left(
b\right) $ for all $a,b\in\mathbb{L}$.
\end{statement}
\begin{statement}
\textit{Claim 4:} We have $f\left( 1\right) =1$.
\end{statement}
Let us now prove these claims:
[\textit{Proof of Claim 1:} Let $a,b\in\mathbb{L}$. The definition of $f$
yields $f\left( a\right) =waw^{-1}$ and $f\left( b\right) =wbw^{-1}$ and
$f\left( a+b\right) =w\left( a+b\right) w^{-1}$. Hence,%
\begin{align*}
f\left( a+b\right) & =w\underbrace{\left( a+b\right) w^{-1}%
}_{\substack{=aw^{-1}+bw^{-1}\\\text{(by distributivity)}}}=w\left(
aw^{-1}+bw^{-1}\right) =\underbrace{waw^{-1}}_{=f\left( a\right)
}+\underbrace{wbw^{-1}}_{=f\left( b\right) }\qquad\left( \text{by
distributivity}\right) \\
& =f\left( a\right) +f\left( b\right) .
\end{align*}
This proves Claim 1.]
[\textit{Proof of Claim 2:} The definition of $f$ yields $f\left( 0\right)
=w\underbrace{0w^{-1}}_{=0}=w0=0$. This proves Claim 2.]
[\textit{Proof of Claim 3:} Let $a,b\in\mathbb{L}$. The definition of $f$
yields $f\left( a\right) =waw^{-1}$ and $f\left( b\right) =wbw^{-1}$ and
$f\left( ab\right) =w\left( ab\right) w^{-1}$. Hence,%
\[
\underbrace{f\left( a\right) }_{=waw^{-1}}\ \ \underbrace{f\left( b\right)
}_{=wbw^{-1}}=wa\underbrace{w^{-1}w}_{=1}bw^{-1}=wabw^{-1}=w\left( ab\right)
w^{-1}=f\left( ab\right) .
\]
In other words, $f\left( ab\right) =f\left( a\right) f\left( b\right) $.
This proves Claim 3.]
[\textit{Proof of Claim 4:} The definition of $f$ yields $f\left( 1\right)
=w\underbrace{1w^{-1}}_{=w^{-1}}=ww^{-1}=1$. This proves Claim 4.]
We have now proven all four Claims 1, 2, 3 and 4. Hence, $f$ is a ring
homomorphism from $\mathbb{L}$ to $\mathbb{L}$ (by the definition of a ring homomorphism).
Let us next prove that the map $f$ is invertible.
Indeed, let $g$ be the map%
\[
\mathbb{L}\rightarrow\mathbb{L},\qquad a\mapsto w^{-1}aw.
\]
Then, each $a\in\mathbb{L}$ satisfies%
\begin{align*}
\left( g\circ f\right) \left( a\right) & =g\left( f\left( a\right)
\right) =w^{-1}\underbrace{f\left( a\right) }_{\substack{=waw^{-1}%
\\\text{(by the definition of }f\text{)}}}w\qquad\left( \text{by the
definition of }g\right) \\
& =\underbrace{w^{-1}w}_{=1}a\underbrace{w^{-1}w}_{=1}=a=\operatorname*{id}%
\left( a\right) .
\end{align*}
In other words, $g\circ f=\operatorname*{id}$.
Also, each $a\in\mathbb{L}$ satisfies%
\begin{align*}
\left( f\circ g\right) \left( a\right) & =f\left( g\left( a\right)
\right) =w\underbrace{g\left( a\right) }_{\substack{=w^{-1}aw\\\text{(by
the definition of }g\text{)}}}w^{-1}\qquad\left( \text{by the definition of
}f\right) \\
& =\underbrace{ww^{-1}}_{=1}a\underbrace{ww^{-1}}_{=1}=a=\operatorname*{id}%
\left( a\right) .
\end{align*}
In other words, $f\circ g=\operatorname*{id}$.
Now, the two maps $f$ and $g$ are mutually inverse (since $f\circ
g=\operatorname*{id}$ and $g\circ f=\operatorname*{id}$). Thus, the map $f$ is invertible.
So we have proven that the map $f$ is an invertible ring homomorphism. Thus,
this map $f$ is a ring isomorphism (since any invertible ring homomorphism is
a ring isomorphism). This solves part \textbf{(a)} of the exercise.
\bigskip
\textbf{(b)} We first show two auxiliary claims about how multiplication by
$W$ changes a matrix:
\begin{statement}
\textit{Claim 5:} Let $A=\left( a_{i,j}\right) _{1\leq i\leq n,\ 1\leq j\leq
n}\in\mathbb{K}^{n\times n}$ be any $n\times n$-matrix. Then,%
\[
WA=\left( a_{n+1-i,j}\right) _{1\leq i\leq n,\ 1\leq j\leq n}.
\]
\end{statement}
\begin{statement}
\textit{Claim 6:} Let $A=\left( a_{i,j}\right) _{1\leq i\leq n,\ 1\leq j\leq
n}\in\mathbb{K}^{n\times n}$ be any $n\times n$-matrix. Then,%
\[
AW=\left( a_{i,n+1-j}\right) _{1\leq i\leq n,\ 1\leq j\leq n}.
\]
\end{statement}
[\textit{Proof of Claim 5:} We have $W=\left( \left[ i+j=n+1\right]
\right) _{1\leq i\leq n,\ 1\leq j\leq n}$ and $A=\left( a_{i,j}\right)
_{1\leq i\leq n,\ 1\leq j\leq n}$. Hence, the definition of the multiplication
of matrices yields%
\begin{equation}
WA=\left( \sum_{k=1}^{n}\left[ i+k=n+1\right] a_{k,j}\right) _{1\leq i\leq
n,\ 1\leq j\leq n}. \label{sol.ring.matrix.W-conj.b.c5.pf.1}%
\end{equation}
Now, let $\left( i,j\right) \in\left\{ 1,2,\ldots,n\right\} ^{2}$. Thus,
$i,j\in\left\{ 1,2,\ldots,n\right\} $. From $i\in\left\{ 1,2,\ldots
,n\right\} $, we obtain $n+1-i\in\left\{ 1,2,\ldots,n\right\} $. Now,%
\begin{align}
& \sum_{k=1}^{n}\left[ i+k=n+1\right] a_{k,j}\nonumber\\
& =\sum_{k\in\left\{ 1,2,\ldots,n\right\} }\left[ i+k=n+1\right]
a_{k,j}\nonumber\\
& =\underbrace{\left[ i+\left( n+1-i\right) =n+1\right] }%
_{\substack{=1\\\text{(since }i+\left( n+1-i\right) =n+1\text{)}%
}}a_{n+1-i,j}+\sum_{\substack{k\in\left\{ 1,2,\ldots,n\right\} ;\\k\neq
n+1-i}}\underbrace{\left[ i+k=n+1\right] }_{\substack{=0\\\text{(since
}i+k\neq n+1\\\text{(because }k\neq n+1-i\text{))}}}a_{k,j}\nonumber\\
& \qquad\qquad\left(
\begin{array}
[c]{c}%
\text{here, we have split off the addend for }k=n+1-i\text{ from the sum}\\
\text{(since }n+1-i\in\left\{ 1,2,\ldots,n\right\} \text{)}%
\end{array}
\right) \nonumber\\
& =a_{n+1-i,j}+\underbrace{\sum_{\substack{k\in\left\{ 1,2,\ldots,n\right\}
;\\k\neq n+1-i}}0a_{k,j}}_{=0}=a_{n+1-i,j}.
\label{sol.ring.matrix.W-conj.b.c5.pf.2}%
\end{align}
Now, forget that we fixed $\left( i,j\right) $. We thus have proven
\eqref{sol.ring.matrix.W-conj.b.c5.pf.2} for each $\left( i,j\right)
\in\left\{ 1,2,\ldots,n\right\} ^{2}$. Thus, we have%
\[
\left( \sum_{k=1}^{n}\left[ i+k=n+1\right] a_{k,j}\right) _{1\leq i\leq
n,\ 1\leq j\leq n}=\left( a_{n+1-i,j}\right) _{1\leq i\leq n,\ 1\leq j\leq
n}.
\]
Hence, \eqref{sol.ring.matrix.W-conj.b.c5.pf.2} becomes%
\[
WA=\left( \sum_{k=1}^{n}\left[ i+k=n+1\right] a_{k,j}\right) _{1\leq i\leq
n,\ 1\leq j\leq n}=\left( a_{n+1-i,j}\right) _{1\leq i\leq n,\ 1\leq j\leq
n}.
\]
This proves Claim 5.]
[\textit{Proof of Claim 6:} We have $A=\left( a_{i,j}\right) _{1\leq i\leq
n,\ 1\leq j\leq n}$ and $W=\left( \left[ i+j=n+1\right] \right) _{1\leq
i\leq n,\ 1\leq j\leq n}$. Hence, the definition of the multiplication of
matrices yields%
\begin{equation}
AW=\left( \sum_{k=1}^{n}a_{i,k}\left[ k+j=n+1\right] \right) _{1\leq i\leq
n,\ 1\leq j\leq n}. \label{sol.ring.matrix.W-conj.b.c6.pf.1}%
\end{equation}
Now, let $\left( i,j\right) \in\left\{ 1,2,\ldots,n\right\} ^{2}$. Thus,
$i,j\in\left\{ 1,2,\ldots,n\right\} $. From $j\in\left\{ 1,2,\ldots
,n\right\} $, we obtain $n+1-j\in\left\{ 1,2,\ldots,n\right\} $. Now,%
\begin{align}
& \sum_{k=1}^{n}a_{i,k}\left[ k+j=n+1\right] \nonumber\\
& =\sum_{k\in\left\{ 1,2,\ldots,n\right\} }a_{i,k}\left[ k+j=n+1\right]
\nonumber\\
& =a_{i,n+1-j}\underbrace{\left[ \left( n+1-j\right) +j=n+1\right]
}_{\substack{=1\\\text{(since }\left( n+1-j\right) +j=n+1\text{)}}%
}+\sum_{\substack{k\in\left\{ 1,2,\ldots,n\right\} ;\\k\neq n+1-j}%
}a_{i,k}\underbrace{\left[ k+j=n+1\right] }_{\substack{=0\\\text{(since
}k+j\neq n+1\\\text{(because }k\neq n+1-j\text{))}}}\nonumber\\
& \qquad\qquad\left(
\begin{array}
[c]{c}%
\text{here, we have split off the addend for }k=n+1-j\text{ from the sum}\\
\text{(since }n+1-j\in\left\{ 1,2,\ldots,n\right\} \text{)}%
\end{array}
\right) \nonumber\\
& =a_{i,n+1-j}+\underbrace{\sum_{\substack{k\in\left\{ 1,2,\ldots,n\right\}
;\\k\neq n+1-j}}a_{i,k}0}_{=0}=a_{i,n+1-j}.
\label{sol.ring.matrix.W-conj.b.c6.pf.2}%
\end{align}
Now, forget that we fixed $\left( i,j\right) $. We thus have proven
\eqref{sol.ring.matrix.W-conj.b.c6.pf.2} for each $\left( i,j\right)
\in\left\{ 1,2,\ldots,n\right\} ^{2}$. Thus, we have%
\[
\left( \sum_{k=1}^{n}a_{i,k}\left[ k+j=n+1\right] \right) _{1\leq i\leq
n,\ 1\leq j\leq n}=\left( a_{i,n+1-j}\right) _{1\leq i\leq n,\ 1\leq j\leq
n}.
\]
Hence, \eqref{sol.ring.matrix.W-conj.b.c6.pf.2} becomes%
\[
AW=\left( \sum_{k=1}^{n}a_{i,k}\left[ k+j=n+1\right] \right) _{1\leq i\leq
n,\ 1\leq j\leq n}=\left( a_{i,n+1-j}\right) _{1\leq i\leq n,\ 1\leq j\leq
n}.
\]
This proves Claim 6.]
Let us now come back to part \textbf{(b)} of this exercise. Recall the
definition of the identity matrix $I_{n}\in\mathbb{K}^{n\times n}$. Namely,
$I_{n}$ is defined by
\[
I_{n}=\left( \delta_{i,j}\right) _{1\leq i\leq n,\ 1\leq j\leq n}%
,\qquad\text{where }\delta_{i,j}=%
\begin{cases}
1, & \text{if }i=j;\\
0, & \text{if }i\neq j
\end{cases}
.
\]
(Note that $\delta_{i,j}$ can also be written as $\left[ i=j\right] $ using
the Iverson bracket notation.)
Now, $W=\left( \left[ i+j=n+1\right] \right) _{1\leq i\leq n,\ 1\leq j\leq
n}$. Hence, Claim 6 (applied to $A=W$ and $a_{i,j}=\left[ i+j=n+1\right] $)
yields%
\begin{equation}
WW=\left( \left[ \left( n+1-i\right) +j=n+1\right] \right) _{1\leq i\leq
n,\ 1\leq j\leq n}. \label{sol.ring.matrix.W-conj.b.WW=}%
\end{equation}
Now, let $\left( i,j\right) \in\left\{ 1,2,\ldots,n\right\} ^{2}$. Thus,
$i,j\in\left\{ 1,2,\ldots,n\right\} $. Now, the statement \textquotedblleft%
$\left( n+1-i\right) +j=n+1$\textquotedblright\ is equivalent to
\textquotedblleft$i=j$\textquotedblright\ (since $\left( \left(
n+1-i\right) +j\right) -\left( n+1\right) =j-i$). Thus,%
\begin{align}
\left[ \left( n+1-i\right) +j=n+1\right] & =\left[ i=j\right] =%
\begin{cases}
1, & \text{if }i=j\text{ is true;}\\
0, & \text{if }i=j\text{ is false}%
\end{cases}
\nonumber\\
& \qquad\left( \text{by the definition of the Iverson bracket notation}%
\right) \nonumber\\
& =%
\begin{cases}
1, & \text{if }i=j;\\
0, & \text{if }i\neq j
\end{cases}
=\delta_{i,j}. \label{sol.ring.matrix.W-conj.b.1}%
\end{align}
Forget that we fixed $\left( i,j\right) $. We thus have proven
\eqref{sol.ring.matrix.W-conj.b.1} for each $\left( i,j\right) \in\left\{
1,2,\ldots,n\right\} ^{2}$. Thus, we have%
\[
\left( \left[ \left( n+1-i\right) +j=n+1\right] \right) _{1\leq i\leq
n,\ 1\leq j\leq n}=\left( \delta_{i,j}\right) _{1\leq i\leq n,\ 1\leq j\leq
n}.
\]
Hence, \eqref{sol.ring.matrix.W-conj.b.WW=} becomes%
\[
WW=\left( \left[ \left( n+1-i\right) +j=n+1\right] \right) _{1\leq i\leq
n,\ 1\leq j\leq n}=\left( \delta_{i,j}\right) _{1\leq i\leq n,\ 1\leq j\leq
n}=I_{n}.
\]
Now, the matrix $W$ is an inverse of $W$ (since $WW=I_{n}$ and $WW=I_{n}$).
Thus, the matrix $W$ is invertible, and its inverse is $W^{-1}=W$. This solves
part \textbf{(b)} of the exercise.