forked from jubnoske08/linear_algebra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
chapter_5.tex
912 lines (853 loc) · 45 KB
/
chapter_5.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
\documentclass{extarticle}
\sloppy
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% PACKAGES %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage[10pt]{extsizes}
\usepackage{amsfonts}
\usepackage{amsthm}
\usepackage{amssymb}
\usepackage[shortlabels]{enumitem}
\usepackage{microtype}
\usepackage{amsmath}
\usepackage{mathtools}
\usepackage{commath}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% PROBLEM ENVIRONMENT %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{tcolorbox}
\tcbuselibrary{theorems, breakable, skins}
\newtcbtheorem{prob}% environment name
{Problem}% Title text
{enhanced, % tcolorbox styles
attach boxed title to top left={xshift = 4mm, yshift=-2mm},
colback=blue!5, colframe=black, colbacktitle=blue!3, coltitle=black,
boxed title style={size=small,colframe=gray},
fonttitle=\bfseries,
separator sign none
}%
{}
\newenvironment{problem}[1]{\begin{prob*}{#1}{}}{\end{prob*}}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% THEOREMS/LEMMAS/ETC. %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\newtheorem{thm}{Theorem}
\newtheorem*{thm-non}{Theorem}
\newtheorem{lemma}[thm]{Lemma}
\newtheorem{corollary}[thm]{Corollary}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% MY COMMANDS %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\newcommand{\Z}{\mathbb{Z}}
\newcommand{\R}{\mathbb{R}}
\newcommand{\C}{\mathbb{C}}
\newcommand{\F}{\mathbb{F}}
\newcommand{\bigO}{\mathcal{O}}
\newcommand{\Real}{\mathcal{Re}}
\newcommand{\poly}{\mathcal{P}}
\newcommand{\mat}{\mathcal{M}}
\DeclareMathOperator{\Span}{span}
\newcommand{\Hom}{\mathcal{L}}
\DeclareMathOperator{\Null}{null}
\DeclareMathOperator{\Range}{range}
\newcommand{\defeq}{\vcentcolon=}
\newcommand{\restr}[1]{|_{#1}}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% SECTION NUMBERING %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\renewcommand\thesection{\Alph{section}:}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% DOCUMENT START %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\title{\vspace{-2em}Chapter 5: Eigenvalues, Eigenvectors, and Invariant Subspaces}
\author{\emph{Linear Algebra Done Right}, by Sheldon Axler}
\date{}
\begin{document}
\maketitle
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% SECTION A
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section{Invariant Subspaces}
% Problem 1
\begin{problem}{1}
Suppose $T\in\Hom(V)$ and $U$ is a subspace of $V$.
\begin{enumerate}[(a)]
\item Prove that if $U\subseteq \Null T$, then $U$ is invariant under $T$.
\item Prove that if $\Range T\subseteq U$, then $U$ is invariant under $T$.
\end{enumerate}
\end{problem}
\begin{proof}
\begin{enumerate}[(a)]
\item Suppose $u\in U$. Since $U\subseteq\Null T$, we must have $Tu = 0$. And since $0\in U$, this implies $Tu\in U$, and so $U$ is indeed invariant under $T$.
\item Suppose $u\in U$. Since $Tu\in \Range T$ (by definition of $\Range T$) and $\Range T\subseteq U$, we have $Tu\in U$. Thus $U$ is invariant under $T$. \qedhere
\end{enumerate}
\end{proof}
% Problem 3
\begin{problem}{3}
Suppose $S,T\in\Hom(V)$ are such that $ST = TS$. Prove that $\Range S$ is invariant under $T$.
\end{problem}
\begin{proof}
Suppose $w\in\Range S$. Then there exists $v\in V$ such that
\begin{equation*}
Sv = w.
\end{equation*}
It follows
\begin{equation*}
Tw = TSv = STv,
\end{equation*}
and thus $Tw\in \Range S$, so that $\Range S$ is indeed invariant under $T$.
\end{proof}
% Problem 5
\begin{problem}{5}
Suppose $T\in\Hom(V)$. Prove that the intersection of every collection of subspaces of $V$ invariant under $T$ is invariant under $T$.
\end{problem}
\begin{proof}
Let $\mathfrak{U}$ be a collection of subspaces of $V$ invariant under $T$, and let
\begin{equation*}
W = \bigcap_{U\in\mathfrak{U}} U.
\end{equation*}
By Problem 11 of Section 1.C, $W$ is a subspace of $V$. Assume $u\in W$. Then $u \in U$ for every $U\in\mathfrak{U}$. Since each such $U$ is invariant under $T$, we have $Tu\in U$ for all $U\in\mathfrak{U}$ as well. This implies $Tu\in W$, and hence $W$ is invariant under $T$ also, as desired.
\end{proof}
% Problem 7
\begin{problem}{7}
Suppose $T\in\Hom(\R^2)$ is defined by $T(x,y)=(-3y,x)$. Find the eigenvalues of $T$.
\end{problem}
\begin{proof}
Suppose $T(x,y) = \lambda(x,y)$, where $(x, y) \in\R^2$ is nonzero and $\lambda\in\F$. Then
\begin{align}
-3y &= \lambda x \label{eq1}\\
x &= \lambda y. \label{eq2}
\end{align}
Substituting the value for $x$ given by the Equation \ref{eq2} into Equation \ref{eq1} gives
\begin{equation*}
-3y = \lambda^2y.
\end{equation*}
Now, $y$ cannot be $0$, for otherwise $x=0$ (by Equation \ref{eq2}), contrary to our assumption that $(x,y)$ is nonzero. Hence $-3 = \lambda ^2$. Thus, if $\F = \C$, $T$ two eigenvalues: $\lambda = \pm \sqrt{3}i$. If $\F = \R$, $T$ has no eigenvalues.
\end{proof}
% Problem 9
\begin{problem}{9}
Define $T\in\Hom\left(\F^3\right)$ by
\begin{equation*}
T(z_1, z_2, z_3) = (2z_2, 0, 5z_3).
\end{equation*}
\end{problem}
\begin{proof}
Suppose $T(z_1, z_2, z_3) = \lambda(z_1,z_2,z_3)$, where $(z_1,z_2, z_3)\in\F^3$ is nonzero and $\lambda\in\F$. Then
\begin{align}
2z_2 &= \lambda z_1\label{eq3} \\
0 &= \lambda z_2 \label{eq4} \\
5z_3 &= \lambda z_3. \label{eq5}
\end{align}
First notice that $\lambda = 0$ satisfies the above equations if either $z_1$ or $z_3$ is nonzero, and thus $0$ is an eigenvalue with corresponding eigenvectors
\begin{equation*}
\{(s, 0, t)\mid s,t\in\F, s\text{ and }t\text{ are not both }0\}.
\end{equation*}
If $\lambda\neq 0$, then we must have $z_2 = 0$ by Equation \ref{eq4}, and hence $z_1 = 0$ by Equation \ref{eq3}. Since $(z_1,z_2, z_3)\neq (0, 0, 0)$, we conclude $z_3$ must be nonzero. Thus Equation \ref{eq5} implies $\lambda = 5$ is the only other eigenvalue with corresponding eigenvectors
\begin{equation*}
\{(0, 0, t)\mid t\in\F-\{0\}\},
\end{equation*}
and we're done.
\end{proof}
% Problem 11
\begin{problem}{11}
Define $T:\poly(\R)\to\poly(\R)$ by $Tp = p'$. Find all eigenvalues and eigenvectors of $T$.
\end{problem}
\begin{proof}
Let $p\in\poly(\R)$ be nonzero and suppose $Tp = \lambda p$ for some $\lambda\in\R$. Note that $\deg p$ must be $0$, for otherwise, since $\deg p = \deg(Tp) = \deg p'$, we have a contradiction. Thus the only eigenvalue of $T$ is $\lambda = 0$, and the corresponding eigenvectors are the constant, nonzero polynomials in $\poly(\R)$.
\end{proof}
% Problem 13
\begin{problem}{13}
Suppose $V$ is finite-dimensional, $T\in\Hom(V)$, and $\lambda\in\F$. Prove that there exists $\alpha\in\F$ such that $\left|\alpha-\lambda\right| < \frac{1}{1000}$ and $T-\alpha I$ is invertible.
\end{problem}
\begin{proof}
Suppose not. Then for any $\alpha\in\F$ such that $\left|\alpha-\lambda\right| < \frac{1}{1000}$, $T - \alpha I$ is not invertible. But then, by Theorem 5.6, $\alpha$ is an eigenvalue of $T$. This is a contradiction, since there are infinitely many such $\alpha$, but $T$ can have at most $\dim V$ eigenvalues by Theorem 5.13.
\end{proof}
% Problem 15
\begin{problem}{15}
Suppose $T\in\Hom(V)$. Suppose $S\in \Hom(V)$ is invertible.
\begin{enumerate}[(a)]
\item Prove that $T$ and $S^{-1}TS$ have the same eigenvalues.
\item What is the relationship between the eigenvectors of $T$ and the eigenvectors of $S^{-1}TS$?
\end{enumerate}
\end{problem}
\begin{proof}
\begin{enumerate}[(a)]
\item Suppose $\lambda\in\F$ is an eigenvalue of $S^{-1}TS$. Then there exists a nonzero $v\in V$ such that $(S^{-1}TS)v = \lambda v$. This equation is true if and only if $TSv = \lambda(Sv)$, which is in turn true if and only if $Tw = \lambda w$, where $w = Sv$. Note that since $S$ is invertible, $w\neq 0$. Thus $T$ and $S^{-1}TS$ indeed have the same eigenvalues.
\item As shown in the proof of (a), $v\in V$ is an eigenvector of $S^{-1}TS$ if and only if $Sv$ is an eigenvector of $T$. \qedhere
\end{enumerate}
\end{proof}
% Problem 17
\begin{problem}{17}
Give an example of an operator $T\in\Hom(\R^4)$ such that $T$ has no (real) eigenvalues.
\end{problem}
\begin{proof}
Consider the following operator
\begin{align*}
T:\R^4&\to \R^4\\
(x_1,x_2,x_3,x_4) &\mapsto (-x_4, x_1, x_2, x_3).
\end{align*}
We claim $T$ has no real eigenvalues. To see this, suppose $T(x_1,x_2,x_3,x_4) = \lambda (x_1, x_2,x_3, x_4)$ for some $\lambda\in\R$ and nonzero $(x_1,x_2,x_3,x_4)\in\R^4$. It follows
\begin{align*}
(-x_4, x_1, x_2, x_3) = \lambda (x_1, x_2,x_3, x_4),
\end{align*}
and hence
\begin{align}
-x_4 &= \lambda x_1 \label{eq6}\\
x_1 &= \lambda x_2 \label{eq7}\\
x_2 &= \lambda x_3 \label{eq8}\\
x_3 &= \lambda x_4. \label{eq9}
\end{align}
This implies $-x_4 = \lambda^4x_4$. Notice $\lambda$ cannot be $0$, for otherwise $(x_1,x_2,x_3,x_4)$ is the zero vector, a contradiction. Hence we must have $x_4 = 0$. But then Equation \ref{eq6} implies $x_1 = 0$, which in turn implies $x_2 = 0$ by Equation \ref{eq7}, and which thus implies $x_3 = 0$ by Equation \ref{eq8}. But now we have that $(x_1, x_2, x_3, x_4)$ is the zero vector, another contradiction. So we conclude $T$ indeed has no real eigenvalues, as claimed.
\end{proof}
% Problem 19
\begin{problem}{19}
Suppose $n$ is a positive integer and $T\in\Hom(\F^n)$ is defined by
\begin{equation*}
T(x_1,\dots, x_n) = (x_1 + \dots + x_n, \dots, x_1 + \dots + x_n);
\end{equation*}
in other words, $T$ is the operator whose matrix (with respect to the standard basis) consists of all $1$'s. Find all eigenvalues and eigenvectors of $T$.
\end{problem}
\begin{proof}
Suppose $T(x_1,\dots,x_n) = \lambda(x_1,\dots, x_n)$ for some $\lambda\in\F$ and some nonzero $(x_1,\dots, x_n)\in\F^n$. Then
\begin{align*}
(x_1 + \dots + x_n, \dots, x_1 + \dots + x_n) = \lambda(x_1,\dots, x_n).
\end{align*}
It follows
\begin{align*}
x_1 + \dots + x_n &= \lambda x_1\\
&\vdots \\
x_1 + \dots + x_n &= \lambda x_n.
\end{align*}
Thus, our first eigenvalue is $\lambda = 0$ with corresponding eigenvectors
\begin{equation*}
\{(x_1,\dots,x_n)\in\F^n-\{0\}\mid x_1+\dots + x_n = 0\}.
\end{equation*}
Next, if $\lambda\neq 0$, notice the equations above imply $\lambda x_1 = \dots = \lambda x_n$, and thus $x_1 = \dots = x_n$. Denote the common value of the $x_k$'s by $y$. Then any of the above equations is now equivalent to $ny = \lambda y$. Thus our second eigenvalue is $\lambda = n$ with corresponding eigenvectors
\begin{equation*}
\{(x_1,\dots, x_n)\in\F^n-\{0\}\mid x_1=\dots=x_n\},
\end{equation*}
and we're done.
\end{proof}
% Problem 21
\begin{problem}{21}
Suppose $T\in\Hom(V)$ is invertible.
\begin{enumerate}[(a)]
\item Suppose $\lambda\in\F$ with $\lambda\neq0$. Prove that $\lambda$ is an eigenvalue of $T$ if and only if $\frac{1}{\lambda}$ is an eigenvalue of $T^{-1}$.
\item Prove that $T$ and $T^{-1}$ have the same eigenvectors.
\end{enumerate}
\end{problem}
\begin{proof}
\begin{enumerate}[(a)]
\item By definition, $\lambda\neq 0$ is an eigenvalue of $T$ if and only if there exists $v\in V-\{0\}$ such that $Tv = \lambda v$. Since $T$ is invertible, this is true if and only if $v = T^{-1}(\lambda v)$, which is itself true if and only if (after simplification) $\left(\frac{1}{\lambda}\right)v = T^{-1}v$. Thus $\lambda$ is an eigenvalue of $T$ if and only if $\frac{1}{\lambda}$ is an eigenvalue of $T^{-1}$, as was to be shown.
\item First notice that $\lambda = 0$ cannot be an eigenvalue of $T$ or $T^{-1}$ since they are both injective. Now, suppose $v$ is an eigenvector of $T$ corresponding to $\lambda\neq 0$. By the proof of (a), $v$ is an eigenvector of $T^{-1}$ corresponding to $\frac{1}{\lambda}$. Thus all eigenvectors of $T$ are eigenvectors of $T^{-1}$. Now, reversing the roles of $T$ and $T^{-1}$ and applying the same argument yields the reverse inclusion, completing the proof. \qedhere
\end{enumerate}
\end{proof}
% Problem 23
\begin{problem}{23}
Suppose $V$ is finite-dimensional and $S,T\in\Hom(V)$. Prove that $ST$ and $TS$ have the same eigenvalues.
\end{problem}
\begin{proof}
Let $\lambda\in\F$ be an eigenvalue of $ST$ and $v\in V-\{0\}$ be a corresponding eigenvector, so that $STv = \lambda v$. First, if $Tv\neq 0$, it follows
\begin{align*}
TS(Tv) &= T(STv)\\
&= T(\lambda v)\\
&= \lambda(Tv),
\end{align*}
so that $\lambda$ is an eigenvalue of $TS$. Next, if $Tv = 0$, then we must have $\lambda = 0$ (since $STv = \lambda v$). Moreover, $T$ is not invertible (since $v\neq 0$). Thus $TS$ is not invertible (by Problem 9 of Chapter 3.D). Since $TS$ is not invertible, there exists a nonzero $w\in V$ such that $TSw = 0$, and hence $\lambda= 0$ is an eigenvalue of $TS$ as well.\\
\indent Since $\lambda$ is an eigenvalue of $TS$ in both cases, we conclude that every eigenvalue of $ST$ is also an eigenvalue of $TS$. Reversing the roles of $S$ and $T$ and applying the same argument yields the reverse inclusion, completing the proof.
\end{proof}
% Problem 25
\begin{problem}{25}
Suppose $T\in\Hom(V)$ and $u,v$ are eigenvectors of $T$ such that $u+v$ is also an eigenvector of $T$. Prove that $u$ and $v$ are eigenvectors of $T$ corresponding to the same eigenvalue.
\end{problem}
\begin{proof}
Suppose $\lambda_1$ is the eigenvalue associated to $u$, $\lambda_2$ is the eigenvalue associated to $v$, and $\lambda_3$ is the eigenvalue associated to $u+v$, so that
\begin{align}
Tu &= \lambda_1 u \label{eq10}\\
Tv &= \lambda_2 v \label{eq11}\\
T(u+v) &= \lambda_3(u+v). \label{eq12}
\end{align}
It follows that
\begin{equation*}
Tu + Tv = \lambda_1 u + \lambda_2 v,
\end{equation*}
and hence, by Equation \ref{eq12}, we have
\begin{equation*}
\lambda_3 u + \lambda_3 v = \lambda_1 u + \lambda_2 v.
\end{equation*}
Thus
\begin{equation*}
(\lambda_1 - \lambda_3)u + (\lambda_2 - \lambda_3)v = 0.
\end{equation*}
Since $u$ and $v$ are both eigenvectors of $T$, they are linearly independent. Thus $\lambda_1 = \lambda_3$ and $\lambda_2 = \lambda_3$, and hence $\lambda_1 = \lambda_2 = \lambda_3$, showing that $u$ and $v$ indeed correspond to the same eigenvalue.
\end{proof}
% Problem 26
\begin{problem}{26}
Suppose $T\in\Hom(V)$ is such that every nonzero vector in $V$ is an eigenvector of $T$. Prove that $T$ is a scalar multiple of the identity operator.
\end{problem}
\begin{proof}
By hypothesis, for all $v\in V$ there exists $\lambda_v\in\F$ such that $Tv = \lambda_v v$ (where $\lambda_0$ can be any nonzero element of $\F$, since $T0 = 0$). We claim $\lambda_v$ is independent of the choice of $v$ for $v\in V-\{0\}$, hence $Tv = \lambda v$ for all $v\in V$ (including $v = 0$) and some $\lambda \in \F$, and thus $T = \lambda I$.\\
\indent So suppose $w,z\in V-\{0\}$ are arbitrary. We want to show $\lambda_w = \lambda_z$. If $w$ and $z$ are linearly dependent, then there exists $\alpha\in\F$ such that $w=\alpha z$. It follows
\begin{align*}
\lambda_w w &= Tw\\
&= T(\alpha z)\\
&= \alpha Tz \\
&= \alpha \lambda_z z\\
&= \lambda_z (\alpha z)\\
&= \lambda_z w.
\end{align*}
Since $w\neq 0$, this implies $\lambda_w = \lambda_z$. Next suppose $w$ and $z$ are linearly independent. Then we have
\begin{align*}
\lambda_{w + z} (w + z)&= T(w + z)\\
&= Tw + Tz\\
&= \lambda_w w + \lambda_z z,
\end{align*}
and hence
\begin{align*}
(\lambda_{w + z} - \lambda_w)w + (\lambda_{w + z} - \lambda_z)z = 0.
\end{align*}
Since $w$ and $z$ are assumed to be linearly independent, we have $\lambda_{w + z} = \lambda_w$ and $\lambda_{w + z} = \lambda_z$, and hence again we have $\lambda_w = \lambda_z$, completing the proof.
\end{proof}
% Problem 27
\begin{problem}{27}
Suppose $V$ is finite-dimensional and $T\in\Hom(V)$ is such that every subspace of $V$ with dimension $\dim V - 1$ is invariant under $T$. Prove that $T$ is a scalar multiple of the identity operator.
\end{problem}
\begin{proof}
Suppose not. Then by the contrapositive of Problem 26, there exists some nonzero $v\in V$ which is not an eigenvector of $T$. Thus the list $v, Tv$ is linearly independent, and, assuming $\dim V = n$, we may extend it to some basis $v, Tv, u_1, \dots, u_{n-2}$ of $V$. Let $U = \Span(v, u_1,\dots, u_{n-2})$. Since $\dim U = \dim V - 1$, $U$ must be invariant under $T$. But this is a contradiction, since $Tv \not\in U$. Thus $T$ must be a scalar multiple of the identity operator, as desired.
\end{proof}
% Problem 29
\begin{problem}{29}
Suppose $T\in\Hom(V)$ and $\dim\Range T = k$. Prove that $T$ has at most $k + 1$ distinct eigenvalues.
\end{problem}
\begin{proof}
Suppose $\lambda_1,\dots, \lambda_m$ are distinct eigenvalues of $T$, and let $v_1,\dots, v_m$ be corresponding eigenvectors. For $k\in\{1,\dots,m\}$, if $\lambda_k\neq 0$, then
\begin{equation*}
T\left(\frac{1}{\lambda_k} v_k\right) = v_k.
\end{equation*}
Since at most one of the $\lambda_1,\dots, \lambda_m$ can be $0$, at least $m-1$ of our eigenvectors are in $\Range T$. Thus, since lists of distinct eigenvectors are linearly independent by Theorem 5.10, we have
\begin{equation*}
m-1\leq \dim\Range T = k,
\end{equation*}
which implies $m\leq k+1$, as desired.
\end{proof}
% Problem 31
\begin{problem}{31}
Suppose $V$ is finite-dimensional and $v_1,\dots,v_m$ is a list of vectors in $V$. Prove that $v_1,\dots,v_m$ is linearly independent if and only if there exists $T\in\Hom(V)$ such that $v_1,\dots,v_m$ are eigenvectors of $T$ corresponding to distinct eigenvalues.
\end{problem}
\begin{proof}
$(\Leftarrow)$ If $T\in \Hom(V)$ is such that $v_1,\dots,v_m$ are eigenvectors of $T$ corresponding to distinct eigenvalues, then $v_1,\dots,v_m$ is linearly independent by Theorem 5.10.\\
\indent $(\Rightarrow)$ Suppose $v_1,\dots,v_m$ is a linearly independent list of vectors in $V$. Define $T\in\Hom(V)$ by $Tv_k = kv_k$ for $k = 1,\dots, m$. The existence (and uniqueness) of $T$ is guaranteed by Theorem 3.5, and clearly $v_1,\dots, v_m$ are eigenvectors of $T$ corresponding to distinct eigenvalues.
\end{proof}
% Problem 33
\begin{problem}{33}
Suppose $T\in\Hom(V)$. Prove that $T/(\Range T) = 0$.
\end{problem}
\begin{proof}
Let $v + \Range T\in V/(\Range T)$. Then
\begin{align*}
(T/(\Range T))(v + \Range T) &= Tv + \Range T\\
&= 0 + \Range T.
\end{align*}
Thus $T/(\Range T)$ is indeed the zero map, as was to be shown.
\end{proof}
% Problem 35
\begin{problem}{35}
Suppose $V$ is finite-dimensional, $T\in\Hom(V)$, and $U$ is invariant under $T$. Prove that each eigenvalue of $T/U$ is an eigenvalue of $T$.
\end{problem}
\begin{proof}
Suppose $\lambda\in\F$ is an eigenvalue of $T/U$. Then there exists some nonzero $v + U\in V/U$ such that
\begin{equation*}
(T/U)(v + U) = \lambda(v + U),
\end{equation*}
which implies
\begin{align*}
Tv + U &= \lambda v + U,
\end{align*}
and hence $Tv - \lambda v \in U$. If $\lambda$ is an eigenvalue of $T\restr{U}$, we're done. So suppose not. Then, since $V$ is finite-dimensional, Theorem 5.6 tells us $T\restr{U}-\lambda I: U\to U$ is invertible. Hence there exists some $u\in U$ such that $(T\restr{U}-\lambda I)(u) = Tv - \lambda v$, and thus
\begin{equation*}
Tu - \lambda u = Tv - \lambda v.
\end{equation*}
Simplifying, we have $T(u - v) = \lambda(u - v)$. Since $v\not\in U$ by assumption, this implies $u - v\neq 0$ and hence $\lambda$ is an eigenvalue of $T$, completing the proof.
\end{proof}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% SECTION B
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section{Eigenvectors and Upper-Triangular Matrices}
% Problem 1
\begin{problem}{1}
Suppose $T\in\Hom(V)$ and there exists a positive integer $n$ such that $T^n=0$.
\begin{enumerate}[(a)]
\item Prove that $I-T$ is invertible and that
\begin{equation*}
(I - T)^{-1} = I + T + \dots + T^{n-1}.
\end{equation*}
\item Explain how you would guess the formula above.
\end{enumerate}
\end{problem}
\begin{proof}
\begin{enumerate}[(a)]
\item We will show that $S\defeq I + T + \dots + T^{n-1}$ is both a left and right inverse of $I - T$. Suppose $v\in V$. We have
\begin{align*}
(I - T)Sv &= (I- T)\left(v + Tv + \dots + T^{n-1}v\right)\\
&= \left(v + Tv + \dots + T^{n-1}v\right) - T\left(v + Tv + \dots + T^{n-1}v\right)\\
&= v + \left(Tv + \dots + T^{n-1}v - Tv -T^2v - \dots - T^{n-1}\right) + T^nv\\
&= v
\end{align*}
and
\begin{align*}
S(I - T)v &= \left(v + Tv + \dots + T^{n-1}v\right)(I - T)\\
&= \left(v + Tv + \dots + T^{n-1}v\right) - \left(Tv + T^2v + \dots + T^nv\right)\\
&= v + \left(Tv + \dots + T^{n-1}v - Tv -T^2v - \dots - T^{n-1}\right) + T^nv\\
&= v.
\end{align*}
Thus $I - T$ is indeed invertible, and $S$ is its inverse.
\item Recall the power series expansion for $(1 - x)^{-1}$ when $\abs{x} < 1$:
\begin{equation*}
(1 - x)^{-1}= \sum_{k = 0}^\infty x^k.
\end{equation*}
Substituting $T$ for $x$ and supposing $T^k = 0$ for $k\geq n$, we have the formula from (a). \qedhere
\end{enumerate}
\end{proof}
% Problem 3
\begin{problem}{3}
Suppose $T\in\Hom(V)$ and $T^2 = I$ and $-1$ is not an eigenvalue of $T$. Prove that $T = I$.
\end{problem}
\begin{proof}
Since $-1$ is not an eigenvalue of $T$, Theorem 5.6 implies $T + I$ is invertible. Hence for all $w\in V$, there exists $v\in V$ such that $(T+I)v = w$. Thus
\begin{equation}
Tv + v = w. \label{eq13}
\end{equation}
Since $T^2 = I$, applying $T$ to both sides yields
\begin{equation}
v + Tv = Tw. \label{eq14}
\end{equation}
Combining Equations \ref{eq13} and \ref{eq14}, we see $Tw = w$. Therefore it must be that $T= I$, as was to be shown.
\end{proof}
% Problem 4
\begin{problem}{4}
Suppose $P\in\Hom(V)$ and $P^2 = P$. Prove that $V= \Null P \oplus \Range P$.
\end{problem}
\begin{proof}
First notice $0 = P^2 - P = P(P - I)$, hence $(P - I)v \in \Null P$ for all $v\in V$. Next notice we can write $v = Pv - (P - I)v$. Since of course $Pv\in \Range P$, this yields
\begin{align*}
V = \Null P + \Range P.
\end{align*}
To see this sum is direct, suppose $w \in \Null P \cap \Range P$. Then $Pw = 0$ (since $w\in \Null P$) and there exists $u\in V$ such that $w = Pu$ (since $w \in \Range P$). Combining these two equations with the hypothesis that $P^2 = P$, we now have
\begin{align*}
w = Pu = P^2 u = P(Pu) = Pw = 0,
\end{align*}
and thus the sum is indeed direct, as desired.
\end{proof}
% Problem 5
\begin{problem}{5}
Suppose $S,T\in\Hom(V)$ and $S$ is invertible. Suppose $p\in\poly(\F)$ is a polynomial. Prove that
\begin{equation*}
p\left(STS^{-1}\right) = Sp(T)S^{-1}.
\end{equation*}
\end{problem}
\begin{proof}
For $k\in\Z^+$, notice
\begin{align*}
\left(STS^{-1}\right)^k = ST^kS^{-1}.
\end{align*}
Since $p\in\poly(\F)$, there exist $n\in\Z^+$ and $\alpha_0,\dots,\alpha_n\in\F$ such that
\begin{equation*}
p(z) = \alpha_0 + \alpha_1z + \dots + \alpha_n z^n.
\end{equation*}
It follows
\begin{equation*}
p(T) = \alpha_0 I + \alpha_1T + \dots + \alpha_nT^n,
\end{equation*}
and hence
\begin{equation*}
Sp(T) = \alpha_0 S + \alpha_1ST + \dots + \alpha_n ST^n,
\end{equation*}
and thus we have
\begin{equation*}
Sp(T)S^{-1} = \alpha_0 I + \alpha_1 STS^{-1} + \dots + \alpha_n ST^nS^{-1} = p\left(STS^{-1}\right),
\end{equation*}
as was to be shown.
\end{proof}
% Problem 7
\begin{problem}{7}
Suppose $T\in\Hom(V)$. Prove that $9$ is an eigenvalue of $T^2$ if and only if $3$ or $-3$ is an eigenvalue of $T$.
\end{problem}
\begin{proof}
$(\Leftarrow)$ Suppose $3$ or $-3$ is an eigenvalue of $T$. Then there exists a nonzero $v\in V$ such that either
\begin{equation*}
Tv = 3v ~~~\text{or}~~~ Tv = -3v.
\end{equation*}
In the former case, we have $T^2v = 3Tv = 9v$, and in the latter we have $T^2 = -3Tv = 9v$. In both cases, $9$ is an eigenvalue of $T^2$.\\
\indent $(\Rightarrow)$ If $9$ is an eigenvalue of $T^2$, then there exists a nonzero $w\in V$ such that $T^2w = 9w$. Hence $T^2 - 9I$ is not invertible, whereby $(T - 3I)(T + 3I)$ is not invertible. Thus, by Problem 9 of Section 3.D, either $T-3I$ or $T+3I$ is not invertible. This implies either $3$ or $-3$ is an eigenvalue of $T$, as desired.
\end{proof}
% Problem 9
\begin{problem}{9}
Suppose $V$ is finite-dimensional, $T\in\Hom(V)$, and $v\in V$ with $v\neq 0$. Let $p$ be a nonzero polynomial of smallest degree such that $p(T)v = 0$. Prove that every zero of $p$ is an eigenvalue of $T$.
\end{problem}
\begin{proof}
Suppose $\lambda\in\F$ is a zero of $p$. Then there exists $q\in\poly(\F)$ with $\deg q = \deg p - 1$ such that
\begin{equation*}
p(X) = (X - \lambda)q(X).
\end{equation*}
Then, since $p(T)v = 0$ by hypothesis, we have
\begin{equation*}
(T - \lambda I)q(T)v = 0.
\end{equation*}
Since $\deg q < \deg p$, $q(T)v\neq 0$, and hence $\lambda$ is indeed an eigenvalue of $T$.
\end{proof}
% Problem 11
\begin{problem}{11}
Suppose $\F=\C$, $T\in\Hom(V)$, $p\in\poly(\C)$ is a nonconstant polynomial, and $\alpha\in\C$. Prove that $\alpha$ is an eigenvalue of $p(T)$ if and only if $\alpha=p(\lambda)$ for some eigenvalue $\lambda$ of $T$.
\end{problem}
\begin{proof}
$(\Rightarrow)$ Suppose $\alpha$ is an eigenvalue of $p(T)$. Then $p(T) - \alpha I$ is not injective. By the Fundamental Theorem of Algebra, there exist $c, \lambda_1,\dots, \lambda_m\in\C$ such that
\begin{equation*}
p(z) - \alpha = c(z - \lambda_1)\dots (z - \lambda_m).
\end{equation*}
If $c = 0$, then $p(z) = \alpha$ and $p$ is constant, a contradiction. So we must have $c\neq 0$. By the above equation, we have
\begin{equation*}
p(T) - \alpha I = c(T - \lambda_1 I)\dots (T - \lambda_m I).
\end{equation*}
Since $p(T) - \alpha I$ is not injective, there exists $j\in\{1,\dots,m\}$ such that $T-\lambda_j I$ is not injective. In other words, $\lambda_j$ is an eigenvalue of $T$. Moreover, notice $p(\lambda_j) - \alpha = 0$, and hence $\alpha = p(\lambda_j)$, as desired.\\
\indent $(\Leftarrow)$ Suppose $\alpha = p(\lambda)$ for some eigenvalue $\lambda$ of $T$. Let $v\in V-\{0\}$ be a corresponding eigenvector, and let $\alpha_0,\dots,\alpha_n\in\C$ be such that
\begin{equation*}
p(z) = \alpha_0 + \alpha_1z + \dots + \alpha_nz^n.
\end{equation*}
Notice $T^kv = \lambda^kv$ for any $k\in\Z^+$. It follows
\begin{align*}
\alpha_0 + \alpha_1\lambda + \dots + \alpha_n \lambda^n = \alpha,
\end{align*}
and hence
\begin{align*}
p(T)v &= \alpha_0v + \alpha_1 Tv + \dots + \alpha_n T^n v\\
&= \alpha_0v + \alpha_1\lambda v + \dots + \alpha_n \lambda^n v\\
&= \left(\alpha_0 + \alpha_1\lambda + \dots + \alpha_n \lambda^n \right)v\\
&= \alpha v.
\end{align*}
Thus $\alpha$ is an eigenvalue of $p(T)$, completing the proof.
\end{proof}
% Problem 13
\begin{problem}{13}
Suppose $W$ is a complex vector space and $T\in\Hom(W)$ has no eigenvalues. Prove that every subspace of $W$ invariant under $T$ is either $\{0\}$ or infinite-dimensional.
\end{problem}
\begin{proof}
Suppose $U\subseteq W$ is invariant under $T$. If $U=\{0\}$ the result holds, so suppose otherwise. Now, if $U$ were finite-dimensional, then $T\restr{U}$ would have an eigenvalue by Theorem 5.21. Thus $T$ would have an eigenvalue as well, a contradiction. So $U$ must be infinite-dimensional.
\end{proof}
% Problem 14
\begin{problem}{14}
Give an example of an operator whose matrix with respect to some basis contains only $0$'s on the diagonal, but the operator is invertible.
\end{problem}
\begin{proof}
Consider the operator
\begin{align*}
T: \R^2 &\to \R^2 \\
(x,y) &\mapsto (y,x).
\end{align*}
With respect to the standard basis, we have
\begin{align*}
\mat(T) = \begin{bmatrix} 0 & 1\\ 1 & 0\end{bmatrix}.
\end{align*}
Clearly $T$ is invertible (it's its own inverse), but its matrix with respect to the standard basis has only $0$'s on the diagonal.
\end{proof}
% Problem 15
\begin{problem}{15}
Give an example of an operator whose matrix with respect to some basis contains only nonzero numbers on the diagonal, but the operator is not invertible.
\end{problem}
\begin{proof}
Consider the operator
\begin{align*}
T: \R^2 &\to \R^2\\
(x,y) &\mapsto (x + y, x + y).
\end{align*}
With respect to the standard basis, we have
\begin{align*}
\mat(T) = \begin{bmatrix} 1 & 1\\ 1 & 1\end{bmatrix}.
\end{align*}
Notice that $T$ is not invertible, since $T(0, 0) = (0, 0) = T(-1, 1)$, and yet its matrix with respect to the standard basis has only nonzero numbers on the diagonal. Combining this result with Problem 14, we see that Theorem 5.30 fails without the hypothesis that an upper-triangular matrix is under consideration.
\end{proof}
% Problem 17
\begin{problem}{17}
Rewrite the proof of 5.21 using the linear map that sends $p\in\poly_{n^2}(\C)$ to $p(T)\in\Hom(V)$ (and use 3.23).
\end{problem}
\begin{proof}
We will show that every operator on a finite-dimensional, nonzero, complex vector space has an eigenvalue. Suppose $V$ is a complex vector space with dimension $n > 0$ and $T\in\Hom(V)$. Consider the linear map
\begin{align*}
M: \poly_{n^2}(\C) &\to \Hom(V)\\
p &\mapsto p(T).
\end{align*}
Since $\dim\left(\poly_{n^2}(\C)\right)=n^2 +1$ but $\dim\left(\Hom(V)\right) = n^2$, $M$ is not injective by Theorem 3.23. Thus there exists a nonzero $p\in\poly_{n^2}(\C)$ such that $Mp = p(T) = 0$. By the Fundamental Theorem of Algebra, $p$ has a factorization
\begin{equation*}
p(z) = c(z - \lambda_1)\dots (z - \lambda_m),
\end{equation*}
where $c$ is a nonzero complex number, each $\lambda_j$ is in $\C$, and the equation holds for all $z\in\C$. Now choose any $v\in V-\{0\}$. It follows
\begin{align*}
0 &= p(T)v\\
&= c(T - \lambda_1 I)\dots (T - \lambda_m I)v.
\end{align*}
Since $v\neq 0$, $T-\lambda_j$ is not injective for at least one $j$. In other words, $T$ has an eigenvalue.
\end{proof}
% Problem 19
\begin{problem}{19}
Suppose $V$ is finite-dimensional with $\dim V> 1$ and $T\in\Hom(V)$. Prove that
\begin{equation*}
\{p(T) \mid p\in\poly(\F)\}\neq \Hom(V).
\end{equation*}
\end{problem}
\begin{proof}
Let $\mathcal{U} = \{p(T) \mid p\in\poly(\F)\}$, and suppose by way of contradiction that $\mathcal{U} = \Hom(V)$. Let $p \in \poly(\F)$, and let $\alpha_0,\dots,\alpha_n\in\F$ be such that $p(z) = \alpha_0 + \alpha_1z \dots + \alpha_nz^n$ for all $z\in\F$. Notice
\begin{align*}
Tp(T) &= T\left(\alpha_0 I + \alpha_1 T + \dots + \alpha_n T^n\right)\\
&= \alpha_0T + \alpha_1T^2 + \dots + \alpha_nT^{n+1}\\
&= \left(\alpha_0 I + \alpha_1 T + \dots + \alpha_n T^n\right)T\\
&= p(T) T,
\end{align*}
so that $T$ commutes with all elements of $U$. By Problem 16 of Chapter 3.D, this implies $T= \lambda I$ for some $\lambda\in \F$. It follows
\begin{align*}
\mathcal{U} &= \{p(T) \mid p\in\poly(\F)\}\\
&= \{p(\lambda I)\mid p\in\poly(\F)\}\\
&=\left\{\alpha_0I + \alpha_1(\lambda I) + \dots +\alpha_1(\lambda I)^n\mid \alpha_0,\alpha_1,\dots,\alpha_n\in\F\text{ and }n\in\Z^+\right\}\\
&=\{p(\lambda)I\mid p\in\poly(\F)\}\\
&=\{\alpha I \mid \alpha\in\F\},
\end{align*}
and thus $\dim\mathcal{U} = 1$. Since $\dim\Hom(V) = (\dim V)^2$ and $\dim V > 1$ by hypothesis, we have $\dim\Hom(V) > 1$, a contradiction. Thus our assumption that $\mathcal{U} = \Hom(V)$ must be false, as was to be shown.
\end{proof}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% SECTION C
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section{Eigenspaces and Diagonal Matrices}
% Problem 1
\begin{problem}{1}
Suppose $T\in\Hom(V)$ is diagonalizable. Prove that $V = \Null T\oplus\Range T$.
\end{problem}
\begin{proof}
By Theorem 5.41, there exists a basis $v_1,\dots, v_n$ of $V$ consisting of eigenvectors of $T$. Let $\lambda_1,\dots, \lambda_n\in\F$ be corresponding eigenvalues, respectively. Let $m$ denote the number of eigenvalues $\lambda_j$ such that $\lambda_j = 0$. After relabeling, we may assume $\lambda_j = 0$ for $j=1,\dots, m$ and $\lambda_j \neq 0$ for $j = m+1,\dots,n$. It follows
\begin{align*}
V = \Span(v_1,\dots, v_m)\oplus \Span(v_{m+1},\dots,v_n).
\end{align*}
Note that if $m = 0$, the left hand term in the direct sum becomes the span of the empty list, which is defined to be $\{0\}$. We claim $\Null T = \Span(v_1,\dots, v_m)$ and $\Range T = \Span(v_{m+1},\dots,v_n)$, which provides the desired result.\\
\indent First we prove $\Null T = \Span(v_1,\dots, v_m)$. This result is trivially true if $m=0$, so suppose otherwise. Since each of $v_1,\dots,v_m$ is an eigenvector corresponding to $0$, we have $v_1,\dots,v_m\in E(0,T)$, and hence $\Span(v_1,\dots,v_m)\subseteq E(0, T)=\Null T$. For the reverse inclusion, suppose $v\in \Null T$. Let $\alpha_1,\dots,\alpha_n\in\F$ be such that $v = \alpha_1v_1 + \dots + \alpha_nv_n$. It follows
\begin{align*}
0 &= Tv\\
&= \alpha_1Tv_1 + \dots + \alpha_nTv_n\\
&= \alpha_{m+1}Tv_{m+1} + \dots + \alpha_nTv_n\\
&= (\alpha_{m+1}\lambda_{m+1})v_{m+1} + \dots + (\alpha_n\lambda_n) v_n.
\end{align*}
Since $\lambda_{m+1},\dots, \lambda_{n}$ are all nonzero, the linear independence of $v_{m+1},\dots, v_{n}$ implies $\alpha_{m+1} = \dots = \alpha_n = 0$. Thus $v = \alpha_1v_1 + \dots + \alpha_mv_m$, and indeed $v\in\Span\{v_1,\dots,v_m\}$. We conclude $\Null T = \Span(v_1,\dots, v_m)$.\\
\indent Now we prove $\Range T = \Span(v_{m+1},\dots, v_n)$. Clearly we have $v_{m+1},\dots,v_n\in\Range T$, since $T(v_k/\lambda_k) = v_k$ for $k = m+1,\dots, n$, and hence $\Span(v_{m+1},\dots, v_n)\subseteq \Range T$. For the reverse inclusion, suppose $w\in \Range T$. Then there exists $z\in V$ such that $Tz = w$. Let $\beta_1,\dots,\beta_n\in\F$ be such that $z = \beta_1v_1 + \dots + \beta_nv_n$. It follows
\begin{align*}
w &= Tz\\
&= \beta_1Tv_1 + \dots + \beta_nTv_n\\
&= (\beta_{m+1}\lambda_{m+1})v_{m+1} + \dots + (\beta_n\lambda_n)v_n.
\end{align*}
Thus $w\in \Span(v_{m+1},\dots,v_n)$, and we conclude $\Range T = \Span(v_{m+1},\dots,v_n)$, completing the proof of our claim.
\end{proof}
% Problem 3
\begin{problem}{3}
Suppose $V$ is finite-dimensional and $T\in\Hom(V)$. Prove that the following are equivalent:
\begin{enumerate}[(a)]
\item $V = \Null T\oplus \Range T$.
\item $V = \Null T + \Range T$.
\item $\Null T\cap \Range T = \{0\}$.
\end{enumerate}
\end{problem}
\begin{proof}
Let $N = \Null T$ and $R = \Range T$.\\
\indent $(a \Rightarrow b)$ If $V = N\oplus R$, then $V = N + R$ by the definition of direct sum.\\
\indent $(b \Rightarrow c)$ Suppose $V = N + R$. By Theorem 2.43, we know
\begin{equation}
\dim(N + R) = \dim N + \dim R - \dim ( N \cap R), \label{eq15}
\end{equation}
and by hypothesis, the LHS of Equation \ref{eq15} equals $\dim V$. Hence we have
\begin{equation}
\dim V = \dim N + \dim R - \dim (N\cap R). \label{eq16}
\end{equation}
Now, by the Fundamental Theorem of Linear Maps, we have
\begin{equation}
\dim V = \dim N + \dim R. \label{eq17}
\end{equation}
Combining Equations \ref{eq16} and \ref{eq17} yields $\dim(N\cap R) = 0$, and hence $N\cap R =\{0\}$.\\
\indent $(c\Rightarrow a)$ Suppose $N\cap R =\{0\}$. Again by Theorem 2.43, we have
\begin{align*}
\dim( N + R) = \dim N + \dim R- \dim (N\cap R).
\end{align*}
By hypothesis, $\dim (N\cap R) = 0$. Thus
\begin{equation}
\dim(N + R) = \dim N + \dim R. \label{eq18}
\end{equation}
By another application of the Fundamental Theorem of Linear Maps, the RHS of Equation \ref{eq18} equals $\dim V$. Hence we have $\dim V = \dim(N + R)$, and therefore $V = N + R$. Since $N\cap R = \{0\}$ by hypothesis, this sum is direct.
\end{proof}
% Problem 5
\begin{problem}{5}
Suppose $V$ is a finite-dimensional complex vector space and $T\in\Hom(V)$. Prove that $T$ is diagonalizable if and only if
\begin{equation*}
V = \Null(T - \lambda I)\oplus \Range(T - \lambda I)
\end{equation*}
for every $\lambda\in\C$.
\end{problem}
\begin{proof}
$(\Rightarrow)$ Suppose $T$ is diagonalizable. Then there exists a basis such that $\mat(T)$ is diagonal. Letting $\lambda\in\C$, it follows
\begin{align*}
\mat(T - \lambda I) &= \mat(T) -\lambda\mat(I)\\
&= \mat(T) - \lambda I,
\end{align*}
where we abuse notation and use $I$ to denote both the identity operator on $V$ and the identity matrix in $\F^{\dim V,\dim V}$. Since $\lambda I$ is diagonal, so too is $\mat(T) - \lambda I$, and hence $T - \lambda I$ is diagonalizable. The desired result now follows by Problem 1.\\
\indent $(\Leftarrow)$ Conversely, suppose
\begin{equation*}
V = \Null(T - \lambda I)\oplus \Range(T - \lambda I)
\end{equation*}
for every $\lambda\in\C$. We induct on $n = \dim V$. If $n = 1$, the result clearly holds, since every matrix in $\F^{1,1}$ is diagonal. Now assume $n\in\Z^+$ and that the assertion holds for all vector spaces of dimension $k < n$. Let $\lambda_1\in \C$ be an eigenvalue of $T$ (such an eigenvalue must exist by Theorem 5.21). By hypothesis, we have
\begin{equation}
V = E(\lambda_1, T)\oplus \Range(T-\lambda_1 I). \label{eq19}
\end{equation}
Let $R = \Range(T-\lambda_1 I)$. We claim
\begin{align*}
R = \Null(T\restr{R} - \lambda I) \oplus \Range(T\restr{R}-\lambda I)
\end{align*}
for all $\lambda\in \C$. By Problem 3c, it suffices to show $\Null(T\restr{R} - \lambda I) \cap \Range(T\restr{R} - \lambda I) =\{0\}$. Notice
\begin{align*}
\Null(T\restr{R} - \lambda I)\subseteq \Null(T - \lambda I)~~~~\text{and}~~~~\Range(T\restr{R} - \lambda I)\subseteq\Range(T - \lambda I).
\end{align*}
It follows
\begin{equation*}
\Null(T\restr{R} - \lambda I) \cap \Range(T\restr{R} - \lambda I) \subseteq \Null(T - \lambda I) \cap \Range(T - \lambda I) =\{0\},
\end{equation*}
proving our claim. Now, let $v_1,\dots, v_k$ be a basis of $E(\lambda_1, T)$. Since $T\restr{R}$ is diagonalizable, $R$ has a basis of eigenvectors by Theorem 5.41. Call them $v_{k+1},\dots, v_n$. By Equation \ref{eq19}, the list $v_1,\dots, v_n$ is a basis of $V$ consisting of eigenvectors of $T$. By another application of Theorem 5.41, this implies $T$ is diagonalizable, as desired.
\end{proof}
% Problem 7
\begin{problem}{7}
Suppose $T\in\Hom(V)$ has a diagonal matrix $A$ with respect to some basis of $V$ and that $\lambda\in\F$. Prove that $\lambda$ appears on the diagonal of $A$ precisely $\dim E(\lambda,T)$ times.
\end{problem}
\begin{proof}
Let $\lambda_1,\dots, \lambda_m\in\F$ be the distinct eigenvalues of $T$, let $v_1,\dots, v_n$ be a basis consisting of eigenvectors of $T$ (such a basis is guaranteed by Theorem 5.41), and let $A = \mat(T)$ with respect to this basis. Denote by $s_k$ the number of our basis vectors contained in $E(\lambda_k, T)$ for $k\in\{1,\dots,m\}$, so that the eigenvalue $\lambda_k$ appears on the diagonal of $A$ exactly $s_k$ times. We will show $s_k = \dim E(\lambda_k, T)$.\\
\indent Since any subset of the basis contained in $E(\lambda_k, T)$ is of course linearly independent, we first note $s_k\leq \dim E(\lambda_k, T)$. So we have
\begin{align*}
s_1 + \dots + s_m &\leq \dim E(\lambda_1, T) + \dots + \dim(\lambda_m, T)\\
&= n.
\end{align*}
Since $E(\lambda_i, T)\cap E(\lambda_j, T) = \{0\}$ for $i\neq j$, each element of our basis is contained in at most one $E(\lambda_k, T)$. Hence the LHS of the equation above equals $n$ as well, and the inequality is in fact an equality. This implies
\begin{equation*}
s_1 -\dim(E_1, T) = (\dim E(\lambda_2, T) - s_2) + \dots + (\dim E(\lambda_m, T) - s_m).
\end{equation*}
Each term in parentheses on the RHS is nonnegative, and hence $s_1 - \dim(E_1, T) \geq 0$, which implies $s_1 \geq \dim(E_1, T)$. Since we've already shown $s_1\leq \dim(E_1, T)$, we conclude $s_1 = \dim(E_1, T)$. An analogous argument shows $s_\ell = E(\lambda_\ell, T)$ for all $\ell\in\{2,\dots,m\}$.\\
\indent Therefore, if $\lambda\in\C$ is an eigenvalue of $T$, then $\lambda$ indeed appears on the diagonal of $A$ precisely $\dim E(\lambda, T)$ times. And if $\lambda$ is not an eigenvalue of $T$, then it appears on the diagonal zero times, which also equals $\dim E(\lambda, T)$. In both cases, the desired result holds, completing the proof.
\end{proof}
% Problem 9
\begin{problem}{9}
Suppose $T\in\Hom(V)$ is invertible. Prove that $E(\lambda, T) = E\left(\frac{1}{\lambda}, T^{-1}\right)$ for every $\lambda\in\F$ with $\lambda\neq 0$.
\end{problem}
\begin{proof}
Let $\lambda\in\F-\{0\}$, and suppose $v\in E(\lambda, T)$. Then
\begin{align*}
Tv = \lambda v &\implies v = T^{-1}(\lambda v)\\
&\implies \frac{1}{\lambda}v = T^{-1}v\\
&\implies v \in E\left(\frac{1}{\lambda}, T^{-1}\right),
\end{align*}
and thus $E(\lambda, T)\subseteq E\left(\frac{1}{\lambda}, T^{-1}\right)$. Conversely, suppose $w\in E\left(\frac{1}{\lambda}, T^{-1}\right)$. It follows
\begin{align*}
T^{-1}w = \frac{1}{\lambda}w &\implies w = T\left(\frac{1}{\lambda} w\right)\\
&\implies \lambda w = Tw\\
&\implies w\in E(\lambda, T),
\end{align*}
and so $E\left(\frac{1}{\lambda}, T^{-1}\right)\subseteq E(\lambda, T)$. Therefore, we conclude $E(\lambda, T) = E\left(\frac{1}{\lambda}, T^{-1}\right)$, as was to be shown.
\end{proof}
% Problem 11
\begin{problem}{11}
Verify the assertion in Example 5.40.
\end{problem}
\begin{proof}
Define $T\in\Hom(\R^2)$ by
\begin{equation*}
T(x, y) = (41x + 7y, -20x + 74y).
\end{equation*}
Example 5.40 asserts that $T$ is diagonalizable, because the matrix of $T$ with respect to the basis $(1, 4), (7, 5)$ is
\begin{equation*}
\begin{bmatrix}69 & 0\\ 0 & 46\end{bmatrix}.
\end{equation*}
To see this, first notice
\begin{align*}
T(1, 4) &= (69, 276) \\
&= 69\cdot (1, 4) + 0\cdot (7, 5),
\end{align*}
and so the first column of the matrix is correct. Next notice
\begin{align*}
T(7, 5) &= (322, 230)\\
&= 0\cdot (1, 4) + 46 \cdot (7, 5),
\end{align*}
and so the second column of the matrix is correct as well.
\end{proof}
% Problem 12
\begin{problem}{12}
Suppose $R,T\in\Hom(\F^3)$ each have $2, 6, 7$ as eigenvalues. Prove that there exists an invertible operator $S\in\Hom(\F^3)$ such that $R = S^{-1}TS$.
\end{problem}
\begin{proof}
Since $R$ and $T$ each have $3$ eigenvalues and $\dim \F^3 = 3$, they are both diagonalizable by Theorem 5.44. Letting $\lambda_1 = 2, \lambda_2 = 6$, and $\lambda_3 = 7$, there exist (again by Theorem 5.44) bases $v_1, v_2, v_3$ and $w_1, w_2, w_3$ of $\F^3$ such that
\begin{equation*}
Rv_k = \lambda_k v_k ~~~~\text{and}~~~~ Tw_k = \lambda_k w_k
\end{equation*}
for $k = 1,2, 3$. Define the operator $S\in\Hom(\F^3)$ by its behavior on the $v_k$'s
\begin{align*}
Sv_k &= w_k.
\end{align*}
Since $S$ takes one basis to another basis, it's invertible. Now notice
\begin{align*}
S^{-1}TSv_k &= S^{-1}Tw_k\\
&= S^{-1}(\lambda_kw_k)\\
&= \lambda_kS^{-1}w_k\\
&= \lambda_kv_k\\
&= Rv_k,
\end{align*}
and thus $R = S^{-1}TS$, as desired.
\end{proof}
% Problem 13
\begin{problem}{13}
Find $R,T\in\Hom(\F^4)$ such that $R$ and $T$ each have $2, 6, 7$ as eigenvalues, $R$ and $T$ have no other eigenvalues, and there does not exist an invertible operator $S\in\Hom(\F^4)$ such that $R=S^{-1}TS$.
\end{problem}
\begin{proof}
For $x = (x_1, x_2, x_3, x_4) \in \F^4$, define $R, T\in\Hom(\F^4)$ by
\begin{align*}
Rx = \begin{bmatrix}2 & 0 & 0 & 0\\ 0 & 2 & 0 & 0\\ 0 & 0 & 6 & 0\\0 & 0 & 0 & 7 \end{bmatrix}\begin{bmatrix}x_1\\x_2\\x_3\\x_4\end{bmatrix}
\quad\text{and}\quad
Tx = \begin{bmatrix}2 & 1 & 1 & 1\\ 0 & 2 & 1 & 1\\ 0 & 0 & 6 & 1\\0 & 0 & 0 & 7 \end{bmatrix}\begin{bmatrix}x_1\\x_2\\x_3\\x_4\end{bmatrix}.
\end{align*}
By Theorem 5.32, $R$ and $T$ each have precisely $2, 6, 7$ as eigenvalues and no others. We claim $T$ is diagonalizable, and we will use this fact to derive a contradiction from which the result will follow. To see this, first notice
\begin{align*}
T - 2 I &= \begin{bmatrix}0 & 1 & 1 & 1\\ 0 & 0 & 1 & 1\\ 0 & 0 & 4 & 1\\0 & 0 & 0 & 5 \end{bmatrix}.
\end{align*}
Since $T- 2I$ is in echelon form and has three pivots, $\dim\Range(T-2I) = 3$, and thus $\dim E(2,T) = \dim\Null(T - 2I) = 1$. Similarly, we have
\begin{align*}
T - 6I &= \begin{bmatrix}-4 & 1 & 1 & 1\\ 0 & -4 & 1 & 1\\ 0 & 0 & 0 & 1\\0 & 0 & 0 & 1 \end{bmatrix},
\end{align*}
so that $T-6I$ has three pivots as well and hence $\dim E(6, T) = 1$. Lastly, notice
\begin{align*}
T - 7I &= \begin{bmatrix}-5 & 1 & 1 & 1\\ 0 & -5 & 1 & 1\\ 0 & 0 & -1 & 1\\0 & 0 & 0 & 0 \end{bmatrix},
\end{align*}
and $T-6I$ also has three pivots and so $\dim E(7, T) = 1$. Since $\dim E(2, T) + \dim E(6, T) + \dim E(7, T) < \dim \F^4$, $T$ is not diagonalizable by Theorem 5.41.\\
\indent Now, by way of contradiction, suppose there exists an invertible $S\in\Hom(\F^4)$ such that $R=S^{-1}TS$. Then the list $Se_1, \dots, Se_4$ is a basis of $\F^4$. Notice
\begin{align*}
T(Se_1) &= S(Re_1)\\
&= S(2e_1)\\
&= 2Se_1,
\end{align*}
and similarly we have
\begin{align*}
T(Se_2) = 2Se_2, ~~~ T(Se_3) = 6Se_3, ~~~ \text{and} ~~~ T(Se_4) = 7Se_4.
\end{align*}
Thus $\mat\left(T, (Se_1, \dots, Se_4)\right)$ is diagonal, a contradiction. Therefore, no such $S$ exists, and $R$ and $T$ are operators of the desired form.
\end{proof}
% Problem 15
\begin{problem}{15}
Suppose $T\in\Hom(\C^3)$ is such that $6$ and $7$ are eigenvalues of $T$. Furthermore, suppose $T$ does not have a diagonal matrix with respect to any basis of $\C^3$. Prove that there exists $(x, y, z)\in\C^3$ such that $T(x, y, z) = (17 + 8x, \sqrt{5} + 8y, 2\pi + 8z)$.
\end{problem}
\begin{proof}
By hypothesis, $T$ is not diagonalizable. Hence by Theorem 5.44, $6$ and $7$ are the only eigenvalues of $T$. In particular, $8$ is not an eigenvalue. Thus
\begin{equation*}
\dim E(8, T) = \dim \Null(T - 8I) = 0,
\end{equation*}
and hence $T - 8I$ is surjective. So there exists $(x, y, z) \in \C^3$ such that $(T - 8I)(x, y, z) = (17, \sqrt{5}, 2\pi)$. It follows
\begin{align*}
T(x, y, z) &= (17, \sqrt{5}, 2\pi) + 8(x, y, z)\\
&= (17 + 8x, \sqrt{5} + 8y, 2\pi + 8z),
\end{align*}
as was to be shown.
\end{proof}
\end{document}