-
Notifications
You must be signed in to change notification settings - Fork 0
/
la-zusammenfassung.tm
4384 lines (3370 loc) · 171 KB
/
la-zusammenfassung.tm
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
<TeXmacs|1.0.7.10>
<style|generic>
<\body>
<section|Grundbegriffe der Algebra>
<subsection|Gruppen>
<\definition>
Eine <strong|Gruppe> <math|<around*|(|G\<nocomma\>\<nocomma\>,\<circ\>|)>>
ist eine Menge mit einer Abbildung <math|\<circ\>:
G\<times\>G\<longrightarrow\>G>, sodass gilt:
<\description>
<item*|Assoziativgesetz><math|<around*|(|a\<circ\>b|)>\<circ\>c =
a\<circ\><around*|(|b\<circ\>c|)>>
<item*|Neutrales Element><math|\<exists\>> Element <math|e\<in\>G>,
sodass <math|e\<circ\>a=a> für alle <math|a\<in\>G>
<item*|Inverses Element>Für alle Elemente <math|a\<in\>G> existiert das
Inverse <math|a<rprime|'>>: <math|a\<circ\>a<rprime|'>=e>
</description>
Bei endlichen Mengen <math|A> wird die Verknüpfung <math|\<circ\>> auf
<math|A> oft durch eine Verknüfungstafel angegeben.
</definition>
<\definition>
Die <strong|symmetrische Gruppe> / <strong|Permutationsgruppe>
<math|S<rsub|n>> ist die Menge aller Permutationen der Menge
<math|<around*|{|1,2,\<ldots\>,n|}>>
Es gilt <math|<around*|\||S<rsub|n>|\|>=n!>
</definition>
<\definition>
Eine Gruppe heisst <strong|kommutativ> oder <strong|abelsch>, falls
<math|a\<circ\>b=b\<circ\>a> für alle <math|a,b\<in\>G>.
</definition>
<\theorem>
Eine nichtleere Menge <math|G> mit einer Verknüpfung <math|\<circ\>> ist
genau dann eine Gruppe, wenn <math|\<circ\>> assoziativ ist und zu je
zwei Elementen <math|a,b\<in\>G> ein <math|x\<in\>G> mit <math|x*a=b> und
ein <math|y\<in\>G> mit <math|a*y=b> existiert. <math|x> und <math|y>
sind dann eindeutig bestimmt.
</theorem>
<\corollary>
Eine endliche Menge <math|G> mit einer Verknüfung ist genau dann eine
Gruppe, wenn <math|\<circ\>> assozivativ ist und in der Verknüfungstafel
jedes Element von <math|G> in jeder Zeile und jeder Spalte genau einmal
auftritt.
</corollary>
<\definition>
Eine nichtleere Teilmenge <math|G<rprime|'>> von <math|G> heisst
<strong|Untergruppe> von <math|G>, falls gilt:
<\enumerate-numeric>
<item><math|a,b\<in\>G<rprime|'> \<Rightarrow\>
a\<cdot\>b\<in\>G<rprime|'>>
<item><math|a\<in\>G<rprime|'> \<Rightarrow\> a<rsup|-1> \<in\>
G<rprime|'>>
</enumerate-numeric>
<math|G<rprime|'>> ist dann selbst eine Gruppe. Notation:
<math|G*<rprime|'>\<less\> G>.
Es gilt: <math|G<rprime|'>\<less\>G \<Leftrightarrow\>> mit <math|x> und
<math|y> gehört stets auch <math|x*y<rsup|-1>> zu <math|G<rprime|'>>
</definition>
<\definition>
Eine lineare Abbildung <math|f:A\<longrightarrow\>A<rprime|'>> zwischen
zwei Gruppen <math|<around*|(|A,\<cdot\>|)>> und
<math|<around*|(|A<rprime|'>,\<ast\>|)>> heisst
<strong|(Gruppen)-Homomorphismus>, falls
<math|f<around*|(|x\<cdot\>y|)>=f<around*|(|x|)>\<ast\>f<around*|(|y|)>>
für alle <math|x,y\<in\>A>
Ist <math|f> bijektiv, so heisst <math|f> <strong|Isomorphismus,> und
<math|A> und <math|A<rprime|'>> heissen <strong|isomorph:>
<math|A\<cong\>A<rprime|'>>.
Ein Isomorphismus von eine Gruppe in sich selbst heisst
<strong|Automorphismus.>
</definition>
<\remark>
Jede Gruppe ist isomorph zu einer Untergruppe von <math|S<around*|(|X|)>>
(der symmetrischen Gruppe der Menge <math|X>) für eine geeignete Menge
<math|X>.
</remark>
<\remark>
Ist <math|f:A\<longrightarrow\>A<rprime|'>> ein Gruppenhomomorphismus, so
gilt:
<\enumerate-numeric>
<item><math|f<around*|(|e|)> = e<rprime|'>>
<math|<around*|(|f<around*|(|x|)>|)><rsup|-1>=f<around*|(|x<rsup|-1>|)>>
<item><math|Bild f \<less\> A<rprime|'>>
<math|Kern f \<less\> A>
<item><math|f> ist surjektiv <math|\<Leftrightarrow\>>
<math|f<around*|(|A|)>=A<rprime|'>>
<math|f> ist injektiv <math|\<Leftrightarrow\>> <math|Kern f=e>
</enumerate-numeric>
</remark>
<\remark>
Für alle <math|y\<in\>Kern f> und alle <math|x\<in\>A> gilt:
<\equation*>
x*y*x<rsup|-1>\<in\>Kern f
</equation*>
d.h. <math|Kern f> ist invariant unter allen Abbildungen
<math|y\<longrightarrow\>x*y*x<rsup|-1>>.
</remark>
<\definition>
Eine Untergruppe <math|B> von <math|A> heisst <strong|Normalteiler> von
<math|A> (<math|B\<vartriangleleft\>A>), falls für alle <math|x\<in\>A>
und alle <math|y\<in\>B> gilt: <math|x*y*x<rsup|-1>\<in\>B>
<em|Beispiele:> <math|A\<vartriangleleft\>A>,
<math|<around*|{|e|}>\<vartriangleleft\>A>, <math|Kern
f\<vartriangleleft\>A>
Jede Untergruppe einer <em|abelschen Gruppe> ist automatisch ein
Normalteiler!
</definition>
<\theorem>
Sei <math|<around*|(|A,\<cdot\>|)>> Gruppe und <math|B\<less\>A>
Untergruppe. Dann sind folgende Aussagen äquivalent:
<\enumerate-numeric>
<item><math|B> ist Normalteiler von <math|A>
(<math|B\<vartriangleleft\>A>)
<item>Für alle <math|x\<in\>A> gilt:
<math|x\<cdot\>B\<cdot\>x<rsup|-1>=B>
<item>Für alle <math|x\<in\>A> gilt: <math|x\<cdot\>B=B\<cdot\>x>
<item>Für alle <math|x,x<rprime|'>,y,y<rprime|'>\<in\>B> gilt:
<math|<around*|(|x<rprime|'>\<cdot\>x<rsup|-1>
\<in\>B\<nocomma\>\<nocomma\>,y<rprime|'>\<cdot\>y<rsup|-1>\<in\>B|)>\<Rightarrow\>x<rprime|'>\<cdot\>y<rprime|'>\<cdot\>x<rsup|-1>\<cdot\>y<rsup|-1>\<in\>B>
</enumerate-numeric>
</theorem>
<\theorem>
Ist <math|A> Gruppe, <math|B\<vartriangleleft\>A> Normalteiler, so ist
<math|A/<rsub|B>=A/<rsub|\<sim\>>> mit
<math|<around*|[|x|]>\<cdot\><around*|[|y|]>=<around*|[|x\<cdot\>y|]>>
bezüglich der Äquivalenzrelation
<\equation*>
x\<sim\>y\<Leftrightarrow\> x\<cdot\>y<rsup|-1>\<in\>B
</equation*>
eine Gruppe, die sogenannte <strong|Quotienten-> oder
<strong|Faktorgruppe> von A nach B.
</theorem>
<\theorem>
<strong|(Homomorphiesatz für Gruppen)> Sind
<math|<around*|(|A,\<cdot\>|)>> und <math|<around*|(|A<rprime|'>,\<ast\>|)>>
Gruppen und <math|f:A\<longrightarrow\>A<rprime|'>> Homomorphismus, so
gilt:
<\enumerate-alpha>
<item>Die kanonische Projektion <math|\<pi\>:
A\<longrightarrow\>A/<rsub|Kern f>\<nocomma\>>,
<math|x\<longrightarrow\><around*|[|x|]>> ist Homomorphismus.
<item>Es existiert eine Injektion <math|<wide|f|~>:A/<rsub|Kern
f>\<longrightarrow\>A<rprime|'>> mit <math|f=<wide|f|~>\<circ\>\<pi\>>.
und <math|<wide|f|~>> ist Homomorphismus.
<item>Ist <math|f> surjektiv, so gilt <math|A/<rsub|Kern f>\<cong\>
A<rprime|'>>.
</enumerate-alpha>
</theorem>
<\corollary>
<math|A/<rsub|Kern f>\<cong\>f<around*|(|A|)>=Bild >f
</corollary>
<subsection|Körper und Ringe>
<\definition>
Ein <strong|Körper> <math|<around*|(|K,+,\<cdot\>|)>> ist eine Menge
<math|K> mit zwei Verknüpfungen <math|+> (\RAddition``) und
<math|\<cdot\>> (\RMultiplikation``), sodass gilt:
<\enumerate-alpha>
<item><math|<around*|(|K,+|)>> ist eine abelsche Gruppe, deren
neutrales Element mit <math|0> bezeichnet wird.
<item><math|<around*|(|K\<backslash\><around*|{|0|}>\<nocomma\>*,\<cdot\>|)>>
ist eine abelsche Gruppe, deren neutrales Element mit <math|1>
bezeichnet wird.
<item><math|+> und <math|\<cdot\>> erfüllen die Distributivgesetze:
<math|x\<cdot\><around*|(|y+z|)>=x\<cdot\>y+x\<cdot\>z>,
<math|<around*|(|x+y|)>\<cdot\>z=x\<cdot\>z+y\<cdot\>z>
</enumerate-alpha>
</definition>
<subsubsection|Restklassenkörper>
Sei <math|\<sim\>> die Äquivalenzrelation <math|x\<sim\>y
\<Leftrightarrow\>> <math|x> und <math|y> haben den gleichen Rest bei
Division durch <math|m\<in\>\<bbb-Z\>>.
<\definition>
<math|\<bbb-Z\><rsub|m> \<assign\> \<bbb-Z\>/<rsub|\<sim\>>>
</definition>
<\remark>
<math|\<bbb-Z\><rsub|m>> kann mit <math|<around*|{|<around*|[|0|]>\<nocomma\>,<around*|[|1|]>,\<ldots\>,<around*|[|m-1|]>|}>>
identifiziert werden und <em|als Menge> auch mit
<math|<around*|{|0,1,\<ldots\>,m-1|}>>.
Für <math|x\<sim\>y> in <math|\<bbb-Z\><rsub|m>> schreibt man auch
<math|x\<equiv\>y mod m>
</remark>
<\theorem>
Definiere <math|<around*|(|\<bbb-Z\><rsub|m>,+,\<cdot\>|)>> mit
<math|<around*|[|x|]>+<around*|[|y|]>=<around*|[|x+y|]>>,
<math|<around*|[|x|]>\<cdot\><around*|[|y|]>=<around*|[|x\<cdot\>y|]>>.
Dann ist dies genau dann ein Körper (<strong|Restklassenkörper>), wenn
<math|m> eine Primzahl ist. Man schreibt in diesem Falle
<math|\<bbb-Z\><rsub|m>=:\<bbb-F\><rsub|m>>.
(Ansonsten ist <math|\<bbb-Z\><rsub|m>> ein kommutativer Ring mit Eins,
der sogenannte <strong|Restklassenring>).
</theorem>
<subsubsection|Körperhomomorphismen>
<\definition>
Eine Abbildung <math|f:K\<longrightarrow\>K<rprime|'>> zwischen zwei
Körpern <math|K> und <math|K<rprime|'>> heisst <strong|(Körper-)
Homomorphismus>, falls gilt:
<\enumerate-alpha>
<item><math|f<around*|(|x+y|)>=f<around*|(|x|)>+<rprime|'>f<around*|(|y|)>>
<item><math|f<around*|(|x\<cdot\>y|)>=f<around*|(|x|)>\<cdot\><rprime|'>f<around*|(|y|)>>
<item><math|f<around*|(|1|)>=1<rprime|'>>
</enumerate-alpha>
</definition>
<\remark>
Ist <math|K> ein Körper mit <math|<around*|\||K|\|>=p>, <math|p>
Primzahl, so gilt <math|K*\<cong\>\<bbb-F\><rsub|p>>.
Wenn <math|c> die kleinste Zahl ist, für die im Körper <math|K> gilt:
<math|<wide*|1+1+\<ldots\>+1|\<wide-underbrace\>><rsub|c-mal>=0>, dann
heisst <math|c> die <strong|Charakteristik> des Körpers <math|K>. Falls
keine solche Zahl existiert, hat der Körper <math|K> die Charakteristik
0. Beispielsweise haben <math|\<bbb-R\>>, <math|\<bbb-C\>> und
<math|\<bbb-Q\>> die Charakteristik <math|0>.
</remark>
<subsubsection|Ringe>
<\definition>
Ein <strong|Ring> <math|<around*|(|R,+,\<cdot\>|)>> ist eine Menge
<math|R> mit zwei Verknüpfungen <math|+> und <math|\<cdot\>>, sodass
gilt:
<\description>
<item*|R1><math|<around*|(|R,+|)>> ist abelsche Gruppe.
<item*|R2><math|<around*|(|R,\<cdot\>|)>> ist <strong|Halbgruppe,> d.h.
eine Menge mit einer assoziativen Verknüpfung, die abgeschlossen
bezüglich dieser Verknüpfung ist.
<item*|R3 (Distributivgesetze)>Es gelten die beiden Distributivgesetze
analog zu Körpern.
</description>
Ist <math|<around*|(|R,\<cdot\>|)>> kommutativ, dann heisst <math|R>
<strong|kommutativer Ring>. Besitzt <math|<around*|(|R,\<cdot\>|)>> auch
ein neutrales Element, so spricht man von einem <strong|kommutativen Ring
mit Einselement>
</definition>
<\remark>
Jeder Körper ist ein kommutativer Ring mit Eins.
<math|\<bbb-Z\><rsub|m>> ist ein kommutativer Ring mit Eins.
Für <math|m\<gtr\>1> ist <math|m\<bbb-Z\>=<around*|{|m*z <mid|\|>
z\<in\>\<bbb-Z\>|}>> ein kommutativer Ring <em|ohne> Eins.
</remark>
<subsubsection|Matrizen>
<\definition>
<math|\<bbb-K\><rsup|m\<times\>n> \<assign\>
<around*|{|m\<times\>n<with|mode|text|-Matrizen über >\<bbb-K\>|}>>
</definition>
<\remark>
<math|\<bbb-K\><rsup|m\<times\>n>> ist bezüglich komponentenweiser
Addition eine abelsche Gruppe.
</remark>
<\definition>
Sind <math|A\<in\>\<bbb-K\><rsup|m\<times\>n>> und
<math|B\<in\>\<bbb-K\><rsup|n\<times\>k>>, so heisst die
<math|m\<times\>k>-Matrix <math|<around*|(|c<rsub|i*j>|)>> mit
<\equation*>
c<rsub|i*j>=<big-around|\<sum\>|<rsub|l=1><rsup|n>a<rsub|i*l>\<cdot\>b<rsub|l*j>>
</equation*>
das Produkt <math|A\<cdot\>B> von <math|A> und <math|B>.
</definition>
<\theorem>
Die Multiplikation von Matrizen hat die folgenden Eigenschaften:
<\description>
<item*|Assoziativität><math|<around*|(|A*B|)>*C=A*<around*|(|B*C|)>>
<item*|Distributivität><math|<around*|(|A+B|)>*C=A*C+B*C> und
<math|A*<around*|(|B+C|)>=A*B+A*C>
<item*|Neutrales Element><math|E<rsub|n>*A=A*E<rsub|n>=A>
</description>
</theorem>
<\corollary>
<math|\<bbb-K\><rsup|n\<times\>n>> bildet einen (i.A. <em|nicht>
kommutativen) Ring mit Eins.
</corollary>
<\remark>
Für kein <math|n\<geqslant\>2> und keinen Körper <math|\<bbb-K\>> ist
<math|\<bbb-K\><rsup|n\<times\>n>> ein Körper!
</remark>
<\definition>
Existiert zu <math|A\<in\>K<rsup|n\<times\>n>> ein multiplikatives
Inverses <math|A<rprime|'>>, so heisst <math|A> <strong|invertierbar>
oder <strong|regulär>. Dann gilt <math|A*A<rprime|'>=A<rprime|'>*A=E<rsub|n>>
und man schreibt auch <math|A<rprime|'>=A<rsup|-1>>.
Ist <math|A> nicht invertierbar, so heisst <math|A> <strong|singulär>.
Die Menge <math|GL<around*|(|n,\<bbb-K\>|)>> aller invertierbaren
<math|n\<times\>n>-Matrizen bildet bezüglich der Matrixmultiplikation
eine (i.A. nicht abelsche) Gruppe, die <strong|allgemeine lineare Gruppe>
über <math|\<bbb-K\>>.
Für <math|n\<geqslant\>2> ist auch <math|GL<around*|(|n,\<bbb-K\>|)>>
niemals ein Körper.
</definition>
<\definition>
Für <math|A=<around*|(|<around*|(|a<rsub|i*j>|)>|)>\<in\>K<rsup|m\<times\>n>>
ist die <strong|Transponierte> <math|A<rsup|\<top\>>> von <math|A> die
Matrix <math|B\<in\>\<bbb-K\><rsup|n\<times\>m>> mit
<math|b<rsub|i*j>=a<rsub|j*i>>.
</definition>
<\remark>
Für das Transponieren von Matrizen gilt:
<\enumerate-alpha>
<item><math|<around*|(|A<rsup|\<top\>>|)><rsup|\<top\>>=A>
<item><math|<around*|(|A+B|)><rsup|\<top\>>=A<rsup|\<top\>>+B<rsup|\<top\>>>
<item><math|<around*|(|A*B|)><rsup|\<top\>>=B<rsup|\<top\>>\<cdot\>A<rsup|\<top\>>>
(!)
<item><math|A> invertierbar <math|\<Leftrightarrow\>>
<math|A<rsup|\<top\>>> invertierbar, und
<math|<around*|(|A<rsup|\<top\>>|)><rsup|-1> =
<around*|(|A<rsup|-1>|)><rsup|\<top\>>>
</enumerate-alpha>
</remark>
<\definition>
<math|A\<in\>\<bbb-K\><rsup|n\<times\>m>> heisst <strong|symmetrisch>,
falls <math|A=A<rsup|\<top\>>> (dann also auch <math|n=m>)
</definition>
<\remark>
Die Definitionen und Rechenregeln für Matrizen ergeben auch Sinn, wenn
<math|\<bbb-K\>> kein Körper ist, sondern ein kommutativer Ring mit Eins.
</remark>
<subsubsection|Polynome>
<\definition>
Ein <strong|Polynom> über einem Körper <math|\<bbb-K\>> ist eine
<em|endliche> Folge aus <math|\<bbb-K\><rsup|\<bbb-N\><rsub|0>>> von
Körperelementen <math|a<rsub|i>\<in\>\<bbb-K\>>, d.h.
<\equation*>
p=<around*|(|a<rsub|0>,a<rsub|1>,\<ldots\>,a<rsub|n>,0,0,0,\<ldots\>|)>
</equation*>
Schreibweise: <math|p=<around*|(|a<rsub|i>|)><rsub|i\<in\>\<bbb-N\><rsub|0>>>
oder <math|p=<big-around|\<sum\>|<rsub|i=0><rsup|\<infty\>>a<rsub|i>*X<rsup|i>>>
oder <math|p=<big-around|\<sum\>|<rsub|i=0><rsup|n>a<rsub|i>*X<rsup|i>>>.
Das Polynom <math|<around*|(|0,0,0,\<ldots\>|)>=:0> heisst
<strong|Nullpolynom>.
Für <math|p\<neq\>0> heisst das grösste <math|n\<in\>\<bbb-N\><rsub|0>>
mit <math|a<rsub|n>\<neq\>0> der <strong|Grad> des Polynoms
<math|<around*|(|Grad p|)>>. Das Nullpolynom hat per Definition den Grad
<math|-1>.
Ein Polynom <math|p> heisst <strong|normiert>, wenn <math|Grad p=n> und
<math|a<rsub|n>=1>.
</definition>
<\definition>
<math|\<bbb-K\><around*|[|X|]> \<assign\>
<around*|{|<with|mode|text|Polynome über> \<bbb-K\>|}>>. Für
<math|p=<around*|(|a<rsub|i>|)>,q=<around*|(|b<rsub|i>|)>\<in\>\<bbb-K\><around*|[|X|]>>
sei
<\equation*>
p+q:=<around*|(|a<rsub|i>+b<rsub|i>|)><rsub|i\<in\>\<bbb-N\><rsub|0>>\<nocomma\>
</equation*>
<\equation*>
p\<cdot\>q \<assign\> <around*|(|c<rsub|i>|)><rsub|i\<in\>\<bbb-N\><rsub|0>>
mit c<rsub|i>\<assign\><big-around|\<sum\>|<rsub|k=0><rsup|i>a<rsub|k>\<cdot\>b<rsub|i-k>>
</equation*>
</definition>
<\theorem>
<math|\<bbb-K\><around*|[|X|]>> ist bezüglich <math|+> und
<math|\<cdot\>> ein kommutativer Ring mit Eins. Das Einselement ist das
Polynom <math|<around*|(|1,0,0,\<ldots\>|)>>.
<math|\<bbb-K\><around*|[|X|]>> ist <em|kein> Körper, denn
<math|p\<assign\>X> besitzt kein multiplikatives Inverses.
</theorem>
<\remark>
\
<\enumerate-alpha>
<item><math|p,q\<in\>\<bbb-K\><around*|[|X|]>> <math|\<Rightarrow\>>
<math|Grad <around*|(|p+q|)>\<leqslant\>max<around*|{|Grad
p\<nocomma\>,Grad q|}>>
<item><math|p,q\<in\>\<bbb-K\><around*|[|X|]>\<Rightarrow\>Grad<around*|(|p\<cdot\>q|)>=Grad
p +Grad q>
<item>Jedes <math|p\<in\>\<bbb-K\><around*|[|X|]>> liefert eine
zugehörige Abbildung <math|x\<longrightarrow\><big-around|\<sum\>|q<rsub|i>*x<rsup|i>>>,
die zu <math|p> gehörige <strong|Polynomfunktion>.
<item><math|\<pi\>: \<bbb-K\><around*|[|X|]>\<longrightarrow\><around*|{|p<around*|(|x|)>|}>>
ist surjektiver Homomorphismus von Ringen mit Eins.
Für <em|endliche> Körper ist <math|\<pi\>> nicht injektiv, für
<math|<around*|\||\<bbb-K\>|\|>=\<infty\>> ist <math|\<pi\>>
Ringisomorphismus!
</enumerate-alpha>
</remark>
<\theorem>
<strong|(Division mit Rest)> Zu allen Polynomen
<math|p,q\<in\>\<bbb-K\><around*|[|X|]>> existieren <em|eindeutig>
bestimmte Polynome <math|r,s\<in\>\<bbb-K\><around*|[|X|]>> mit
<\equation*>
p=s\<cdot\>q+r
</equation*>
und <math|Grad r\<less\>Grad q>.
</theorem>
<\definition>
<math|x<rsub|0>\<in\>\<bbb-K\>> heisst <strong|Nullstelle> des Polynoms
<math|p\<in\>\<bbb-K\><around*|[|X|]>>, wenn <math|x<rsub|0>> Nullstelle
der zugehörigen Polynomfunktion ist, d.h.
<math|p<around*|(|x<rsub|0>|)>=0>.
</definition>
<\corollary>
<math|x<rsub|0>\<in\>\<bbb-K\>> ist Nullstelle von
<math|p\<in\>\<bbb-K\><around*|[|X|]> \<Longleftrightarrow\> \<exists\>
<with|mode|text|Darstellung > p=s\<cdot\><around*|(|X-x<rsub|0>|)>>,
<math|s\<in\>\<bbb-K\><around*|[|X|]>>.
</corollary>
<\remark>
Ein Polynom vom Grad <math|n> hat höchstens <math|n> Nullstellen.
</remark>
<\theorem>
<strong|(Fundamentalsatz der Algebra)> Jedes
<math|p\<in\>\<bbb-C\><around*|[|X|]>> hat genau <math|n> Nullstellen.
</theorem>
<paragraph|Teiler von Polynomen>
<\definition>
Seien <math|p,s\<in\>\<bbb-K\><around*|[|X|]>>. <math|s> heisst
<strong|Teiler> von <math|p>, wenn ein
<math|r\<in\>\<bbb-K\><around*|[|X|]>> existiert mit <math|p=s\<cdot\>r>.
<math|p,q\<in\>\<bbb-K\><around*|[|X|]>> heissen <strong|teilerfremd>,
wenn sie keinen gemeinsamen Teiler <math|r> mir <math|Grad
r\<geqslant\>1> besitzen.
</definition>
<\theorem>
Zwei Polynome <math|p,q\<in\>\<bbb-K\><around*|[|X|]>> sind teilerfremd
genau dann, wenn Polynome <math|r,s\<in\>\<bbb-K\><around*|[|X|]>>
existieren mit
<\equation*>
r\<cdot\>p+s\<cdot\>q=1
</equation*>
</theorem>
<subsubsection|Der Gauss-Algorithmus>
<\theorem>
Die Lösungsmenge eines linearen Gleichungssystems ändert sich durch die
folgenden elementaren Zeilenumformungen nicht:
<\enumerate-alpha>
<item>Vertauschen zweier Zeilen
<item>Multiplikation einer Zeile mit einem Körperelement
<math|c\<in\>\<bbb-K\>\<backslash\><around*|{|0|}>>
<item>Addition des (<math|d\<in\>\<bbb-K\>>)-fachen einer Zeile zu
einer anderen.
</enumerate-alpha>
</theorem>
<\remark>
Ein LGS über <math|\<bbb-K\>>, <math|A*x=b> heisst <strong|homogen>,
falls <math|b=0>, ansonsten <strong|inhomogen>.
</remark>
<\theorem>
Ein homogenes LGS <math|A*x=0> mit <math|A\<in\>K<rsup|m\<times\>n>> und
<math|m\<less\>n> (also mehr Gleichungen als Unbekannte) hat immer eine
von <math|0\<in\>\<bbb-K\><rsup|n>> verschiedene Lösung.
</theorem>
<\remark>
<math|A\<in\>\<bbb-K\><rsup|n\<times\>n>> ist invertierbar genau dann,
wenn sich <math|<around*|(|A<mid|\|>E<rsub|n>|)>> durch elementare
Zeilenumformungen in <math|<around*|(|E<rsub|n><mid|\|>A<rprime|'>|)>>
umformen lässt. Dann ist <math|A<rprime|'>=A<rsup|-1>>.
<math|A\<in\>GL<around*|(|n,\<bbb-K\>|)> \<Longrightarrow\>> das LGS
<math|A*x=b> ist <em|eindeutig lösbar> mit <math|x=A<rsup|-1>*b>.
Ist <math|<wide|x|~>> Lösung eines inhomogenen LGS <math|A*x=b> und
<math|L> die Lösungsmenge des dazugehörigen homogenen LGS <math|A*x=0>,
so gilt für die Lösungsmenge <math|L<rsub|inh>> des inhomogenen LGS:
<math|L<rsub|inh>=<wide|x|~>+L>.
</remark>
<section|Vektorräume>
<subsection|Definition>
<\definition>
Ein <strong|Vektorraum> über einem Körper <math|\<bbb-K\>>, kurz
<math|\<bbb-K\>>-VR, ist eine Menge mit zwei Verknüfungen <math|+:
V\<times\>V\<longrightarrow\>V> und <math|\<cdot\>:
\<bbb-K\>\<times\>V\<longrightarrow\>V>, sodass gilt:
<\itemize-minus>
<item><math|<around*|(|V,+|)>> ist abelsche Gruppe
<item><strong|Distributivgesetze:> <math|a<around*|(|x+y|)>=a*x+a*y>,
<math|<around*|(|a+b|)>*x=a*x+b*x> <math|\<forall\>a,b\<in\>\<bbb-K\>,x,y\<in\>V>
<item><strong|Assoziativität der Multiplikation:>
<math|a\<cdot\><around*|(|b\<cdot\>x|)>=<around*|(|a*b|)>\<cdot\>x>
<item><math|1\<cdot\>x=x> <math|\<forall\>x\<in\>V>
</itemize-minus>
Sprechweisen:
<\description>
<item*|Vektoren>Elemente von <math|V>
<item*|Skalare>Elemente von <math|\<bbb-K\>>
<item*|Vektoraddition><math|+>
<item*|Nullvektor (<math|O>)>Neutrales Element bzgl. <math|+>
<item*|Skalare Multiplikation><math|\<cdot\>>
<item*|Reeller (komplexer) Vektorraum><math|\<bbb-K\>=\<bbb-R\>>
(<math|\<bbb-K\>=\<bbb-C\>>)
</description>
</definition>
<\theorem>
In jedem <math|\<bbb-K\>>-VR <math|V> gilt:
<\enumerate-alpha>
<item><math|0\<cdot\>x=O> <math|\<forall\>x\<in\>V>
<item><math|a\<cdot\>O=O> <math|\<forall\>a\<in\>\<bbb-K\>>
<item><math|a\<in\>\<bbb-K\>,x\<in\>V> und <math|a\<cdot\>x=O>
<math|\<Rightarrow\>> <math|a=0> oder <math|x=O>
<item><math|<around*|(|-1|)>\<cdot\>x=-x> <math|\<forall\>x\<in\>V>
</enumerate-alpha>
</theorem>
<\definition>
Eine nichtleere Teilmenge <math|U> eines <math|\<bbb-K\>>-VR <math|V>
heiÿt <strong|Untervektorraum> (UVR) von <math|V>, wenn <math|U> mit den
Einschränkungen von <math|*+> und <math|\<cdot\>> auf <math|U> selbst ein
<math|\<bbb-K\>>-VR ist.
</definition>
<\theorem>
<strong|(Untervektorraumkriterium)> Für einen <math|\<bbb-K\>>-VR
<math|V> und <math|U\<subset\>V> gilt:
<\equation*>
U<with|mode|text| ist UVR von >V \<Longleftrightarrow\>
U\<neq\>\<emptyset\><with|mode|text| und >\<forall\>x,y\<in\>U
\<forall\>a\<in\>\<bbb-K\><with|mode|text| gilt
>x+y\<in\>U\<nocomma\><with|mode|text| und >a\<cdot\>x\<in\>U
</equation*>
</theorem>
<\definition>
Sind <math|V> und <math|W> <math|\<bbb-K\>>-VRe, so heiÿt eine Abbildung
<math|\<Phi\>: V\<longrightarrow\>W> <strong|linear> oder
<strong|VR-Homomorphismus>, falls <math|\<Phi\><around*|(|a*x+b*y|)>=a\<cdot\>\<Phi\><around*|(|x|)>+b\<cdot\>\<Phi\><around*|(|y|)>>
für alle <math|a,b\<in\>\<bbb-K\>,x,y\<in\>V>.
Ist <math|\<Phi\>> bijektiv, so heiÿt <math|\<Phi\>>
<strong|VR-Isomorphismus> und <math|V> und <math|W> sind dann isomorph
(<math|V\<cong\>W>).
</definition>
<\remark>
Obige Gleichung ist äquivalent zu
<\equation*>
\<Phi\><around*|(|x+y|)>=\<Phi\><around*|(|x|)>+\<Phi\><around*|(|y|)><with|mode|text|
und >\<Phi\><around*|(|\<alpha\>*x|)>=\<alpha\>*\<Phi\><around*|(|x|)><with|mode|text|
für alle >x,y\<in\>V,\<alpha\>\<in\>\<bbb-K\>
</equation*>
</remark>
<\corollary>
Beliebige Durchschnitte von UVR eines gegebenen VR <math|V> sind UVR.
</corollary>
<\definition>
Ist <math|V> <math|\<bbb-K\>>-VR und <math|A\<subset\>V>, so heiÿt
<\equation*>
<around*|[|A|]> \<assign\> <big-around|\<cap\>|<rsub|U<with|mode|text|
UVR von> V<with|mode|text| mit >A\<subset\>U>U>
</equation*>
(\Rder kleinste UVR, der <math|A> vollständig enthält``)
die <strong|lineare Hülle / Spann> von <math|A> und <math|A>
<strong|Erzeugendensystem> des UVR <math|<around*|[|A|]>>.
Ist <math|A=<around*|{|x<rsub|1>,\<ldots\>,x<rsub|n>|}>> endlich, so
schreibt man auch <math|<around*|[|A|]>=<around*|[|x<rsub|1>,\<ldots\>,x<rsub|n>|]>>
und die <math|x<rsub|i>> heiÿen dann auch <strong|erzeugende Vektoren>.
</definition>
<\example>
<math|<around*|[|V|]>=V>, <math|<around*|[|\<emptyset\>|]>=<around*|{|O|}>>
</example>
<\definition>
Ist <math|V> <math|\<bbb-K\>>-VR und <math|x<rsub|1>,\<ldots\>,x<rsub|k>\<in\>V>,
so heiÿt jeder Vektor
<\equation*>
v=\<alpha\><rsub|1>*x<rsub|1>+\<ldots\>+\<alpha\><rsub|k>*x<rsub|k>=<big-around|\<sum\>|<rsub|i=1><rsup|k>\<alpha\><rsub|i>*x<rsub|i>><with|mode|text|
(mit >\<alpha\><rsub|i>\<in\>\<bbb-K\><with|mode|text|)>
</equation*>
eine <strong|Linearkombination> (LK) von
<math|x<rsub|1>,\<ldots\>,x<rsub|k>>.
</definition>
<\theorem>
Ist <math|V> <math|\<bbb-K\>>-VR, <math|A> eine nichtleere Teilmenge von
<math|V>, dann ist
<\equation*>
<around*|[|A|]>=<around*|{|v\<in\>V <mid|\|> v<with|mode|text| ist
Linearkombination von Vektoren aus >A|}>
</equation*>
</theorem>
<subsection|Lineare Ab- und Unabhängigkeit>
<\definition>
Sei <math|V> <math|\<bbb-K\>>-VR, <math|k\<in\>\<bbb-N\>>,
<math|x<rsub|1>,\<ldots\>,x<rsub|k>\<in\>V>. Dann heiÿen
<math|x<rsub|1>,\<ldots\>,x<rsub|k>> <strong|linear abhängig>, wenn es
<math|<around*|(|\<alpha\><rsub|1>,\<ldots\>,\<alpha\><rsub|k>|)>\<neq\><around*|(|0,\<ldots\>,0|)>>
gibt mit <math|<big-around|\<sum\>|<rsub|i=1><rsup|k>\<alpha\><rsub|i>*x<rsub|i>=O>>,
ansonsten <strong|linear unabhängig>.
</definition>
<\example>
\
<\itemize-minus>
<item><math|x<rsub|1>,\<ldots\>,x<rsub|k>> sind linear unabhängig
<math|\<Longleftrightarrow\>> <math|<around*|(|<big-around|\<sum\>|<rsub|i=1><rsup|k>\<alpha\><rsub|i>*x<rsub|i>=O
\<Rightarrow\> \<alpha\><rsub|1>=\<ldots\>=\<alpha\><rsub|k>>=0|)>>
<item><math|x<rsub|1>,\<ldots\>,x<rsub|k>> sind linear unabhängig,
falls
<\itemize-minus>
<item>einer dieser Vektoren der Nullvektor ist
<item>zwei der Vektoren gleich sind
<item>ein Vektor eine LK der anderen Vektoren ist
</itemize-minus>
</itemize-minus>
</example>
<\remark>
Sind <math|<wide|y<rsub|1>|^>\<nocomma\>,\<ldots\>,<wide|y<rsub|k>|^>>
die Koordinatendarstellungen der Vektoren
<math|y<rsub|1>,\<ldots\>,y<rsub|k>\<in\><around*|[|x<rsub|1>,\<ldots\>,x<rsub|k>|]>>,
so gilt: <with|mode|math|<wide|y<rsub|1>|^>\<nocomma\>,\<ldots\>,<wide|y<rsub|k>|^>>
linear unabhängig <math|\<Longleftrightarrow\>>
<with|mode|math|y<rsub|1>,\<ldots\>,y<rsub|k>> linear unabhängig.
</remark>
<\theorem>
V<math| \<bbb-K\>>-VR, <math|y<rsub|1>,\<ldots\>,y<rsub|m>\<in\><around*|[|x<rsub|1>,\<ldots\>,x<rsub|k>|]>>.
Falls <math|m\<gtr\>k>, sind <math|y<rsub|1>,\<ldots\>,y<rsub|m>> linear
abhängig.
</theorem>
<\definition>
Eine Teilmenge <math|A> eines <math|\<bbb-K\>>-VR <math|V> heiÿt
<strong|linear abhängig>, falls es paarweise verschiedene Vektoren
<math|x<rsub|1>,\<ldots\>,x<rsub|k>\<in\>A> gibt, die linear abhängig
sind, ansonsten linear unabhängig.
</definition>
<\remark>
<math|A> linear unabhängig <math|\<Longleftrightarrow\>>
<math|A=\<emptyset\>> <em|oder> alle paarweise verschiedenen Vektoren aus
<math|A> sind linear unabhängig.
Ist <math|A=<around*|{|x<rsub|1>,\<ldots\>,x<rsub|m>|}>> endlich, so
gilt: <math|A> linear unabhängig <math|\<Longleftrightarrow\>>
<math|x<rsub|1>,\<ldots\>,x<rsub|m>> linear unabhängig.
</remark>
<\definition>
Sei <math|V> <math|\<bbb-K\>>-VR. Dann heiÿt
<\itemize-minus>
<item>ein Erzeugendensystem <math|A> von <math|V> <strong|minimal>
<math|\<Leftrightarrow\>> keine echte Teilmenge von <math|A> erzeugt
<math|V>.
<item>eine l.u. Teilmenge <math|A> von <math|V> <strong|maximal>
<math|\<Leftrightarrow\>> jede echte Obermenge von <math|A> ist l.a. in
<math|V>.
<item>jedes linear unabhängige Erzeugendensystem von <math|V> eine
<strong|Basis> von V.
</itemize-minus>
</definition>
<\theorem>
Sei <math|V> ein <math|\<bbb-K\>>-VR, <math|B> eine nichtleere Teilmenge
von <math|V>. Dann sind äquivalent:
<\enumerate-alpha>
<item><math|B> ist Basis von <math|V>
<item><math|B> ist minimales Erzeugendensystem von <math|V>
<item><math|B> ist maximale linear unabhängige Teilmenge von <math|V>
<item><math|x\<in\>V \<Longrightarrow\> x<with|mode|text| ist
eindeutige Linearkombination von Vektoren aus >B>
</enumerate-alpha>
</theorem>
<\example>
\
<\itemize-minus>
<item><math|\<emptyset\>> ist Basis von <math|V=<around*|{|O|}>>.
<item>Im <math|V=\<bbb-R\><rsup|\<bbb-N\>>> ist
<math|<around*|{|<around*|(|1,0,0,\<ldots\>|)>,<around*|(|0,1,0,\<ldots\>|)>\<nocomma\>,<around*|(|0,0,1,0,\<ldots\>|)>|}>>
linear unabhängig, aber <em|keine> Basis!
</itemize-minus>
</example>
<\theorem>
Für zwei Basen <math|B> und <math|B<rprime|'>> eines VR gilt:
<math|<around*|\||B|\|>=<around*|\||B<rprime|'>|\|>>.
</theorem>
<\theorem>
Gibt es ein <em|endliches> Erzeugendensystem eines Vektorraums <math|V>,
so hat jedes Erzeugendensystem <math|A> von <math|V> eine <em|endliche>
Teilmenge, die Basis von <math|V> ist.
</theorem>
<\corollary>
Ist <math|V> <math|\<bbb-K\>>-VR, <math|B> Basis von <math|V>, <math|A>
Erzeugendensystem mit <math|<around*|\||A|\|>=<around*|\||B|\|>\<less\>\<infty\>>,
so ist auch <math|A> eine Basis von <math|V>.
</corollary>
<\definition>
Die <strong|Dimension> eines <math|\<bbb-K\>>-VR <math|V> ist erklärt als
<\equation*>
dim<rsub|\<bbb-K\>>V=dim V=<mid|{><tabular|<tformat|<table|<row|<cell|\<infty\>:>|<cell|V<with|mode|text|
besitzt keine endliche Basis>>>|<row|<cell|n:>|<cell|V<with|mode|text|
besitzt eine Basis >B<with|mode|text| mit ><around*|\||B|\|>=n>>>>>
</equation*>
</definition>
<\theorem>
<strong|(Basisergänzungssatz)> Sei <math|V> <math|\<bbb-K\>>-VR und
<math|A> eine linear unabhängige Teilmenge von <math|V>. Dann gibt es
eine Basis <math|B> von <math|V> mit <math|A\<subset\>B>.
</theorem>
<\corollary>
<strong|Jeder Vektorraum hat eine Basis.>
</corollary>
<\corollary>
Ist <math|V> <math|\<bbb-K\>>-VR, <math|B> Basis von <math|V>, <math|A>
linear unabhängige Teilmenve von <math|V> mit
<math|<around*|\||A|\|>=<around*|\||B|\|>>, so ist auch <math|A> eine
Basis von <math|V>.
</corollary>
<\theorem>
Ist <math|V> <math|\<bbb-K\>>-VR mit <math|n \<assign\> dim
V\<less\>\<infty\>> und <math|U> ein Untervektorraum von \ <math|V>, so
gilt:
<\itemize-minus>
<item><math|dim U\<less\>dim V>
<item>Ist <math|dim U=dim V>, so gilt <math|U=V>.
</itemize-minus>
</theorem>
<\example>
Für <math|W=<around*|[|z<rsub|1>,\<ldots\>,z<rsub|m>|]>> mit
<math|z<rsub|i>\<in\>\<bbb-K\><rsup|n>> soll eine möglichst einfache
Basis bestimmt werden.
Lösungsmethode: Setze <math|A\<assign\><matrix|<tformat|<table|<row|<cell|z<rsub|1><rsup|\<top\>>>>|<row|<cell|\<vdots\>>>|<row|<cell|z<rsub|n><rsup|\<top\>>>>>>>\<in\>\<bbb-K\><rsup|m\<times\>n>>
und bringe <math|A> durch elementare Zeilenumformungen auf die Gauÿsche
Normalform <math|<wide|A|~>\<assign\><matrix|<tformat|<table|<row|<cell|<wide|z<rsub|1><rsup|>|~><rsup|\<top\>>>>|<row|<cell|\<vdots\>>>|<row|<cell|<wide|z<rsub|n>|~><rsup|\<top\>>>>>>>\<in\>\<bbb-K\><rsup|m\<times\>n>>.
Dann bilden die von <math|O> verschiewdenen Vektoren aus
<math|<around*|{|<wide|z<rsub|1>|~>,\<ldots\>,<wide|z<rsub|m>|~>|}>> eine
besonders einfache Basis von <math|W>.
</example>
<\definition>
Für <math|A\<in\>\<bbb-K\><rsup|m\<times\>n>> sei der <strong|Zeilenrang>
<math|zrang<around*|(|A|)>> die maximale Anzahl linear unabhängiger
Zeilenvektoren und der <strong|Spaltenrang> <math|srang<around*|(|A|)>>
die maximale Anzahl linear unabhängiger Spaltenvektoren von <math|A>.
</definition>
<\theorem>
Für jede Matrix <math|A> gilt <math|zrang<around*|(|A|)>=srang<around*|(|A|)>\<assign\>
Rg A>.
</theorem>
<\corollary>
\
<\itemize-minus>
<item><math|A\<in\>\<bbb-K\><rsup|m\<times\>n>:> <math|Rg A = Rg
A<rsup|\<top\>>>
<item><math|A\<in\>\<bbb-K\><rsup|n\<times\>n>:> <math|A> ist regulär
<math|\<Leftrightarrow\>> <math|Rang A = n>
<item>Das LGS <math|A*x=b> ist genau dann lösbar, wenn <math|Rang
A=Rang <around*|(|A<mid|\|>b|)>>.
</itemize-minus>
</corollary>
<\corollary>
Es sei <math|A\<in\>\<bbb-K\><rsup|m\<times\>n>> und
<math|L\<assign\><around*|{|x\<in\>\<bbb-K\><rsup|n> <mid|\|> A*x=O|}>>.
Dann gilt:
<\equation*>
Rang A = n-dim L
</equation*>
</corollary>
<\example>
Bestimmen des Durchschnitts <math|U<rsub|1>\<cap\>U<rsub|2>> zweier
Untervektorräume
Beschreibe <math|U<rsub|i>> durch ein homogenes LGS mit Matrix
<math|B<rsub|i>> (<math|i=1,2>). Dann ist
<\equation*>
U<rsub|1>\<cap\>U<rsub|2> = <around*|{|x\<in\>\<bbb-K\><rsup|n>
<mid|\|> B<rsub|1>*x=0\<wedge\>B<rsub|2>*x=0|}>
</equation*>
</example>
<subsection|(Direkte) Summen und Quotientenräume>
<\definition>
Sei <math|V> <math|\<bbb-K\>>-VR, <math|A<rsub|1>,\<ldots\>,A<rsub|k>\<subset\>V>,
<math|U<rsub|1>,\<ldots\>,U<rsub|k>> UVR von <math|V>.
<\enumerate-alpha>
<item>Die <strong|Summe> der <math|A<rsub|1>,\<ldots\>,A<rsub|k>> sei
<math|A<rsub|1>+\<ldots\>+A<rsub|k>=<big-around|\<sum\>|<rsub|i=1><rsup|k>A<rsub|i>>\<assign\><around*|{|<big-around|\<sum\>|<rsub|i=1><rsup|k>x<rsub|i>>
<mid|\|> x<rsub|i>\<in\>A<rsub|i>|}>>.
<item>Schneiden sich die die UVR paarweise nur im Nullvektor, ist also
<math|U<rsub|i>\<cap\><big-around|\<sum\>|<rsub|j=1,j\<neq\>i><rsup|k>U<rsub|j>>=<around*|{|O|}>>
für alle <math|i=1,\<ldots\>,k>, so heiÿt
<\equation*>
<big-around|\<oplus\>|<rsub|i=1><rsup|k>U<rsub|i>=U<rsub|1>\<oplus\>\<ldots\>\<oplus\>U<rsub|k>\<assign\><big-around|\<sum\>|<rsub|i=1><rsup|k>U<rsub|i>>>
</equation*>
die <strong|direkte Summe> der UVR <math|U<rsub|1>,\<ldots\>,U<rsub|k>>.
</enumerate-alpha>
</definition>
<\remark>
<math|<around*|[|A<rsub|<rsup|>1>\<cup\>\<ldots\>\<cup\>A<rsub|k>|]>=<around*|[|A<rsub|1>|]>+\<ldots\>+<around*|[|A<rsub|k>|]>.>
Summen, insbesondere direkte Summen, von UVR sind UVR.
</remark>
<\theorem>
Ist <math|V> <math|\<bbb-K\>>-VR, <math|U<rsub|1>,\<ldots\>,U<rsub|k>>
UVRe von V (<math|k\<geqslant\>2>), so gilt:
<math|<big-around|\<sum\>|U<rsub|i>>> ist genau dann direkte Summe, wenn
sich jeder Vektor <math|x\<in\><big-around|\<sum\>|U<rsub|i>>>
<em|eindeutig> als <math|x=<big-around|\<sum\>|u<rsub|i>>\<nocomma\>>,
<math|u<rsub|i>\<in\>U<rsub|i>>, darstellen lässt.
</theorem>
<\theorem>
<strong|(Dimensionssatz)> <math|V> <math|\<bbb-K\>>-VR, <math|U,W> UVR