forked from klevasseur/ads
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathads.aux
2192 lines (2192 loc) · 199 KB
/
ads.aux
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
\relax
\providecommand\hyper@newdestlabel[2]{}
\providecommand\HyperFirstAtBeginDocument{\AtBeginDocument}
\HyperFirstAtBeginDocument{\ifx\hyper@anchor\@undefined
\global\let\oldcontentsline\contentsline
\gdef\contentsline#1#2#3#4{\oldcontentsline{#1}{#2}{#3}}
\global\let\oldnewlabel\newlabel
\gdef\newlabel#1#2{\newlabelxx{#1}#2}
\gdef\newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}}
\AtEndDocument{\ifx\hyper@anchor\@undefined
\let\contentsline\oldcontentsline
\let\newlabel\oldnewlabel
\fi}
\fi}
\global\let\hyper@last\relax
\gdef\HyperFirstAtBeginDocument#1{#1}
\providecommand*\HyPL@Entry[1]{}
\HyPL@Entry{0<</S/r>>}
\providecommand\tcolorbox@label[2]{}
\select@language {english}
\@writefile{toc}{\select@language {english}}
\@writefile{lof}{\select@language {english}}
\@writefile{lot}{\select@language {english}}
\@writefile{toc}{\hypertarget {x:book:ads}{}}
\@writefile{toc}{\contentsline {chapter}{Acknowledgements}{vii}{chapter*.1}}
\newlabel{g:acknowledgement:idm40486802720}{{}{vii}{Acknowledgements}{chapter*.1}{}}
\@writefile{toc}{\contentsline {chapter}{Preface}{x}{chapter*.2}}
\newlabel{x:preface:ads-preface}{{}{x}{Preface}{chapter*.2}{}}
\HyPL@Entry{11<</S/D>>}
\@writefile{toc}{\contentsline {chapter}{\numberline {1}Set Theory}{1}{chapter.1}}
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\newlabel{x:chapter:chapter_1}{{1}{1}{Set Theory}{chapter.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {1.1}Set Notation and Relations}{1}{section.1.1}}
\newlabel{x:section:s-set-Notation-and-Relations}{{1.1}{1}{Set Notation and Relations}{section.1.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {1.1.1}The notion of a set}{1}{subsection.1.1.1}}
\newlabel{g:subsection:idm40462239120}{{1.1.1}{1}{The notion of a set}{subsection.1.1.1}{}}
\newlabel{g:notation:idm40462285344}{{1.1.1}{1}{The notion of a set}{subsection.1.1.1}{}}
\newlabel{g:notation:idm40462312592}{{1.1.1}{1}{The notion of a set}{subsection.1.1.1}{}}
\newlabel{x:definition:finite-set}{{1.1.1}{3}{The notion of a set}{section*.4}{}}
\newlabel{x:definition:cardinality}{{1.1.2}{3}{The notion of a set}{section*.5}{}}
\newlabel{g:notation:idm40462685200}{{1.1.1}{3}{The notion of a set}{section*.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {1.1.2}Subsets}{3}{subsection.1.1.2}}
\newlabel{x:subsection:ss-subsets}{{1.1.2}{3}{Subsets}{subsection.1.1.2}{}}
\newlabel{x:definition:def-subset}{{1.1.3}{3}{Subsets}{section*.6}{}}
\newlabel{g:notation:idm40462732704}{{1.1.2}{3}{Subsets}{section*.6}{}}
\newlabel{x:example:some-subsets}{{1.1.4}{3}{Subsets}{section*.7}{}}
\newlabel{x:definition:set-equality}{{1.1.5}{3}{Subsets}{section*.8}{}}
\newlabel{x:example:set-equality-examples}{{1.1.6}{3}{Subsets}{section*.9}{}}
\newlabel{g:notation:idm40470780464}{{1.1.2}{3}{Subsets}{Item.5}{}}
\newlabel{g:note:idm40470756416}{{1.1.7}{3}{Subsets}{section*.10}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {1.1.3}Exercises}{4}{subsection.1.1.3}}
\newlabel{g:exercises:idm40462720992}{{1.1.3}{4}{Exercises}{subsection.1.1.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {1.2}Basic Set Operations}{5}{section.1.2}}
\newlabel{x:section:s-basic_Set_Operations}{{1.2}{5}{Basic Set Operations}{section.1.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {1.2.1}Definitions}{5}{subsection.1.2.1}}
\newlabel{g:subsection:idm40471482576}{{1.2.1}{5}{Definitions}{subsection.1.2.1}{}}
\newlabel{x:definition:def-intersection}{{1.2.1}{5}{Definitions}{section*.11}{}}
\newlabel{g:notation:idm40471509184}{{1.2.1}{5}{Definitions}{section*.11}{}}
\newlabel{x:example:some_intersections}{{1.2.2}{5}{Definitions}{section*.12}{}}
\newlabel{x:definition:def-disjoint-sets}{{1.2.3}{5}{Definitions}{section*.13}{}}
\newlabel{x:definition:def-union}{{1.2.4}{5}{Definitions}{section*.14}{}}
\newlabel{g:notation:idm40486816848}{{1.2.1}{5}{Definitions}{section*.14}{}}
\newlabel{x:example:some_unions}{{1.2.5}{5}{Definitions}{section*.15}{}}
\newlabel{x:definition:universe}{{1.2.6}{5}{Definitions}{section*.16}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {1.2.2}Set Operations and their Venn Diagrams}{5}{subsection.1.2.2}}
\newlabel{g:subsection:idm40471484352}{{1.2.2}{5}{Set Operations and their Venn Diagrams}{subsection.1.2.2}{}}
\newlabel{x:example:venn_diagram_examples}{{1.2.7}{6}{Set Operations and their Venn Diagrams}{section*.17}{}}
\newlabel{x:figure:venn_diagram_intersection}{{1.2.8}{6}{Set Operations and their Venn Diagrams}{section*.18}{}}
\newlabel{x:figure:venn_diagram_union}{{1.2.9}{6}{Set Operations and their Venn Diagrams}{section*.19}{}}
\newlabel{x:definition:set_complement}{{1.2.10}{6}{Set Operations and their Venn Diagrams}{section*.20}{}}
\newlabel{g:notation:idm40463121216}{{1.2.2}{6}{Set Operations and their Venn Diagrams}{section*.20}{}}
\newlabel{g:notation:idm40470599920}{{1.2.2}{6}{Set Operations and their Venn Diagrams}{section*.20}{}}
\newlabel{x:figure:venn_diagram_complement1}{{1.2.11}{7}{Set Operations and their Venn Diagrams}{section*.21}{}}
\newlabel{x:example:complements}{{1.2.12}{7}{Set Operations and their Venn Diagrams}{section*.22}{}}
\newlabel{x:figure:venn_diagram_complement2}{{1.2.13}{7}{Set Operations and their Venn Diagrams}{section*.23}{}}
\newlabel{x:figure:venn_diagram_complement3}{{1.2.14}{8}{Set Operations and their Venn Diagrams}{section*.24}{}}
\newlabel{x:definition:symmetric-difference}{{1.2.15}{8}{Set Operations and their Venn Diagrams}{section*.25}{}}
\newlabel{g:notation:idm40486529680}{{1.2.2}{8}{Set Operations and their Venn Diagrams}{section*.25}{}}
\newlabel{x:example:some_symmetric_differences}{{1.2.16}{8}{Set Operations and their Venn Diagrams}{section*.26}{}}
\newlabel{x:figure:venn_diagram_symmetric}{{1.2.17}{8}{Set Operations and their Venn Diagrams}{section*.27}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {1.2.3}SageMath Note: Sets}{8}{subsection.1.2.3}}
\newlabel{x:subsection:Sage_Note_Sets-1-2}{{1.2.3}{8}{SageMath Note: Sets}{subsection.1.2.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {1.2.4}Exercises}{9}{subsection.1.2.4}}
\newlabel{x:exercises:exercises-1-2}{{1.2.4}{9}{Exercises}{subsection.1.2.4}{}}
\@writefile{toc}{\contentsline {section}{\numberline {1.3}Cartesian Products and Power Sets}{10}{section.1.3}}
\newlabel{x:section:s-cartesian_Products_and_Power_Sets}{{1.3}{10}{Cartesian Products and Power Sets}{section.1.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {1.3.1}Cartesian Products}{10}{subsection.1.3.1}}
\newlabel{x:subsection:Cartesian-products}{{1.3.1}{10}{Cartesian Products}{subsection.1.3.1}{}}
\newlabel{x:definition:cartesian-product}{{1.3.1}{10}{Cartesian Products}{section*.28}{}}
\newlabel{g:notation:idm40462957296}{{1.3.1}{10}{Cartesian Products}{section*.28}{}}
\newlabel{g:example:idm40462955632}{{1.3.2}{10}{Cartesian Products}{section*.29}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {1.3.2}Power Sets}{11}{subsection.1.3.2}}
\newlabel{x:subsection:power-sets}{{1.3.2}{11}{Power Sets}{subsection.1.3.2}{}}
\newlabel{x:definition:power-set}{{1.3.3}{11}{Power Sets}{section*.30}{}}
\newlabel{g:notation:idm40462942256}{{1.3.2}{11}{Power Sets}{section*.30}{}}
\newlabel{x:example:Some_Power_Sets}{{1.3.4}{11}{Power Sets}{section*.31}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {1.3.3}SageMath Note: Cartesian Products and Power Sets}{11}{subsection.1.3.3}}
\newlabel{x:subsection:Sage_Note_Sets-1-3}{{1.3.3}{11}{SageMath Note: Cartesian Products and Power Sets}{subsection.1.3.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {1.3.4}Exercises}{12}{subsection.1.3.4}}
\newlabel{x:exercises:exercises-1-3}{{1.3.4}{12}{Exercises}{subsection.1.3.4}{}}
\@writefile{toc}{\contentsline {section}{\numberline {1.4}Binary Representation of Positive Integers}{13}{section.1.4}}
\newlabel{x:section:s-binary_Representation_of_Positive_Integers}{{1.4}{13}{Binary Representation of Positive Integers}{section.1.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {1.4.1}Grouping by Twos}{13}{subsection.1.4.1}}
\newlabel{x:subsection:ss-grouping-by-twos}{{1.4.1}{13}{Grouping by Twos}{subsection.1.4.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {1.4.2}A Conversion Algorithm}{13}{subsection.1.4.2}}
\newlabel{x:subsection:ss-conversion-algorithm}{{1.4.2}{13}{A Conversion Algorithm}{subsection.1.4.2}{}}
\newlabel{x:example:An_example_of_conversion_to_binary}{{1.4.1}{14}{A Conversion Algorithm}{section*.32}{}}
\newlabel{x:algorithm:binary-conversion-algorithm}{{1.4.2}{14}{A Conversion Algorithm}{section*.33}{}}
\newlabel{x:figure:onetoten}{{1.4.3}{15}{A Conversion Algorithm}{section*.34}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {1.4.3}Exercises}{15}{subsection.1.4.3}}
\newlabel{x:exercises:exercises-1-4}{{1.4.3}{15}{Exercises}{subsection.1.4.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {1.5}Summation Notation and Generalizations}{16}{section.1.5}}
\newlabel{x:section:s-summation_Notation_and_Generalizations}{{1.5}{16}{Summation Notation and Generalizations}{section.1.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {1.5.1}Sums}{16}{subsection.1.5.1}}
\newlabel{x:subsection:ss-sums}{{1.5.1}{16}{Sums}{subsection.1.5.1}{}}
\newlabel{x:example:some_finite_series}{{1.5.1}{17}{Sums}{section*.35}{}}
\newlabel{x:example:more_finite_series}{{1.5.2}{17}{Sums}{section*.36}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {1.5.2}Generalizations}{17}{subsection.1.5.2}}
\newlabel{x:subsection:ss-generalizations}{{1.5.2}{17}{Generalizations}{subsection.1.5.2}{}}
\newlabel{x:definition:generalized-set-operations}{{1.5.3}{17}{Generalizations}{section*.37}{}}
\newlabel{x:example:some_generalized_operations}{{1.5.4}{17}{Generalizations}{section*.38}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {1.5.3}Exercises}{18}{subsection.1.5.3}}
\newlabel{x:exercises:exercises-1-5}{{1.5.3}{18}{Exercises}{subsection.1.5.3}{}}
\@writefile{toc}{\contentsline {chapter}{\numberline {2}Combinatorics}{20}{chapter.2}}
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\newlabel{x:chapter:chapter_2}{{2}{20}{Combinatorics}{chapter.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {2.1}Basic Counting Techniques - The Rule of Products}{20}{section.2.1}}
\newlabel{x:section:s-the-rule-of-products}{{2.1}{20}{Basic Counting Techniques - The Rule of Products}{section.2.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.1.1}What is Combinatorics?}{20}{subsection.2.1.1}}
\newlabel{x:subsection:What-is-Combinatorics}{{2.1.1}{20}{What is Combinatorics?}{subsection.2.1.1}{}}
\newlabel{x:example:lunch-possibilies1}{{2.1.1}{20}{What is Combinatorics?}{section*.39}{}}
\newlabel{x:figure:lunch}{{2.1.2}{21}{What is Combinatorics?}{section*.40}{}}
\newlabel{x:example:cartesian-cardinality}{{2.1.3}{21}{What is Combinatorics?}{section*.41}{}}
\newlabel{x:example:questionnaire}{{2.1.4}{21}{What is Combinatorics?}{section*.42}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.1.2}The Rule Of Products}{21}{subsection.2.1.2}}
\newlabel{x:subsection:rule-of-products}{{2.1.2}{21}{The Rule Of Products}{subsection.2.1.2}{}}
\newlabel{x:example:lunch-possibilites2}{{2.1.5}{22}{The Rule Of Products}{section*.43}{}}
\newlabel{x:example:another_questionnaire}{{2.1.6}{22}{The Rule Of Products}{section*.44}{}}
\newlabel{x:theorem:power-set-cardinality-theorem}{{2.1.7}{22}{The Rule Of Products}{section*.45}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.1.3}Exercises}{22}{subsection.2.1.3}}
\newlabel{x:exercises:EXERCISES-FOR-SECTION-2-1}{{2.1.3}{22}{Exercises}{subsection.2.1.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {2.2}Permutations}{24}{section.2.2}}
\newlabel{x:section:s-permutations}{{2.2}{24}{Permutations}{section.2.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.2.1}Ordering Things}{24}{subsection.2.2.1}}
\newlabel{g:subsection:idm40464852640}{{2.2.1}{24}{Ordering Things}{subsection.2.2.1}{}}
\newlabel{x:example:ordering_a_set}{{2.2.1}{24}{Ordering Things}{section*.46}{}}
\newlabel{x:figure:tree-of-permutations}{{2.2.2}{25}{Ordering Things}{section*.47}{}}
\newlabel{x:example:ordering_a_schedule}{{2.2.3}{25}{Ordering Things}{section*.48}{}}
\newlabel{x:example:some_orderings_of_a_baseball_team}{{2.2.4}{25}{Ordering Things}{section*.49}{}}
\newlabel{x:definition:Definition-Factorial}{{2.2.5}{25}{Ordering Things}{section*.50}{}}
\newlabel{g:notation:idm40464839344}{{2.2.1}{25}{Ordering Things}{section*.50}{}}
\newlabel{x:example:choosing-club-officers}{{2.2.6}{26}{Ordering Things}{section*.51}{}}
\newlabel{x:definition:permutation}{{2.2.7}{26}{Ordering Things}{section*.52}{}}
\newlabel{x:theorem:permutations-counting-formula}{{2.2.8}{26}{Ordering Things}{section*.53}{}}
\newlabel{x:example:more_club_officers}{{2.2.9}{26}{Ordering Things}{section*.54}{}}
\newlabel{x:example:course-ordering-revisited}{{2.2.10}{27}{Ordering Things}{section*.55}{}}
\newlabel{x:example:ordering-digits}{{2.2.11}{27}{Ordering Things}{section*.56}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.2.2}Exercises}{27}{subsection.2.2.2}}
\newlabel{g:exercises:idm40464852512}{{2.2.2}{27}{Exercises}{subsection.2.2.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {2.3}Partitions of Sets and the Law of Addition}{29}{section.2.3}}
\newlabel{x:section:s-partitions-and-law-of-addition}{{2.3}{29}{Partitions of Sets and the Law of Addition}{section.2.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.3.1}Partitions}{29}{subsection.2.3.1}}
\newlabel{g:subsection:idm40464767584}{{2.3.1}{29}{Partitions}{subsection.2.3.1}{}}
\newlabel{x:definition:partition}{{2.3.1}{29}{Partitions}{section*.57}{}}
\newlabel{x:example:some-partitions-4}{{2.3.2}{29}{Partitions}{section*.58}{}}
\newlabel{x:example:some-integer-partitions}{{2.3.3}{29}{Partitions}{section*.59}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.3.2}Addition Laws}{30}{subsection.2.3.2}}
\newlabel{g:subsection:idm40464747584}{{2.3.2}{30}{Addition Laws}{subsection.2.3.2}{}}
\newlabel{x:theorem:basic-law-addition}{{2.3.4}{30}{Addition Laws}{section*.60}{}}
\newlabel{x:example:counting-all-students}{{2.3.5}{30}{Addition Laws}{section*.61}{}}
\newlabel{x:example:student-counting-disjoint}{{2.3.6}{30}{Addition Laws}{section*.62}{}}
\newlabel{x:example:student-counting-nondisjoint}{{2.3.7}{30}{Addition Laws}{section*.63}{}}
\newlabel{x:figure:venn_diagram_CS_Students}{{2.3.8}{31}{Addition Laws}{section*.64}{}}
\newlabel{x:theorem:inclusion-exclusion}{{2.3.9}{31}{Addition Laws}{section*.65}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.3.3}Exercises}{32}{subsection.2.3.3}}
\newlabel{x:exercises:exercises-2-3}{{2.3.3}{32}{Exercises}{subsection.2.3.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {2.4}Combinations and the Binomial Theorem}{33}{section.2.4}}
\newlabel{x:section:s-combinations-and-the-binomial-theorem}{{2.4}{33}{Combinations and the Binomial Theorem}{section.2.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.4.1}Combinations}{33}{subsection.2.4.1}}
\newlabel{x:subsection:combinations}{{2.4.1}{33}{Combinations}{subsection.2.4.1}{}}
\newlabel{x:example:counting-permuations-multiple-ways}{{2.4.1}{33}{Combinations}{section*.66}{}}
\newlabel{x:example:four-choose-three}{{2.4.2}{33}{Combinations}{section*.67}{}}
\newlabel{x:definition:binomial-coefficient}{{2.4.3}{33}{Combinations}{section*.68}{}}
\newlabel{g:notation:idm40464672528}{{2.4.1}{33}{Combinations}{section*.68}{}}
\newlabel{x:theorem:binomial-coefficient-formula}{{2.4.4}{34}{Combinations}{section*.69}{}}
\newlabel{x:example:flipping-coins}{{2.4.5}{34}{Combinations}{section*.70}{}}
\newlabel{x:example:five-flips}{{2.4.6}{34}{Combinations}{section*.71}{}}
\newlabel{x:example:committee-of-five}{{2.4.7}{35}{Combinations}{section*.72}{}}
\newlabel{x:example:extreme-binomial-cases}{{2.4.8}{35}{Combinations}{section*.73}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.4.2}The Binomial Theorem}{35}{subsection.2.4.2}}
\newlabel{x:subsection:the-binomial-theorem}{{2.4.2}{35}{The Binomial Theorem}{subsection.2.4.2}{}}
\newlabel{x:theorem:binomial-theorem}{{2.4.9}{36}{The Binomial Theorem}{section*.74}{}}
\newlabel{x:example:term-in-an-expansion}{{2.4.10}{36}{The Binomial Theorem}{section*.75}{}}
\newlabel{x:example:a-full-expansion}{{2.4.11}{36}{The Binomial Theorem}{section*.76}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.4.3}SageMath Note}{36}{subsection.2.4.3}}
\newlabel{x:subsection:sage-bridge-hands}{{2.4.3}{36}{SageMath Note}{subsection.2.4.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.4.4}Exercises}{37}{subsection.2.4.4}}
\newlabel{x:exercises:exercises-2-4}{{2.4.4}{37}{Exercises}{subsection.2.4.4}{}}
\newlabel{x:figure:fig-lattice-path-6}{{2.4.12}{37}{Exercises}{section*.77}{}}
\@writefile{toc}{\contentsline {chapter}{\numberline {3}Logic}{39}{chapter.3}}
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\newlabel{x:chapter:chapter3}{{3}{39}{Logic}{chapter.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {3.1}Propositions and Logical Operators}{39}{section.3.1}}
\newlabel{x:section:s-propositions-logic-operators}{{3.1}{39}{Propositions and Logical Operators}{section.3.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.1.1}Propositions}{39}{subsection.3.1.1}}
\newlabel{x:subsection:ss-propositions}{{3.1.1}{39}{Propositions}{subsection.3.1.1}{}}
\newlabel{x:definition:def-proposition}{{3.1.1}{39}{Propositions}{section*.78}{}}
\newlabel{x:example:some-propositions}{{3.1.2}{39}{Propositions}{section*.79}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.1.2}Logical Operations}{40}{subsection.3.1.2}}
\newlabel{x:subsection:ss-logical-operations}{{3.1.2}{40}{Logical Operations}{subsection.3.1.2}{}}
\newlabel{x:definition:def-conjunction}{{3.1.3}{40}{Logical Operations}{section*.80}{}}
\newlabel{g:notation:idm40464534048}{{3.1.2}{40}{Logical Operations}{section*.80}{}}
\newlabel{x:definition:def-disjunction}{{3.1.4}{40}{Logical Operations}{section*.81}{}}
\newlabel{g:notation:idm40464517168}{{3.1.2}{40}{Logical Operations}{section*.81}{}}
\newlabel{x:definition:def-negation}{{3.1.5}{41}{Logical Operations}{section*.82}{}}
\newlabel{g:notation:idm40464512832}{{3.1.2}{41}{Logical Operations}{section*.82}{}}
\newlabel{x:definition:def-conditional}{{3.1.6}{41}{Logical Operations}{section*.83}{}}
\newlabel{g:notation:idm40464502880}{{3.1.2}{41}{Logical Operations}{section*.83}{}}
\newlabel{x:table:tt-conditional}{{3.1.7}{41}{Logical Operations}{section*.84}{}}
\newlabel{x:example:conditional-analysis}{{3.1.8}{41}{Logical Operations}{section*.85}{}}
\newlabel{x:definition:def-converse}{{3.1.9}{42}{Logical Operations}{section*.86}{}}
\newlabel{x:definition:def-contrapositive}{{3.1.10}{42}{Logical Operations}{section*.87}{}}
\newlabel{x:definition:def-biconditional}{{3.1.11}{42}{Logical Operations}{section*.88}{}}
\newlabel{g:notation:idm40464479504}{{3.1.2}{42}{Logical Operations}{section*.88}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.1.3}Exercises}{43}{subsection.3.1.3}}
\newlabel{x:exercises:exercises-3-1}{{3.1.3}{43}{Exercises}{subsection.3.1.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {3.2}Truth Tables and Propositions Generated by a Set}{44}{section.3.2}}
\newlabel{x:section:s-truth-tables}{{3.2}{44}{Truth Tables and Propositions Generated by a Set}{section.3.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.2.1}Truth Tables}{44}{subsection.3.2.1}}
\newlabel{x:subsection:truth-tables}{{3.2.1}{44}{Truth Tables}{subsection.3.2.1}{}}
\newlabel{x:table:tt32-1}{{3.2.1}{44}{Truth Tables}{section*.89}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.2.2}Propositions Generated by a Set}{44}{subsection.3.2.2}}
\newlabel{x:subsection:proposition-generated-by-set}{{3.2.2}{44}{Propositions Generated by a Set}{subsection.3.2.2}{}}
\newlabel{x:definition:def-proposition-generated-by-set}{{3.2.2}{44}{Propositions Generated by a Set}{section*.90}{}}
\newlabel{x:example:hierarchy-examples}{{3.2.3}{45}{Propositions Generated by a Set}{section*.91}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.2.3}Exercises}{45}{subsection.3.2.3}}
\newlabel{x:exercises:exercises-3-2}{{3.2.3}{45}{Exercises}{subsection.3.2.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {3.3}Equivalence and Implication}{46}{section.3.3}}
\newlabel{x:section:s-equivalence-implication}{{3.3}{46}{Equivalence and Implication}{section.3.3}{}}
\newlabel{x:table:tt33-1}{{3.3.1}{46}{Equivalence and Implication}{section*.92}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.3.1}Tautologies and Contradictions}{46}{subsection.3.3.1}}
\newlabel{x:subsection:tautology-contradiction}{{3.3.1}{46}{Tautologies and Contradictions}{subsection.3.3.1}{}}
\newlabel{x:definition:def-tautology}{{3.3.2}{46}{Tautologies and Contradictions}{section*.93}{}}
\newlabel{g:notation:idm40464311328}{{3.3.1}{46}{Tautologies and Contradictions}{section*.93}{}}
\newlabel{x:example:some-tautologies}{{3.3.3}{46}{Tautologies and Contradictions}{section*.94}{}}
\newlabel{x:definition:def-contradiction}{{3.3.4}{46}{Tautologies and Contradictions}{section*.95}{}}
\newlabel{g:notation:idm40464304592}{{3.3.1}{46}{Tautologies and Contradictions}{section*.95}{}}
\newlabel{x:example:some-contradictions}{{3.3.5}{46}{Tautologies and Contradictions}{section*.96}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.3.2}Equivalence}{47}{subsection.3.3.2}}
\newlabel{g:subsection:idm40464301040}{{3.3.2}{47}{Equivalence}{subsection.3.3.2}{}}
\newlabel{x:definition:def-equivalence}{{3.3.6}{47}{Equivalence}{section*.97}{}}
\newlabel{g:notation:idm40464300176}{{3.3.2}{47}{Equivalence}{section*.97}{}}
\newlabel{x:example:ex-some-equivalences}{{3.3.7}{47}{Equivalence}{section*.98}{}}
\newlabel{x:example:equivalence_to_1}{{3.3.8}{47}{Equivalence}{section*.99}{}}
\newlabel{x:example:equivalence_to_0}{{3.3.9}{47}{Equivalence}{section*.100}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.3.3}Implication}{47}{subsection.3.3.3}}
\newlabel{g:subsection:idm40464285712}{{3.3.3}{47}{Implication}{subsection.3.3.3}{}}
\newlabel{g:table:idm40464284944}{{3.3.10}{47}{Implication}{section*.101}{}}
\newlabel{x:definition:def-implication}{{3.3.11}{47}{Implication}{section*.102}{}}
\newlabel{g:notation:idm40464274704}{{3.3.3}{47}{Implication}{section*.102}{}}
\newlabel{x:example:ex-disjunctive-addition}{{3.3.12}{47}{Implication}{section*.103}{}}
\newlabel{x:table:tt-disjunctive-addition}{{3.3.13}{48}{Implication}{section*.104}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.3.4}A Universal Operation}{48}{subsection.3.3.4}}
\newlabel{g:subsection:idm40464285488}{{3.3.4}{48}{A Universal Operation}{subsection.3.3.4}{}}
\newlabel{x:definition:def-scheffer}{{3.3.14}{48}{A Universal Operation}{section*.105}{}}
\newlabel{g:notation:idm40464250704}{{3.3.4}{48}{A Universal Operation}{section*.105}{}}
\newlabel{x:table:tt-scheffer}{{3.3.15}{48}{A Universal Operation}{section*.106}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.3.5}Exercises}{48}{subsection.3.3.5}}
\newlabel{x:exercises:exercises-3-3}{{3.3.5}{48}{Exercises}{subsection.3.3.5}{}}
\@writefile{toc}{\contentsline {section}{\numberline {3.4}The Laws of Logic}{49}{section.3.4}}
\newlabel{x:section:s-logic-laws}{{3.4}{49}{The Laws of Logic}{section.3.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.4.1}}{49}{subsection.3.4.1}}
\newlabel{g:subsection:idm40461042064}{{3.4.1}{49}{}{subsection.3.4.1}{}}
\newlabel{x:example:ex-identity-and}{{3.4.1}{49}{}{section*.107}{}}
\newlabel{x:table:tt-identity-and}{{3.4.2}{49}{}{section*.108}{}}
\newlabel{x:table:table-equivalences}{{3.4.3}{50}{}{section*.109}{}}
\newlabel{x:table:table-implications}{{3.4.4}{50}{}{section*.110}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.4.2}Exercises}{50}{subsection.3.4.2}}
\newlabel{x:exercises:exercises-3-4}{{3.4.2}{50}{Exercises}{subsection.3.4.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {3.5}Mathematical Systems and Proofs}{51}{section.3.5}}
\newlabel{x:section:s-math-systems}{{3.5}{51}{Mathematical Systems and Proofs}{section.3.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.5.1}Mathematical Systems}{51}{subsection.3.5.1}}
\newlabel{g:subsection:idm40460971056}{{3.5.1}{51}{Mathematical Systems}{subsection.3.5.1}{}}
\newlabel{x:definition:def-mathematical-system}{{3.5.1}{51}{Mathematical Systems}{section*.111}{}}
\newlabel{x:example:ex-euclidean-geometry}{{3.5.2}{51}{Mathematical Systems}{section*.112}{}}
\newlabel{x:example:ex-propositional-calculus}{{3.5.3}{51}{Mathematical Systems}{section*.113}{}}
\newlabel{x:definition:def-theorem}{{3.5.4}{51}{Mathematical Systems}{section*.114}{}}
\newlabel{x:figure:knowledge-pyramid}{{3.5.5}{52}{Mathematical Systems}{section*.115}{}}
\newlabel{x:definition:def-proof}{{3.5.6}{52}{Mathematical Systems}{section*.116}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.5.2}Direct Proof}{52}{subsection.3.5.2}}
\newlabel{g:subsection:idm40460952736}{{3.5.2}{52}{Direct Proof}{subsection.3.5.2}{}}
\newlabel{x:example:proof-3-5-1}{{3.5.7}{53}{Direct Proof}{section*.117}{}}
\newlabel{x:table:proof-steps-1}{{3.5.8}{53}{Direct Proof}{section*.118}{}}
\newlabel{x:example:proof-3-5-2}{{3.5.9}{53}{Direct Proof}{section*.119}{}}
\newlabel{x:table:proof-steps-2}{{3.5.10}{54}{Direct Proof}{section*.120}{}}
\newlabel{x:table:proof-steps-2a}{{3.5.11}{54}{Direct Proof}{section*.121}{}}
\newlabel{x:example:ex-conditinal-conclusion}{{3.5.12}{54}{Direct Proof}{section*.122}{}}
\newlabel{x:table:proof-conditional-conclusion}{{3.5.13}{54}{Direct Proof}{section*.123}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.5.3}Indirect Proof}{54}{subsection.3.5.3}}
\newlabel{x:subsection:sub-indirect-proof}{{3.5.3}{54}{Indirect Proof}{subsection.3.5.3}{}}
\newlabel{x:example:ex-indirect_proof_1}{{3.5.14}{55}{Indirect Proof}{section*.124}{}}
\newlabel{x:table:proof-indirect}{{3.5.15}{55}{Indirect Proof}{section*.125}{}}
\newlabel{g:note:idm40460888688}{{3.5.16}{55}{Indirect Proof}{section*.126}{}}
\newlabel{x:example:proof-yet-another}{{3.5.17}{55}{Indirect Proof}{section*.127}{}}
\newlabel{x:table:proof-style}{{3.5.18}{55}{Indirect Proof}{section*.128}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.5.4}Exercises}{55}{subsection.3.5.4}}
\newlabel{x:exercises:exercises-3-5}{{3.5.4}{55}{Exercises}{subsection.3.5.4}{}}
\@writefile{toc}{\contentsline {section}{\numberline {3.6}Propositions over a Universe}{56}{section.3.6}}
\newlabel{x:section:s-propositions-over-universe}{{3.6}{56}{Propositions over a Universe}{section.3.6}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.6.1}Propositions over a Universe}{56}{subsection.3.6.1}}
\newlabel{x:subsection:ss-propositions-over-a-universe}{{3.6.1}{56}{Propositions over a Universe}{subsection.3.6.1}{}}
\newlabel{x:definition:def-proposition-over-U}{{3.6.1}{56}{Propositions over a Universe}{section*.129}{}}
\newlabel{x:example:ex-some-propositions-over-U}{{3.6.2}{56}{Propositions over a Universe}{section*.130}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.6.2}Truth Sets}{57}{subsection.3.6.2}}
\newlabel{x:subsection:ss-truth-sets}{{3.6.2}{57}{Truth Sets}{subsection.3.6.2}{}}
\newlabel{x:definition:def-truth-set}{{3.6.3}{57}{Truth Sets}{section*.131}{}}
\newlabel{g:notation:idm40472291488}{{3.6.2}{57}{Truth Sets}{section*.131}{}}
\newlabel{x:example:ex-set-prop}{{3.6.4}{57}{Truth Sets}{section*.132}{}}
\newlabel{x:example:ex-vary-U}{{3.6.5}{57}{Truth Sets}{section*.133}{}}
\newlabel{x:definition:def-tautology-contradiction-over-U}{{3.6.6}{57}{Truth Sets}{section*.134}{}}
\newlabel{x:example:ex-tautology-contradiction-over-U}{{3.6.7}{57}{Truth Sets}{section*.135}{}}
\newlabel{x:table:table-truth-sets-compound-statements}{{3.6.8}{57}{Truth Sets}{section*.136}{}}
\newlabel{x:definition:def-equivanlence-over-U}{{3.6.9}{57}{Truth Sets}{section*.137}{}}
\newlabel{x:example:ex-some-equivalent-pairs}{{3.6.10}{58}{Truth Sets}{section*.138}{}}
\newlabel{x:definition:def-implication-over-U}{{3.6.11}{58}{Truth Sets}{section*.139}{}}
\newlabel{x:figure:venn_diagram_truth_set_conditional}{{3.6.12}{58}{Truth Sets}{section*.140}{}}
\newlabel{x:example:ex-implications-over-U}{{3.6.13}{58}{Truth Sets}{section*.141}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.6.3}Exercises}{58}{subsection.3.6.3}}
\newlabel{x:exercises:exercises-3-6}{{3.6.3}{58}{Exercises}{subsection.3.6.3}{}}
\newlabel{g:table:idm40474190080}{{3.6.14}{59}{Exercises}{section*.142}{}}
\newlabel{g:table:idm40474324816}{{3.6.15}{59}{Exercises}{section*.143}{}}
\newlabel{g:table:idm40474440752}{{3.6.16}{59}{Exercises}{section*.144}{}}
\@writefile{toc}{\contentsline {section}{\numberline {3.7}Mathematical Induction}{59}{section.3.7}}
\newlabel{x:section:s-induction}{{3.7}{59}{Mathematical Induction}{section.3.7}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.7.1}Introduction, First Example}{59}{subsection.3.7.1}}
\newlabel{g:subsection:idm40474509760}{{3.7.1}{59}{Introduction, First Example}{subsection.3.7.1}{}}
\newlabel{x:example:ex-triangular-numbers}{{3.7.1}{59}{Introduction, First Example}{section*.145}{}}
\newlabel{x:figure:dominos}{{3.7.2}{60}{Introduction, First Example}{section*.146}{}}
\newlabel{x:theorem:th-math-induction-basic}{{3.7.3}{61}{Introduction, First Example}{section*.147}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.7.2}More Examples}{61}{subsection.3.7.2}}
\newlabel{g:subsection:idm40472811344}{{3.7.2}{61}{More Examples}{subsection.3.7.2}{}}
\newlabel{x:example:ex-logic-detachment}{{3.7.4}{61}{More Examples}{section*.148}{}}
\newlabel{x:table:table-general-detachment}{{3.7.5}{62}{More Examples}{section*.149}{}}
\newlabel{x:example:ex-number-theory-3s}{{3.7.6}{62}{More Examples}{section*.150}{}}
\newlabel{x:theorem:th-math-induction-generalized}{{3.7.7}{62}{More Examples}{section*.151}{}}
\newlabel{x:example:ex-permuations-formula-proof}{{3.7.8}{62}{More Examples}{section*.152}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.7.3}Course of Values Induction}{63}{subsection.3.7.3}}
\newlabel{g:subsection:idm40473467600}{{3.7.3}{63}{Course of Values Induction}{subsection.3.7.3}{}}
\newlabel{x:theorem:th-math-induction-course-of-values}{{3.7.9}{63}{Course of Values Induction}{section*.153}{}}
\newlabel{x:theorem:th-prime-factorizations-exist}{{3.7.10}{63}{Course of Values Induction}{section*.154}{}}
\newlabel{x:historical:history-peano}{{3.7.3}{64}{Course of Values Induction}{section*.155}{}}
\newlabel{x:axiom:sss-peano-postulates}{{3.7.11}{64}{Course of Values Induction}{section*.156}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.7.4}Exercises}{64}{subsection.3.7.4}}
\newlabel{x:exercises:exercises-3-7}{{3.7.4}{64}{Exercises}{subsection.3.7.4}{}}
\@writefile{toc}{\contentsline {section}{\numberline {3.8}Quantifiers}{65}{section.3.8}}
\newlabel{x:section:s-quantifiers}{{3.8}{65}{Quantifiers}{section.3.8}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.8.1}The Existential Quantifier}{66}{subsection.3.8.1}}
\newlabel{x:subsection:ss-existential}{{3.8.1}{66}{The Existential Quantifier}{subsection.3.8.1}{}}
\newlabel{x:definition:def-exist-quantifier}{{3.8.1}{66}{The Existential Quantifier}{section*.157}{}}
\newlabel{g:notation:idm40466442096}{{3.8.1}{66}{The Existential Quantifier}{section*.157}{}}
\newlabel{x:example:ex-existential-misc}{{3.8.2}{66}{The Existential Quantifier}{section*.158}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.8.2}The Universal Quantifier}{66}{subsection.3.8.2}}
\newlabel{x:subsection:ss-universal-quantifier}{{3.8.2}{66}{The Universal Quantifier}{subsection.3.8.2}{}}
\newlabel{x:definition:def-universal-quantifier}{{3.8.3}{66}{The Universal Quantifier}{section*.159}{}}
\newlabel{g:notation:idm40466640096}{{3.8.2}{66}{The Universal Quantifier}{section*.159}{}}
\newlabel{x:example:ex-universal-misc}{{3.8.4}{66}{The Universal Quantifier}{section*.160}{}}
\newlabel{x:table:table-quantifier-variations}{{3.8.5}{66}{The Universal Quantifier}{section*.161}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.8.3}The Negation of Quantified Propositions}{66}{subsection.3.8.3}}
\newlabel{x:subsection:ss-negated-quantifiers}{{3.8.3}{66}{The Negation of Quantified Propositions}{subsection.3.8.3}{}}
\newlabel{x:example:ex-negated-existential}{{3.8.6}{67}{The Negation of Quantified Propositions}{section*.162}{}}
\newlabel{x:table:table-quantifier-negation}{{3.8.7}{67}{The Negation of Quantified Propositions}{section*.163}{}}
\newlabel{x:example:ex-more-negated-quantifiers}{{3.8.8}{67}{The Negation of Quantified Propositions}{section*.164}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.8.4}Multiple Quantifiers}{67}{subsection.3.8.4}}
\newlabel{x:subsection:ss-multiple-quantifiers}{{3.8.4}{67}{Multiple Quantifiers}{subsection.3.8.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.8.5}Exercises}{68}{subsection.3.8.5}}
\newlabel{x:exercises:exercises-3-8}{{3.8.5}{68}{Exercises}{subsection.3.8.5}{}}
\@writefile{toc}{\contentsline {section}{\numberline {3.9}A Review of Methods of Proof}{69}{section.3.9}}
\newlabel{x:section:s-proof-review}{{3.9}{69}{A Review of Methods of Proof}{section.3.9}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.9.1}Key Concepts in Proof}{70}{subsection.3.9.1}}
\newlabel{x:subsection:ss-proof-concepts}{{3.9.1}{70}{Key Concepts in Proof}{subsection.3.9.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.9.2}The Art of Proving \(P \Rightarrow C\)}{70}{subsection.3.9.2}}
\newlabel{x:subsection:ss-art-of-proving-ifpthenq}{{3.9.2}{70}{The Art of Proving \(P \Rightarrow C\)}{subsection.3.9.2}{}}
\newlabel{x:example:ex-sumsofodds}{{3.9.1}{71}{The Art of Proving \(P \Rightarrow C\)}{section*.165}{}}
\newlabel{x:example:ex-squares-of-evens}{{3.9.2}{71}{The Art of Proving \(P \Rightarrow C\)}{section*.166}{}}
\newlabel{x:example:ex-sqrt-2-irrational}{{3.9.3}{71}{The Art of Proving \(P \Rightarrow C\)}{section*.167}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.9.3}Exercises}{72}{subsection.3.9.3}}
\newlabel{x:exercises:exercises-3-9}{{3.9.3}{72}{Exercises}{subsection.3.9.3}{}}
\@writefile{toc}{\contentsline {chapter}{\numberline {4}More on Sets}{73}{chapter.4}}
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\newlabel{x:chapter:chapter_4}{{4}{73}{More on Sets}{chapter.4}{}}
\@writefile{toc}{\contentsline {section}{\numberline {4.1}Methods of Proof for Sets}{73}{section.4.1}}
\newlabel{x:section:s-proof-methods-sets}{{4.1}{73}{Methods of Proof for Sets}{section.4.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.1.1}Examples and Counterexamples}{73}{subsection.4.1.1}}
\newlabel{x:subsection:ss-examples-and-counterexamples}{{4.1.1}{73}{Examples and Counterexamples}{subsection.4.1.1}{}}
\newlabel{x:definition:def-counterexample}{{4.1.1}{73}{Examples and Counterexamples}{section*.168}{}}
\newlabel{x:example:ex-addition-over-mult}{{4.1.2}{73}{Examples and Counterexamples}{section*.169}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.1.2}Proof Using Venn Diagrams}{74}{subsection.4.1.2}}
\newlabel{x:subsection:ss-venn-proofs}{{4.1.2}{74}{Proof Using Venn Diagrams}{subsection.4.1.2}{}}
\newlabel{x:figure:distrib-venn-lhs}{{4.1.3}{74}{Proof Using Venn Diagrams}{section*.170}{}}
\newlabel{x:figure:distrib-venn-rhs}{{4.1.4}{74}{Proof Using Venn Diagrams}{section*.171}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.1.3}Proof using Set-membership Tables}{75}{subsection.4.1.3}}
\newlabel{x:subsection:ss-membership-table-proof}{{4.1.3}{75}{Proof using Set-membership Tables}{subsection.4.1.3}{}}
\newlabel{x:table:mt-union}{{4.1.5}{75}{Proof using Set-membership Tables}{section*.172}{}}
\newlabel{x:table:tab-mt-distr}{{4.1.6}{75}{Proof using Set-membership Tables}{section*.173}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.1.4}Proof Using Definitions}{75}{subsection.4.1.4}}
\newlabel{x:subsection:ss-proofs-using-definitions-sets}{{4.1.4}{75}{Proof Using Definitions}{subsection.4.1.4}{}}
\newlabel{x:theorem:th-distr-law-i-over-u}{{4.1.7}{76}{Proof Using Definitions}{section*.174}{}}
\newlabel{x:theorem:th-set-proof-example2}{{4.1.8}{77}{Proof Using Definitions}{section*.175}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.1.5}Exercises}{77}{subsection.4.1.5}}
\newlabel{g:exercises:idm40460626576}{{4.1.5}{77}{Exercises}{subsection.4.1.5}{}}
\@writefile{toc}{\contentsline {section}{\numberline {4.2}Laws of Set Theory}{78}{section.4.2}}
\newlabel{x:section:s-laws-of-set-theory}{{4.2}{78}{Laws of Set Theory}{section.4.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.2.1}Tables of Laws}{78}{subsection.4.2.1}}
\newlabel{g:subsection:idm40460562864}{{4.2.1}{78}{Tables of Laws}{subsection.4.2.1}{}}
\newlabel{x:table:table-set-laws}{{4.2.1}{79}{Tables of Laws}{section*.176}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.2.2}Proof Using Previously Proven Theorems}{79}{subsection.4.2.2}}
\newlabel{x:subsection:ss-proof-with-theorems}{{4.2.2}{79}{Proof Using Previously Proven Theorems}{subsection.4.2.2}{}}
\newlabel{x:corollary:th-corollary-to-distr}{{4.2.2}{79}{Proof Using Previously Proven Theorems}{section*.177}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.2.3}Proof Using the Indirect Method/\penalty \exhyphenpenalty {}Contradiction}{79}{subsection.4.2.3}}
\newlabel{x:subsection:ss-proof-sets-contradiction}{{4.2.3}{79}{Proof Using the Indirect Method\slash {}Contradiction}{subsection.4.2.3}{}}
\newlabel{x:theorem:theorem-example-sets-contradiction}{{4.2.3}{80}{Proof Using the Indirect Method\slash {}Contradiction}{section*.178}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.2.4}Exercises}{80}{subsection.4.2.4}}
\newlabel{x:exercises:exer-4-2}{{4.2.4}{80}{Exercises}{subsection.4.2.4}{}}
\newlabel{x:table:tt-conditional-proof}{{4.2.4}{81}{Exercises}{section*.179}{}}
\@writefile{toc}{\contentsline {section}{\numberline {4.3}Minsets}{81}{section.4.3}}
\newlabel{x:section:s-minsets}{{4.3}{81}{Minsets}{section.4.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.3.1}Definition of Minsets}{81}{subsection.4.3.1}}
\newlabel{g:subsection:idm40460468080}{{4.3.1}{81}{Definition of Minsets}{subsection.4.3.1}{}}
\newlabel{x:figure:fig-minsets-2}{{4.3.1}{81}{Definition of Minsets}{section*.180}{}}
\newlabel{x:table:tab-minsets-2}{{4.3.2}{82}{Definition of Minsets}{section*.181}{}}
\newlabel{x:table:tab-some-minsets-3}{{4.3.3}{82}{Definition of Minsets}{section*.182}{}}
\newlabel{x:definition:def-Minset}{{4.3.4}{82}{Definition of Minsets}{section*.183}{}}
\newlabel{x:example:ex-minset-example}{{4.3.5}{82}{Definition of Minsets}{section*.184}{}}
\newlabel{x:table:tab-subsets-generated-1}{{4.3.6}{82}{Definition of Minsets}{section*.185}{}}
\newlabel{x:table:tab-subsets-generated-2}{{4.3.7}{82}{Definition of Minsets}{section*.186}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.3.2}Properties of Minsets}{83}{subsection.4.3.2}}
\newlabel{g:subsection:idm40460467952}{{4.3.2}{83}{Properties of Minsets}{subsection.4.3.2}{}}
\newlabel{x:theorem:th-minset-partition}{{4.3.8}{83}{Properties of Minsets}{section*.187}{}}
\newlabel{x:definition:def-minset-normal-form}{{4.3.9}{83}{Properties of Minsets}{section*.188}{}}
\newlabel{x:example:ex-concrete-minsets-2}{{4.3.10}{83}{Properties of Minsets}{section*.189}{}}
\newlabel{g:table:idm40460398208}{{4.3.11}{83}{Properties of Minsets}{section*.190}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.3.3}Exercises}{83}{subsection.4.3.3}}
\newlabel{x:exercises:exercises-4-3}{{4.3.3}{83}{Exercises}{subsection.4.3.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {4.4}The Duality Principle}{84}{section.4.4}}
\newlabel{x:section:s-duality-principle}{{4.4}{84}{The Duality Principle}{section.4.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.4.1}}{84}{subsection.4.4.1}}
\newlabel{g:subsection:idm40460331440}{{4.4.1}{84}{}{subsection.4.4.1}{}}
\newlabel{x:definition:def-duality-sets}{{4.4.1}{84}{}{section*.191}{}}
\newlabel{x:example:ex-dual-example}{{4.4.2}{85}{}{section*.192}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.4.2}Exercises}{85}{subsection.4.4.2}}
\newlabel{x:exercises:exer-4-4}{{4.4.2}{85}{Exercises}{subsection.4.4.2}{}}
\@writefile{toc}{\contentsline {chapter}{\numberline {5}Introduction to Matrix Algebra}{86}{chapter.5}}
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\newlabel{x:chapter:chapter_5}{{5}{86}{Introduction to Matrix Algebra}{chapter.5}{}}
\@writefile{toc}{\contentsline {section}{\numberline {5.1}Basic Definitions and Operations}{86}{section.5.1}}
\newlabel{x:section:s-basic-matrix-definitions}{{5.1}{86}{Basic Definitions and Operations}{section.5.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.1.1}Matrix Order and Equality}{86}{subsection.5.1.1}}
\newlabel{x:subsection:ss-order-equality}{{5.1.1}{86}{Matrix Order and Equality}{subsection.5.1.1}{}}
\newlabel{x:definition:def-matrix}{{5.1.1}{86}{Matrix Order and Equality}{section*.193}{}}
\newlabel{x:definition:def-matrix-order}{{5.1.2}{87}{Matrix Order and Equality}{section*.194}{}}
\newlabel{x:example:example-orders-of-matrices}{{5.1.3}{87}{Matrix Order and Equality}{section*.195}{}}
\newlabel{x:definition:def-matrix-equality}{{5.1.4}{87}{Matrix Order and Equality}{section*.196}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.1.2}Matrix Addition and Scalar Multiplication}{87}{subsection.5.1.2}}
\newlabel{x:subsection:ss-matrix-addition-scalarmult}{{5.1.2}{87}{Matrix Addition and Scalar Multiplication}{subsection.5.1.2}{}}
\newlabel{x:definition:def-matrix-addition}{{5.1.5}{88}{Matrix Addition and Scalar Multiplication}{section*.197}{}}
\newlabel{x:example:ex-scalar-mult}{{5.1.6}{88}{Matrix Addition and Scalar Multiplication}{section*.198}{}}
\newlabel{x:definition:def-scalar-multiplication}{{5.1.7}{88}{Matrix Addition and Scalar Multiplication}{section*.199}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.1.3}Matrix Multiplication}{88}{subsection.5.1.3}}
\newlabel{x:subsection:ss-matrix-multiplication}{{5.1.3}{88}{Matrix Multiplication}{subsection.5.1.3}{}}
\newlabel{x:definition:def-matrix-multiplication}{{5.1.8}{88}{Matrix Multiplication}{section*.200}{}}
\newlabel{x:figure:fig-one-matrix-product-entry}{{5.1.9}{89}{Matrix Multiplication}{section*.201}{}}
\newlabel{x:example:ex-matrix-product}{{5.1.10}{89}{Matrix Multiplication}{section*.202}{}}
\newlabel{x:example:ex-diagonal-product}{{5.1.11}{90}{Matrix Multiplication}{section*.203}{}}
\newlabel{g:notation:idm40484334432}{{5.1.3}{90}{Matrix Multiplication}{section*.203}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.1.4}Exercises}{90}{subsection.5.1.4}}
\newlabel{x:exercises:exercises-5-1}{{5.1.4}{90}{Exercises}{subsection.5.1.4}{}}
\@writefile{toc}{\contentsline {section}{\numberline {5.2}Special Types of Matrices}{92}{section.5.2}}
\newlabel{x:section:s-special-matrices}{{5.2}{92}{Special Types of Matrices}{section.5.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.2.1}Diagonal Matrices}{92}{subsection.5.2.1}}
\newlabel{g:subsection:idm40484989088}{{5.2.1}{92}{Diagonal Matrices}{subsection.5.2.1}{}}
\newlabel{x:definition:def-diagonal-matrix}{{5.2.1}{92}{Diagonal Matrices}{section*.204}{}}
\newlabel{x:example:example-diagonal-matrices}{{5.2.2}{92}{Diagonal Matrices}{section*.205}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.2.2}The Identity Matrix and Matrix Inverses}{93}{subsection.5.2.2}}
\newlabel{g:subsection:idm40485034768}{{5.2.2}{93}{The Identity Matrix and Matrix Inverses}{subsection.5.2.2}{}}
\newlabel{x:example:ex-matrix-identity-product}{{5.2.3}{93}{The Identity Matrix and Matrix Inverses}{section*.206}{}}
\newlabel{x:definition:def-identity-matrix}{{5.2.4}{93}{The Identity Matrix and Matrix Inverses}{section*.207}{}}
\newlabel{g:notation:idm40485783136}{{5.2.2}{93}{The Identity Matrix and Matrix Inverses}{section*.207}{}}
\newlabel{x:definition:def-matrix-inverse}{{5.2.5}{93}{The Identity Matrix and Matrix Inverses}{section*.208}{}}
\newlabel{g:notation:idm40485529072}{{5.2.2}{93}{The Identity Matrix and Matrix Inverses}{section*.208}{}}
\newlabel{x:theorem:theorem-unique-inverse}{{5.2.6}{93}{The Identity Matrix and Matrix Inverses}{section*.209}{}}
\newlabel{x:definition:determinant-2by2}{{5.2.7}{94}{The Identity Matrix and Matrix Inverses}{section*.210}{}}
\newlabel{g:notation:idm40475342784}{{5.2.2}{94}{The Identity Matrix and Matrix Inverses}{section*.210}{}}
\newlabel{x:example:ex-some-determinants}{{5.2.8}{94}{The Identity Matrix and Matrix Inverses}{section*.211}{}}
\newlabel{x:theorem:theorem-inverse-two-by-two}{{5.2.9}{94}{The Identity Matrix and Matrix Inverses}{section*.212}{}}
\newlabel{x:example:ex-finding-inverses}{{5.2.10}{94}{The Identity Matrix and Matrix Inverses}{section*.213}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.2.3}Exercises}{95}{subsection.5.2.3}}
\newlabel{x:exercises:exercises-5-4}{{5.2.3}{95}{Exercises}{subsection.5.2.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {5.3}Laws of Matrix Algebra}{96}{section.5.3}}
\newlabel{x:section:s-laws-of-matrix-algebra}{{5.3}{96}{Laws of Matrix Algebra}{section.5.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.3.1}The Laws}{96}{subsection.5.3.1}}
\newlabel{g:subsection:idm40475351296}{{5.3.1}{96}{The Laws}{subsection.5.3.1}{}}
\newlabel{x:table:table-matrix-laws}{{5.3.1}{96}{The Laws}{section*.214}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.3.2}Commentary}{96}{subsection.5.3.2}}
\newlabel{g:subsection:idm40485219216}{{5.3.2}{96}{Commentary}{subsection.5.3.2}{}}
\newlabel{x:example:ex-statement-precise}{{5.3.2}{96}{Commentary}{section*.215}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.3.3}Exercises}{97}{subsection.5.3.3}}
\newlabel{x:exercises:exercises-5-5}{{5.3.3}{97}{Exercises}{subsection.5.3.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {5.4}Matrix Oddities}{97}{section.5.4}}
\newlabel{x:section:s-matrix-oddities}{{5.4}{97}{Matrix Oddities}{section.5.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.4.1}Dissimilarities with elementary algebra}{97}{subsection.5.4.1}}
\newlabel{g:subsection:idm40464136608}{{5.4.1}{97}{Dissimilarities with elementary algebra}{subsection.5.4.1}{}}
\newlabel{g:table:idm40464134128}{{5.4.1}{98}{Dissimilarities with elementary algebra}{section*.216}{}}
\newlabel{x:observation:ss-matrix-oddities}{{5.4.2}{98}{Dissimilarities with elementary algebra}{section*.217}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.4.2}Exercises}{98}{subsection.5.4.2}}
\newlabel{x:exercises:exercises-5-6}{{5.4.2}{98}{Exercises}{subsection.5.4.2}{}}
\@writefile{toc}{\contentsline {chapter}{\numberline {6}Relations}{100}{chapter.6}}
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\newlabel{x:chapter:chapter_6}{{6}{100}{Relations}{chapter.6}{}}
\@writefile{toc}{\contentsline {section}{\numberline {6.1}Basic Definitions}{100}{section.6.1}}
\newlabel{x:section:s-basic-definitions}{{6.1}{100}{Basic Definitions}{section.6.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.1.1}Relations between two sets}{100}{subsection.6.1.1}}
\newlabel{g:subsection:idm40475057344}{{6.1.1}{100}{Relations between two sets}{subsection.6.1.1}{}}
\newlabel{x:definition:Relation}{{6.1.1}{100}{Relations between two sets}{section*.218}{}}
\newlabel{x:example:ex-simple-relation}{{6.1.2}{100}{Relations between two sets}{section*.219}{}}
\newlabel{x:example:ex-divides-example}{{6.1.3}{101}{Relations between two sets}{section*.220}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.1.2}Relations on a Set}{101}{subsection.6.1.2}}
\newlabel{g:subsection:idm40475046720}{{6.1.2}{101}{Relations on a Set}{subsection.6.1.2}{}}
\newlabel{x:definition:relation-on-a-set}{{6.1.4}{101}{Relations on a Set}{section*.221}{}}
\newlabel{x:definition:Divides}{{6.1.5}{101}{Relations on a Set}{section*.222}{}}
\newlabel{g:notation:idm40475038656}{{6.1.2}{101}{Relations on a Set}{section*.222}{}}
\newlabel{x:figure:graph-6-1-1-relation}{{6.1.6}{101}{Relations on a Set}{section*.223}{}}
\newlabel{g:notation:idm40475013536}{{6.1.2}{102}{Relations on a Set}{section*.223}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.1.3}Composition of Relations}{102}{subsection.6.1.3}}
\newlabel{g:subsection:idm40475043264}{{6.1.3}{102}{Composition of Relations}{subsection.6.1.3}{}}
\newlabel{x:table:table-relation-composition-example}{{6.1.7}{102}{Composition of Relations}{section*.224}{}}
\newlabel{x:figure:graph-6-1-relation-composition}{{6.1.8}{102}{Composition of Relations}{section*.225}{}}
\newlabel{x:definition:def-composition-of-relations}{{6.1.9}{102}{Composition of Relations}{section*.226}{}}
\newlabel{g:notation:idm40475220864}{{6.1.3}{102}{Composition of Relations}{section*.226}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.1.4}Exercises}{103}{subsection.6.1.4}}
\newlabel{x:exercises:exercises-6-1}{{6.1.4}{103}{Exercises}{subsection.6.1.4}{}}
\@writefile{toc}{\contentsline {section}{\numberline {6.2}Graphs of Relations on a Set}{103}{section.6.2}}
\newlabel{x:section:s-graphs-of-relations-on-a-set}{{6.2}{103}{Graphs of Relations on a Set}{section.6.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.2.1}Digraphs}{104}{subsection.6.2.1}}
\newlabel{g:subsection:idm40464063728}{{6.2.1}{104}{Digraphs}{subsection.6.2.1}{}}
\newlabel{x:figure:fig-graph-6-2-1}{{6.2.1}{104}{Digraphs}{section*.227}{}}
\newlabel{x:figure:fig-graph-6-2-2}{{6.2.2}{105}{Digraphs}{section*.228}{}}
\newlabel{x:example:ex-another-simple-graph}{{6.2.3}{105}{Digraphs}{section*.229}{}}
\newlabel{x:figure:fig-graph-6-2-3}{{6.2.4}{105}{Digraphs}{section*.230}{}}
\newlabel{x:example:ex-subsets-2-ordering}{{6.2.5}{105}{Digraphs}{section*.231}{}}
\newlabel{x:figure:fig-graph-6-2-subsets-2}{{6.2.6}{106}{Digraphs}{section*.232}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.2.2}Exercises}{106}{subsection.6.2.2}}
\newlabel{x:exercises:exercises-6-2}{{6.2.2}{106}{Exercises}{subsection.6.2.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {6.3}Properties of Relations}{106}{section.6.3}}
\newlabel{x:section:s-properties-of-relations}{{6.3}{106}{Properties of Relations}{section.6.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.3.1}Individual Properties}{106}{subsection.6.3.1}}
\newlabel{x:subsection:ss-individual-properties}{{6.3.1}{106}{Individual Properties}{subsection.6.3.1}{}}
\newlabel{x:definition:def-reflexive-relation}{{6.3.1}{107}{Individual Properties}{section*.233}{}}
\newlabel{x:definition:def-antisymmetric-relation}{{6.3.2}{107}{Individual Properties}{section*.234}{}}
\newlabel{x:definition:def-transitive-relation}{{6.3.3}{107}{Individual Properties}{section*.235}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.3.2}Partial Orderings}{107}{subsection.6.3.2}}
\newlabel{x:subsection:ss-partial-ordering}{{6.3.2}{107}{Partial Orderings}{subsection.6.3.2}{}}
\newlabel{x:definition:partial-ordering}{{6.3.4}{107}{Partial Orderings}{section*.236}{}}
\newlabel{x:example:ex-subset-partial-ordering}{{6.3.5}{107}{Partial Orderings}{section*.237}{}}
\newlabel{x:figure:subsets_2_hasse}{{6.3.6}{108}{Partial Orderings}{section*.238}{}}
\newlabel{x:example:ex-def-by-hasse}{{6.3.7}{109}{Partial Orderings}{section*.239}{}}
\newlabel{x:figure:fig-pentagonal-hasse}{{6.3.8}{109}{Partial Orderings}{section*.240}{}}
\newlabel{x:figure:fig-pentagonal-digraph}{{6.3.9}{109}{Partial Orderings}{section*.241}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.3.3}Equivalence Relations}{110}{subsection.6.3.3}}
\newlabel{x:subsection:ss-equivalence-relations}{{6.3.3}{110}{Equivalence Relations}{subsection.6.3.3}{}}
\newlabel{x:definition:def-symmetric-relation}{{6.3.10}{110}{Equivalence Relations}{section*.242}{}}
\newlabel{x:definition:def-equivalence-relation}{{6.3.11}{110}{Equivalence Relations}{section*.243}{}}
\newlabel{x:example:ex-fraction-equivalence}{{6.3.12}{110}{Equivalence Relations}{section*.244}{}}
\newlabel{x:definition:def-congruence-mod-n}{{6.3.13}{110}{Equivalence Relations}{section*.245}{}}
\newlabel{g:notation:idm40463895856}{{6.3.3}{110}{Equivalence Relations}{section*.245}{}}
\newlabel{g:notation:idm40463894576}{{6.3.3}{110}{Equivalence Relations}{section*.245}{}}
\newlabel{x:example:ex-no-propery-relation}{{6.3.14}{111}{Equivalence Relations}{section*.246}{}}
\newlabel{x:figure:fig-graph-6-3-5}{{6.3.15}{111}{Equivalence Relations}{section*.247}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.3.4}Exercises}{111}{subsection.6.3.4}}
\newlabel{x:exercises:exercises-6-3}{{6.3.4}{111}{Exercises}{subsection.6.3.4}{}}
\newlabel{x:figure:fig-subsets-3-hasse}{{6.3.16}{112}{Exercises}{section*.248}{}}
\newlabel{x:figure:fig-exercises-6-digraphs}{{6.3.17}{113}{Exercises}{section*.249}{}}
\newlabel{g:notation:idm40463814768}{{{{(b)}}}{114}{Exercises}{Item.540}{}}
\newlabel{x:figure:fig-exercise-6-12}{{6.3.18}{115}{Exercises}{section*.250}{}}
\@writefile{toc}{\contentsline {section}{\numberline {6.4}Matrices of Relations}{116}{section.6.4}}
\newlabel{x:section:s-matrices-of-relations}{{6.4}{116}{Matrices of Relations}{section.6.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.4.1}Representing a Relation with a Matrix}{116}{subsection.6.4.1}}
\newlabel{g:subsection:idm40463746832}{{6.4.1}{116}{Representing a Relation with a Matrix}{subsection.6.4.1}{}}
\newlabel{x:definition:def-adjacency-matrix}{{6.4.1}{116}{Representing a Relation with a Matrix}{section*.251}{}}
\newlabel{x:example:ex-first-6-4}{{6.4.2}{116}{Representing a Relation with a Matrix}{section*.252}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.4.2}Composition as Matrix Multiplication}{116}{subsection.6.4.2}}
\newlabel{g:subsection:idm40463726320}{{6.4.2}{116}{Composition as Matrix Multiplication}{subsection.6.4.2}{}}
\newlabel{x:definition:def-boolean-arithmetic}{{6.4.3}{116}{Composition as Matrix Multiplication}{section*.253}{}}
\newlabel{g:table:idm40463720304}{{6.4.4}{117}{Composition as Matrix Multiplication}{section*.254}{}}
\newlabel{x:example:ex-composition-matrices}{{6.4.5}{117}{Composition as Matrix Multiplication}{section*.255}{}}
\newlabel{x:theorem:theorem-composition-is-multiplication}{{6.4.6}{117}{Composition as Matrix Multiplication}{section*.256}{}}
\newlabel{x:example:ex-relations-information}{{6.4.7}{117}{Composition as Matrix Multiplication}{section*.257}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.4.3}Exercises}{118}{subsection.6.4.3}}
\newlabel{x:exercises:exercises-6-4}{{6.4.3}{118}{Exercises}{subsection.6.4.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {6.5}Closure Operations on Relations}{119}{section.6.5}}
\newlabel{x:section:s-closure-operations-on-relations}{{6.5}{119}{Closure Operations on Relations}{section.6.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.5.1}Transitive Closure}{119}{subsection.6.5.1}}
\newlabel{g:subsection:idm40463602432}{{6.5.1}{119}{Transitive Closure}{subsection.6.5.1}{}}
\newlabel{x:definition:def-transitive-closure}{{6.5.1}{120}{Transitive Closure}{section*.258}{}}
\newlabel{g:notation:idm40463592384}{{6.5.1}{120}{Transitive Closure}{section*.258}{}}
\newlabel{x:theorem:theorem-transitive-closure-formula}{{6.5.2}{120}{Transitive Closure}{section*.259}{}}
\newlabel{g:table:idm40491755616}{{6.5.3}{121}{Transitive Closure}{section*.260}{}}
\newlabel{x:theorem:theorem-matrix-transitive-closure}{{6.5.4}{121}{Transitive Closure}{section*.261}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.5.2}Algorithms for computing transitive closure}{121}{subsection.6.5.2}}
\newlabel{g:subsection:idm40491556768}{{6.5.2}{121}{Algorithms for computing transitive closure}{subsection.6.5.2}{}}
\newlabel{x:algorithm:alg-trans-closure}{{6.5.5}{121}{Algorithms for computing transitive closure}{section*.262}{}}
\newlabel{g:listing:idm40492101520}{{6.5.6}{122}{Algorithms for computing transitive closure}{section*.263}{}}
\newlabel{g:note:idm40491764944}{{6.5.7}{122}{Algorithms for computing transitive closure}{section*.264}{}}
\newlabel{x:algorithm:alg-warshall}{{6.5.8}{122}{Algorithms for computing transitive closure}{section*.265}{}}
\newlabel{g:listing:idm40469157904}{{6.5.9}{122}{Algorithms for computing transitive closure}{section*.266}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.5.3}Exercises}{122}{subsection.6.5.3}}
\newlabel{x:exercises:exercises-6-5}{{6.5.3}{122}{Exercises}{subsection.6.5.3}{}}
\newlabel{g:figure:idm40469442224}{{6.5.10}{123}{Exercises}{section*.267}{}}
\@writefile{toc}{\contentsline {chapter}{\numberline {7}Functions}{124}{chapter.7}}
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\newlabel{x:chapter:chapter_7}{{7}{124}{Functions}{chapter.7}{}}
\@writefile{toc}{\contentsline {section}{\numberline {7.1}Definition and Notation}{124}{section.7.1}}
\newlabel{x:section:s-function-def-notation}{{7.1}{124}{Definition and Notation}{section.7.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {7.1.1}Fundamentals}{124}{subsection.7.1.1}}
\newlabel{x:subsection:ss-fundamentals-functions}{{7.1.1}{124}{Fundamentals}{subsection.7.1.1}{}}
\newlabel{x:definition:def-function}{{7.1.1}{124}{Fundamentals}{section*.268}{}}
\newlabel{g:notation:idm40468085040}{{7.1.1}{124}{Fundamentals}{section*.268}{}}
\newlabel{x:example:ex-function-1}{{7.1.2}{124}{Fundamentals}{section*.269}{}}
\newlabel{x:example:ex-function-2}{{7.1.3}{124}{Fundamentals}{section*.270}{}}
\newlabel{x:definition:def-set-of-functions}{{7.1.4}{125}{Fundamentals}{section*.271}{}}
\newlabel{g:notation:idm40492059200}{{7.1.1}{125}{Fundamentals}{section*.271}{}}
\newlabel{x:example:ex-non-pair-description}{{7.1.5}{125}{Fundamentals}{section*.272}{}}
\newlabel{x:definition:def-image-of-an-element}{{7.1.6}{125}{Fundamentals}{section*.273}{}}
\newlabel{g:notation:idm40469357120}{{7.1.1}{125}{Fundamentals}{section*.273}{}}
\newlabel{x:definition:def-range-of-function}{{7.1.7}{125}{Fundamentals}{section*.274}{}}
\newlabel{g:notation:idm40468281424}{{7.1.1}{125}{Fundamentals}{section*.274}{}}
\newlabel{x:example:ex-data-function}{{7.1.8}{126}{Fundamentals}{section*.275}{}}
\newlabel{x:example:ex-conditional-function}{{7.1.9}{126}{Fundamentals}{section*.276}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {7.1.2}Functions of Two Variables}{126}{subsection.7.1.2}}
\newlabel{x:subsection:ss-two-variables}{{7.1.2}{126}{Functions of Two Variables}{subsection.7.1.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {7.1.3}SageMath Note}{126}{subsection.7.1.3}}
\newlabel{x:subsection:ss-sage-note-functions}{{7.1.3}{126}{SageMath Note}{subsection.7.1.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {7.1.4}Non-Functions}{127}{subsection.7.1.4}}
\newlabel{x:subsection:ss-non-functions}{{7.1.4}{127}{Non-Functions}{subsection.7.1.4}{}}
\newlabel{x:example:ex-nonfunction1}{{7.1.10}{127}{Non-Functions}{section*.277}{}}
\newlabel{x:example:ex-nonfunction2}{{7.1.11}{127}{Non-Functions}{section*.278}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {7.1.5}Exercises}{127}{subsection.7.1.5}}
\newlabel{x:exercises:exercises-7-1}{{7.1.5}{127}{Exercises}{subsection.7.1.5}{}}
\@writefile{toc}{\contentsline {section}{\numberline {7.2}Properties of Functions}{128}{section.7.2}}
\newlabel{x:section:s-properties-of-functions}{{7.2}{128}{Properties of Functions}{section.7.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {7.2.1}Properties}{128}{subsection.7.2.1}}
\newlabel{g:subsection:idm40492041568}{{7.2.1}{128}{Properties}{subsection.7.2.1}{}}
\newlabel{x:definition:def-injective-function}{{7.2.1}{128}{Properties}{section*.279}{}}
\newlabel{x:definition:def-surjective-function}{{7.2.2}{129}{Properties}{section*.280}{}}
\newlabel{x:definition:def-bijective-function}{{7.2.3}{129}{Properties}{section*.281}{}}
\newlabel{x:example:ex-injective-notsurjective}{{7.2.4}{129}{Properties}{section*.282}{}}
\newlabel{x:example:ex-characteristic-properties}{{7.2.5}{129}{Properties}{section*.283}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {7.2.2}Counting}{129}{subsection.7.2.2}}
\newlabel{g:subsection:idm40492041344}{{7.2.2}{129}{Counting}{subsection.7.2.2}{}}
\newlabel{x:example:ex-classroom}{{7.2.6}{129}{Counting}{section*.284}{}}
\newlabel{x:definition:def-cardinality}{{7.2.7}{129}{Counting}{section*.285}{}}
\newlabel{g:notation:idm40491990608}{{7.2.2}{129}{Counting}{section*.285}{}}
\newlabel{x:definition:def-countable-set}{{7.2.8}{129}{Counting}{section*.286}{}}
\newlabel{x:example:ex-the-alphabet}{{7.2.9}{129}{Counting}{section*.287}{}}
\newlabel{x:example:ex-evens-eq-all}{{7.2.10}{130}{Counting}{section*.288}{}}
\newlabel{x:theorem:th-pigeonhole-principle}{{7.2.11}{130}{Counting}{section*.289}{}}
\newlabel{x:example:ex-names}{{7.2.12}{130}{Counting}{section*.290}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {7.2.3}Exercises}{131}{subsection.7.2.3}}
\newlabel{x:exercises:exercises-7-2}{{7.2.3}{131}{Exercises}{subsection.7.2.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {7.3}Function Composition}{132}{section.7.3}}
\newlabel{x:section:s-function-composition}{{7.3}{132}{Function Composition}{section.7.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {7.3.1}Function Equality}{132}{subsection.7.3.1}}
\newlabel{x:subsection:ss-function-equality}{{7.3.1}{132}{Function Equality}{subsection.7.3.1}{}}
\newlabel{x:definition:def-equality-of-functions}{{7.3.1}{132}{Function Equality}{section*.291}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {7.3.2}Function Composition}{133}{subsection.7.3.2}}
\newlabel{x:subsection:ss-composition}{{7.3.2}{133}{Function Composition}{subsection.7.3.2}{}}
\newlabel{x:definition:def-composition-of-functions}{{7.3.2}{133}{Function Composition}{section*.292}{}}
\newlabel{g:notation:idm40491808448}{{7.3.2}{133}{Function Composition}{section*.292}{}}
\newlabel{x:example:ex-simple-composition}{{7.3.3}{133}{Function Composition}{section*.293}{}}
\newlabel{x:theorem:function-composition-associative}{{7.3.4}{133}{Function Composition}{section*.294}{}}
\newlabel{x:definition:def-powers-of-functions}{{7.3.5}{133}{Function Composition}{section*.295}{}}
\newlabel{g:notation:idm40492170128}{{7.3.2}{133}{Function Composition}{section*.295}{}}
\newlabel{x:theorem:theorem-composition-of-injections}{{7.3.6}{134}{Function Composition}{section*.296}{}}
\newlabel{x:theorem:theorem-composition-of-surjections}{{7.3.7}{134}{Function Composition}{section*.297}{}}
\newlabel{x:definition:def-identity-function}{{7.3.8}{134}{Function Composition}{section*.298}{}}
\newlabel{g:notation:idm40469019952}{{7.3.2}{134}{Function Composition}{section*.298}{}}
\newlabel{x:example:ex-an-identity-function}{{7.3.9}{134}{Function Composition}{section*.299}{}}
\newlabel{x:example:ex-identity-on-reals}{{7.3.10}{134}{Function Composition}{section*.300}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {7.3.3}Inverse Functions}{134}{subsection.7.3.3}}
\newlabel{x:subsection:ss-inverse-functions}{{7.3.3}{134}{Inverse Functions}{subsection.7.3.3}{}}
\newlabel{x:definition:def-inverse-function}{{7.3.11}{134}{Inverse Functions}{section*.301}{}}
\newlabel{g:notation:idm40469004176}{{7.3.3}{134}{Inverse Functions}{section*.301}{}}
\newlabel{x:example:ex-simple-inverse}{{7.3.12}{134}{Inverse Functions}{section*.302}{}}
\newlabel{x:example:ex-inverse-of-a-real-function}{{7.3.13}{135}{Inverse Functions}{section*.303}{}}
\newlabel{x:theorem:theorem-bijections-have-inverses}{{7.3.14}{135}{Inverse Functions}{section*.304}{}}
\newlabel{x:definition:def-Permutation}{{7.3.15}{135}{Inverse Functions}{section*.305}{}}
\newlabel{x:definition:def-general-inverse-function}{{7.3.16}{135}{Inverse Functions}{section*.306}{}}
\newlabel{x:theorem:theorem-inverse-function-condition}{{7.3.17}{135}{Inverse Functions}{section*.307}{}}
\newlabel{x:example:example-inverse-another}{{7.3.18}{135}{Inverse Functions}{section*.308}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {7.3.4}Exercises}{136}{subsection.7.3.4}}
\newlabel{x:exercises:exercises-7-3}{{7.3.4}{136}{Exercises}{subsection.7.3.4}{}}
\@writefile{toc}{\contentsline {chapter}{\numberline {8}Recursion and Recurrence Relations}{139}{chapter.8}}
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\newlabel{x:chapter:chapter_8}{{8}{139}{Recursion and Recurrence Relations}{chapter.8}{}}
\@writefile{toc}{\contentsline {section}{\numberline {8.1}The Many Faces of Recursion}{139}{section.8.1}}
\newlabel{x:section:s-faces-of-recursion}{{8.1}{139}{The Many Faces of Recursion}{section.8.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {8.1.1}Binomial Coefficients}{139}{subsection.8.1.1}}
\newlabel{x:subsection:ss-binomial-coefficients}{{8.1.1}{139}{Binomial Coefficients}{subsection.8.1.1}{}}
\newlabel{x:definition:def-binomial-coefficient-recursive}{{8.1.1}{139}{Binomial Coefficients}{section*.309}{}}
\newlabel{g:observation:idm40467703920}{{8.1.2}{140}{Binomial Coefficients}{section*.310}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {8.1.2}Polynomials and Their Evaluation}{140}{subsection.8.1.2}}
\newlabel{x:subsection:ss-polynomials-and-their-evaluation}{{8.1.2}{140}{Polynomials and Their Evaluation}{subsection.8.1.2}{}}
\newlabel{x:definition:def-polynomial-expression-nonrecursive}{{8.1.3}{140}{Polynomials and Their Evaluation}{section*.311}{}}
\newlabel{x:definition:def-polynomial-expression-recursive}{{8.1.4}{141}{Polynomials and Their Evaluation}{section*.312}{}}
\newlabel{x:example:ex-more-telescoping_}{{8.1.5}{141}{Polynomials and Their Evaluation}{section*.313}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {8.1.3}Recursive Searching - The Binary Search}{141}{subsection.8.1.3}}
\newlabel{x:subsection:ss-recursive-searching}{{8.1.3}{141}{Recursive Searching - The Binary Search}{subsection.8.1.3}{}}
\newlabel{x:figure:fig-binsearch}{{8.1.6}{142}{Recursive Searching - The Binary Search}{section*.314}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {8.1.4}Recursively Defined Sequences}{142}{subsection.8.1.4}}
\newlabel{x:subsection:ss-recursive-sequences}{{8.1.4}{142}{Recursively Defined Sequences}{subsection.8.1.4}{}}
\newlabel{x:example:ex-geometric-growth}{{8.1.7}{142}{Recursively Defined Sequences}{section*.315}{}}
\newlabel{x:example:ex-fibonacci-sequence}{{8.1.8}{143}{Recursively Defined Sequences}{section*.316}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {8.1.5}Recursion}{143}{subsection.8.1.5}}
\newlabel{x:subsection:ss-recursion}{{8.1.5}{143}{Recursion}{subsection.8.1.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {8.1.6}Iteration}{143}{subsection.8.1.6}}
\newlabel{x:subsection:ss-iteration}{{8.1.6}{143}{Iteration}{subsection.8.1.6}{}}
\newlabel{g:table:idm40467633136}{{8.1.9}{143}{Iteration}{section*.317}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {8.1.7}Induction and Recursion}{144}{subsection.8.1.7}}
\newlabel{x:subsection:ss-induction-and-recursion}{{8.1.7}{144}{Induction and Recursion}{subsection.8.1.7}{}}
\newlabel{x:example:ex-geometric-squence-proof}{{8.1.10}{144}{Induction and Recursion}{section*.318}{}}
\newlabel{x:definition:def-closed-form-expression}{{8.1.11}{145}{Induction and Recursion}{section*.319}{}}
\newlabel{x:example:ex-summation-simplifed}{{8.1.12}{145}{Induction and Recursion}{section*.320}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {8.1.8}Exercises}{145}{subsection.8.1.8}}
\newlabel{g:exercises:idm40467604720}{{8.1.8}{145}{Exercises}{subsection.8.1.8}{}}
\@writefile{toc}{\contentsline {section}{\numberline {8.2}Sequences}{145}{section.8.2}}
\newlabel{x:section:s-Sequences}{{8.2}{145}{Sequences}{section.8.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {8.2.1}Sequences and Ways They Are Defined}{145}{subsection.8.2.1}}
\newlabel{g:subsection:idm40467573984}{{8.2.1}{145}{Sequences and Ways They Are Defined}{subsection.8.2.1}{}}
\newlabel{x:definition:def-sequence}{{8.2.1}{145}{Sequences and Ways They Are Defined}{section*.321}{}}
\newlabel{x:example:ex-three-sequences}{{8.2.2}{146}{Sequences and Ways They Are Defined}{section*.322}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {8.2.2}A Fundamental Problem}{146}{subsection.8.2.2}}
\newlabel{g:subsection:idm40467556848}{{8.2.2}{146}{A Fundamental Problem}{subsection.8.2.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {8.2.3}Exercises}{147}{subsection.8.2.3}}
\newlabel{x:exercises:exercises-8-2}{{8.2.3}{147}{Exercises}{subsection.8.2.3}{}}
\newlabel{x:figure:exercise-8-2-3}{{8.2.3}{148}{Exercises}{section*.323}{}}
\@writefile{toc}{\contentsline {section}{\numberline {8.3}Recurrence Relations}{148}{section.8.3}}
\newlabel{x:section:s-recurrence-relations}{{8.3}{148}{Recurrence Relations}{section.8.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {8.3.1}Definition and Terminology}{148}{subsection.8.3.1}}
\newlabel{x:subsection:defs-rr}{{8.3.1}{148}{Definition and Terminology}{subsection.8.3.1}{}}
\newlabel{x:definition:def-recurrence-relation}{{8.3.1}{148}{Definition and Terminology}{section*.324}{}}
\newlabel{x:example:ex-some-recurrence-relations}{{8.3.2}{148}{Definition and Terminology}{section*.325}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {8.3.2}Solving Recurrence Relations}{149}{subsection.8.3.2}}
\newlabel{x:subsection:ss-solving-recurrence-relations}{{8.3.2}{149}{Solving Recurrence Relations}{subsection.8.3.2}{}}
\newlabel{x:definition:def-n-th-order-rr}{{8.3.3}{149}{Solving Recurrence Relations}{section*.326}{}}
\newlabel{x:example:ex-some-finite-order-rr}{{8.3.4}{149}{Solving Recurrence Relations}{section*.327}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {8.3.3}Recurrence relations obtained from ``solutions''}{149}{subsection.8.3.3}}
\newlabel{x:subsection:sss-recurrence-relations-obtained-from-solutions}{{8.3.3}{149}{Recurrence relations obtained from ``solutions''}{subsection.8.3.3}{}}
\newlabel{g:table:idm40467460976}{{8.3.5}{150}{Recurrence relations obtained from ``solutions''}{section*.328}{}}
\newlabel{x:table:table-reverse-solutions-rr}{{8.3.6}{150}{Recurrence relations obtained from ``solutions''}{section*.329}{}}
\newlabel{x:definition:def-homogeneous-recurrence-relation}{{8.3.7}{150}{Recurrence relations obtained from ``solutions''}{section*.330}{}}
\newlabel{x:example:ex-first-order-homogeneous-rr}{{8.3.8}{150}{Recurrence relations obtained from ``solutions''}{section*.331}{}}
\newlabel{x:example:ex-second-order-rr}{{8.3.9}{151}{Recurrence relations obtained from ``solutions''}{section*.332}{}}
\newlabel{x:mrow:eq-characteristic-example}{{8.3.1}{151}{Recurrence relations obtained from ``solutions''}{equation.8.3.1}{}}
\newlabel{x:definition:def-characteristic-equation}{{8.3.10}{151}{Recurrence relations obtained from ``solutions''}{section*.333}{}}
\newlabel{x:example:ex-some-char-equations}{{8.3.11}{151}{Recurrence relations obtained from ``solutions''}{section*.334}{}}
\newlabel{x:algorithm:algorithm-linear-homogeneous-recurrence-relations}{{8.3.12}{152}{Recurrence relations obtained from ``solutions''}{section*.335}{}}
\newlabel{x:example:ex-hrr-solution-example-1}{{8.3.13}{152}{Recurrence relations obtained from ``solutions''}{section*.336}{}}
\newlabel{x:example:ex-hrr-solution-example-2}{{8.3.14}{153}{Recurrence relations obtained from ``solutions''}{section*.337}{}}
\newlabel{x:example:ex-hrr-solution-example-3}{{8.3.15}{153}{Recurrence relations obtained from ``solutions''}{section*.338}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {8.3.4}Solution of Nonhomogeneous Finite Order Linear Relations}{153}{subsection.8.3.4}}
\newlabel{x:subsection:ss-solution-of-nonhomogeneous-relations}{{8.3.4}{153}{Solution of Nonhomogeneous Finite Order Linear Relations}{subsection.8.3.4}{}}
\newlabel{x:algorithm:algorithm-linear-nonhomogeneous-recurrence-relations}{{8.3.16}{153}{Solution of Nonhomogeneous Finite Order Linear Relations}{section*.339}{}}
\newlabel{x:table:tab-particular-sols}{{8.3.17}{154}{Solution of Nonhomogeneous Finite Order Linear Relations}{section*.340}{}}
\newlabel{x:example:ex-nhrr-solution-example-1}{{8.3.18}{154}{Solution of Nonhomogeneous Finite Order Linear Relations}{section*.341}{}}
\newlabel{x:example:ex-nhrr-solution-example-2}{{8.3.19}{154}{Solution of Nonhomogeneous Finite Order Linear Relations}{section*.342}{}}
\newlabel{g:note:idm40467912752}{{8.3.20}{155}{Solution of Nonhomogeneous Finite Order Linear Relations}{section*.343}{}}
\newlabel{x:example:ex-a-novel-annuity}{{8.3.21}{155}{Solution of Nonhomogeneous Finite Order Linear Relations}{section*.344}{}}
\newlabel{x:example:ex-matching-roots}{{8.3.22}{156}{Solution of Nonhomogeneous Finite Order Linear Relations}{section*.345}{}}
\newlabel{x:observation:obs-matching-base}{{8.3.23}{156}{Solution of Nonhomogeneous Finite Order Linear Relations}{section*.346}{}}
\newlabel{x:example:ex-base-match}{{8.3.24}{156}{Solution of Nonhomogeneous Finite Order Linear Relations}{section*.347}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {8.3.5}Exercises}{157}{subsection.8.3.5}}
\newlabel{x:exercises:exercises-8-3}{{8.3.5}{157}{Exercises}{subsection.8.3.5}{}}
\@writefile{toc}{\contentsline {section}{\numberline {8.4}Some Common Recurrence Relations}{158}{section.8.4}}
\newlabel{x:section:s-some-common-rrs}{{8.4}{158}{Some Common Recurrence Relations}{section.8.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {8.4.1}A First Basic Example}{158}{subsection.8.4.1}}
\newlabel{x:subsection:rr-basic-example}{{8.4.1}{158}{A First Basic Example}{subsection.8.4.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {8.4.2}An Analysis of the Binary Search Algorithm}{159}{subsection.8.4.2}}
\newlabel{x:subsection:analysis-of-binary-search}{{8.4.2}{159}{An Analysis of the Binary Search Algorithm}{subsection.8.4.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {8.4.2.1}}{159}{subsubsection.8.4.2.1}}
\newlabel{g:subsubsection:idm40467770320}{{8.4.2.1}{159}{}{subsubsection.8.4.2.1}{}}
\newlabel{x:mrow:eq-bin-search-recursion}{{8.4.1}{159}{}{equation.8.4.1}{}}
\newlabel{x:mrow:eq-bin-search-basis}{{8.4.2}{159}{}{equation.8.4.2}{}}
\newlabel{x:mrow:eq-inequality-84}{{8.4.3}{160}{}{equation.8.4.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {8.4.2.2}Review of Logarithms}{161}{subsubsection.8.4.2.2}}
\newlabel{x:subsubsection:sss-review-of-logarithms}{{8.4.2.2}{161}{Review of Logarithms}{subsubsection.8.4.2.2}{}}
\newlabel{x:definition:def-log-base-2}{{8.4.1}{161}{Review of Logarithms}{section*.348}{}}
\newlabel{x:figure:fig-log-2-plot}{{8.4.2}{161}{Review of Logarithms}{section*.349}{}}
\newlabel{x:theorem:theorem-log-properties}{{8.4.3}{161}{Review of Logarithms}{section*.350}{}}
\newlabel{x:mrow:eq-log-prop-1}{{8.4.4}{161}{Review of Logarithms}{equation.8.4.4}{}}
\newlabel{x:mrow:eq-log-prop-2}{{8.4.5}{161}{Review of Logarithms}{equation.8.4.5}{}}
\newlabel{x:mrow:eq-log-prop-3}{{8.4.6}{161}{Review of Logarithms}{equation.8.4.6}{}}
\newlabel{x:mrow:eq-log-prop-4}{{8.4.7}{162}{Review of Logarithms}{equation.8.4.7}{}}
\newlabel{x:mrow:eq-log-prop-5}{{8.4.8}{162}{Review of Logarithms}{equation.8.4.8}{}}
\newlabel{x:definition:def-logarithm-general-base}{{8.4.4}{162}{Review of Logarithms}{section*.351}{}}
\newlabel{g:notation:idm40460008048}{{8.4.2.2}{162}{Review of Logarithms}{section*.351}{}}
\newlabel{x:theorem:theorem-logs-related}{{8.4.5}{162}{Review of Logarithms}{section*.352}{}}
\newlabel{g:note:idm40459998000}{{8.4.6}{162}{Review of Logarithms}{section*.353}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {8.4.2.3}}{162}{subsubsection.8.4.2.3}}
\newlabel{g:subsubsection:idm40467754080}{{8.4.2.3}{162}{}{subsubsection.8.4.2.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {8.4.3}Analysis of Bubble Sort and Merge Sort}{163}{subsection.8.4.3}}
\newlabel{x:subsection:ss-bubblesort-analysis}{{8.4.3}{163}{Analysis of Bubble Sort and Merge Sort}{subsection.8.4.3}{}}
\newlabel{x:mrow:eq-bubble-r}{{8.4.9}{164}{Analysis of Bubble Sort and Merge Sort}{equation.8.4.9}{}}
\newlabel{x:mrow:eq-bubble-b}{{8.4.10}{164}{Analysis of Bubble Sort and Merge Sort}{equation.8.4.10}{}}
\newlabel{x:table:table-sort-analysis}{{8.4.7}{164}{Analysis of Bubble Sort and Merge Sort}{section*.354}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {8.4.4}Derangements}{164}{subsection.8.4.4}}
\newlabel{x:subsection:ss-derangements}{{8.4.4}{164}{Derangements}{subsection.8.4.4}{}}
\newlabel{x:definition:def-derangement}{{8.4.8}{164}{Derangements}{section*.355}{}}
\newlabel{g:mrow:idm40459912128}{{8.4.11}{165}{Derangements}{equation.8.4.11}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {8.4.5}Exercises}{166}{subsection.8.4.5}}
\newlabel{x:exercises:exercises-8-4}{{8.4.5}{166}{Exercises}{subsection.8.4.5}{}}
\@writefile{toc}{\contentsline {section}{\numberline {8.5}Generating Functions}{166}{section.8.5}}
\newlabel{x:section:s-generating-functions}{{8.5}{166}{Generating Functions}{section.8.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {8.5.1}Definition}{167}{subsection.8.5.1}}
\newlabel{x:subsection:ss-what-is-a-generating-function}{{8.5.1}{167}{Definition}{subsection.8.5.1}{}}
\newlabel{x:definition:def-generating-function}{{8.5.1}{167}{Definition}{section*.356}{}}
\newlabel{g:notation:idm40459843200}{{8.5.1}{167}{Definition}{section*.356}{}}
\newlabel{x:example:ex-first-gf-examples}{{8.5.2}{167}{Definition}{section*.357}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {8.5.2}Solution of a Recurrence Relation Using Generating Functions}{167}{subsection.8.5.2}}
\newlabel{x:subsection:ss-solution-of-rr-using-generating-functions}{{8.5.2}{167}{Solution of a Recurrence Relation Using Generating Functions}{subsection.8.5.2}{}}
\newlabel{x:mrow:gf-of-exp}{{8.5.1}{169}{Solution of a Recurrence Relation Using Generating Functions}{equation.8.5.1}{}}
\newlabel{x:mrow:eq-pf}{{8.5.2}{169}{Solution of a Recurrence Relation Using Generating Functions}{equation.8.5.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {8.5.3}Operations on Sequences}{170}{subsection.8.5.3}}
\newlabel{x:subsection:ops-on-sequences}{{8.5.3}{170}{Operations on Sequences}{subsection.8.5.3}{}}
\newlabel{g:definition:idm40459795952}{{8.5.3}{170}{Operations on Sequences}{section*.358}{}}
\newlabel{g:notation:idm40459794768}{{8.5.3}{170}{Operations on Sequences}{section*.358}{}}
\newlabel{g:notation:idm40459793792}{{8.5.3}{170}{Operations on Sequences}{section*.358}{}}
\newlabel{g:notation:idm40459792816}{{8.5.3}{170}{Operations on Sequences}{section*.358}{}}
\newlabel{x:mrow:seq-op-add}{{8.5.3}{170}{Operations on Sequences}{equation.8.5.3}{}}
\newlabel{x:mrow:seq-op-sc-mult}{{8.5.4}{170}{Operations on Sequences}{equation.8.5.4}{}}
\newlabel{x:mrow:seq-op-mult}{{8.5.5}{170}{Operations on Sequences}{equation.8.5.5}{}}
\newlabel{x:mrow:seq-op-convolve}{{8.5.6}{170}{Operations on Sequences}{equation.8.5.6}{}}
\newlabel{x:mrow:seq-op-pop}{{8.5.7}{170}{Operations on Sequences}{equation.8.5.7}{}}
\newlabel{x:mrow:seq-op-push}{{8.5.8}{170}{Operations on Sequences}{equation.8.5.8}{}}
\newlabel{x:figure:fig-pop-push}{{8.5.4}{171}{Operations on Sequences}{section*.359}{}}
\newlabel{x:example:ex-some-sequence-operations}{{8.5.5}{171}{Operations on Sequences}{section*.360}{}}
\newlabel{x:definition:def-multiple-pop-and-push}{{8.5.6}{172}{Operations on Sequences}{section*.361}{}}
\newlabel{g:notation:idm40459758528}{{8.5.3}{172}{Operations on Sequences}{section*.361}{}}
\newlabel{g:notation:idm40459757984}{{8.5.3}{172}{Operations on Sequences}{section*.361}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {8.5.4}Operations on Generating Functions}{172}{subsection.8.5.4}}
\newlabel{x:subsection:sss-operations-on-generating-functions}{{8.5.4}{172}{Operations on Generating Functions}{subsection.8.5.4}{}}
\newlabel{g:definition:idm40459751344}{{8.5.7}{172}{Operations on Generating Functions}{section*.362}{}}
\newlabel{x:mrow:gf-sum}{{8.5.9}{172}{Operations on Generating Functions}{equation.8.5.9}{}}
\newlabel{x:mrow:gf-scalarmult}{{8.5.10}{172}{Operations on Generating Functions}{equation.8.5.10}{}}
\newlabel{x:mrow:gf-product}{{8.5.11}{172}{Operations on Generating Functions}{equation.8.5.11}{}}
\newlabel{x:mrow:gf-shift}{{8.5.12}{172}{Operations on Generating Functions}{equation.8.5.12}{}}
\newlabel{x:example:ex-some-gf-operations}{{8.5.8}{172}{Operations on Generating Functions}{section*.363}{}}
\newlabel{x:mrow:gf-ops-1}{{8.5.13}{173}{Operations on Generating Functions}{equation.8.5.13}{}}
\newlabel{x:mrow:gf-ops-2}{{8.5.14}{173}{Operations on Generating Functions}{equation.8.5.14}{}}
\newlabel{x:mrow:gf-ops-3}{{8.5.15}{173}{Operations on Generating Functions}{equation.8.5.15}{}}
\newlabel{x:mrow:gf-ops-4}{{8.5.16}{173}{Operations on Generating Functions}{equation.8.5.16}{}}
\newlabel{x:mrow:gf-ops-5}{{8.5.17}{173}{Operations on Generating Functions}{equation.8.5.17}{}}
\newlabel{x:theorem:gf-of-pop-push}{{8.5.9}{173}{Operations on Generating Functions}{section*.364}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {8.5.5}Closed Form Expressions for Generating Functions}{174}{subsection.8.5.5}}
\newlabel{x:subsection:ss-closed-form-expressions-for-generating-functions}{{8.5.5}{174}{Closed Form Expressions for Generating Functions}{subsection.8.5.5}{}}
\newlabel{x:mrow:finite-geometric-series}{{8.5.18}{174}{Closed Form Expressions for Generating Functions}{equation.8.5.18}{}}
\newlabel{x:mrow:infinite-geometric-series}{{8.5.19}{174}{Closed Form Expressions for Generating Functions}{equation.8.5.19}{}}
\newlabel{x:example:ex-geometric-sums}{{8.5.10}{174}{Closed Form Expressions for Generating Functions}{section*.365}{}}
\newlabel{x:table:table-gf-closed-form}{{8.5.11}{175}{Closed Form Expressions for Generating Functions}{section*.366}{}}
\newlabel{x:example:ex-another-complete-solution}{{8.5.12}{175}{Closed Form Expressions for Generating Functions}{section*.367}{}}
\newlabel{x:example:example-counting-application}{{8.5.13}{176}{Closed Form Expressions for Generating Functions}{section*.368}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {8.5.6}Extra for Experts}{177}{subsection.8.5.6}}
\newlabel{x:subsection:ss-extra-for-experts}{{8.5.6}{177}{Extra for Experts}{subsection.8.5.6}{}}
\newlabel{x:example:ex-dice-roll}{{8.5.14}{178}{Extra for Experts}{section*.369}{}}
\newlabel{x:example:ex-committee-distribution}{{8.5.15}{178}{Extra for Experts}{section*.370}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {8.5.7}Exercises}{178}{subsection.8.5.7}}
\newlabel{g:exercises:idm40459592352}{{8.5.7}{178}{Exercises}{subsection.8.5.7}{}}
\@writefile{toc}{\contentsline {chapter}{\numberline {9}Graph Theory}{181}{chapter.9}}
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\newlabel{x:chapter:chapter_9}{{9}{181}{Graph Theory}{chapter.9}{}}
\@writefile{toc}{\contentsline {section}{\numberline {9.1}Graphs - General Introduction}{181}{section.9.1}}
\newlabel{x:section:s-graphs-introduction}{{9.1}{181}{Graphs - General Introduction}{section.9.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {9.1.1}Definitions}{181}{subsection.9.1.1}}
\newlabel{g:subsection:idm40459523968}{{9.1.1}{181}{Definitions}{subsection.9.1.1}{}}
\newlabel{x:definition:def-simple-directed-graph}{{9.1.1}{181}{Definitions}{section*.371}{}}
\newlabel{g:note:idm40459520944}{{9.1.2}{181}{Definitions}{section*.372}{}}
\newlabel{x:example:ex-9-1}{{9.1.3}{182}{Definitions}{section*.373}{}}
\newlabel{x:figure:fig-directed-graph-ex1}{{9.1.4}{182}{Definitions}{section*.374}{}}
\newlabel{x:definition:def-multigraph}{{9.1.5}{182}{Definitions}{section*.375}{}}
\newlabel{x:example:ex-multigraph-9-1}{{9.1.6}{182}{Definitions}{section*.376}{}}
\newlabel{x:figure:fig-multigraph-ex1}{{9.1.7}{183}{Definitions}{section*.377}{}}
\newlabel{x:definition:def-undirected-graph}{{9.1.8}{183}{Definitions}{section*.378}{}}
\newlabel{x:example:ex-undirected-1}{{9.1.9}{183}{Definitions}{section*.379}{}}
\newlabel{x:figure:fig-undirected-1}{{9.1.10}{183}{Definitions}{section*.380}{}}
\newlabel{x:figure:fig-undirected-2}{{9.1.11}{183}{Definitions}{section*.381}{}}
\newlabel{x:definition:def-complete-undirected-graph}{{9.1.12}{183}{Definitions}{section*.382}{}}
\newlabel{g:notation:idm40459485040}{{9.1.1}{183}{Definitions}{section*.382}{}}
\newlabel{x:example:ex-labeled-graph-9-1}{{9.1.13}{184}{Definitions}{section*.383}{}}
\newlabel{x:figure:fig-labeled-graph-9-1}{{9.1.14}{184}{Definitions}{section*.384}{}}
\newlabel{g:note:idm40459477872}{{9.1.15}{184}{Definitions}{section*.385}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {9.1.2}Subgraphs}{185}{subsection.9.1.2}}
\newlabel{g:subsection:idm40459523840}{{9.1.2}{185}{Subgraphs}{subsection.9.1.2}{}}
\newlabel{x:definition:def-subgraph}{{9.1.16}{185}{Subgraphs}{section*.386}{}}
\newlabel{x:example:ex-subgraphs}{{9.1.17}{185}{Subgraphs}{section*.387}{}}
\newlabel{x:figure:fig-subgraphs}{{9.1.18}{185}{Subgraphs}{section*.388}{}}
\newlabel{x:definition:def-connected-component}{{9.1.19}{186}{Subgraphs}{section*.389}{}}
\newlabel{x:example:ex-connected-components}{{9.1.20}{186}{Subgraphs}{section*.390}{}}
\newlabel{x:example:ex-string-model-9-1}{{9.1.21}{186}{Subgraphs}{section*.391}{}}
\newlabel{x:example:ex-tournament-graph-9-1}{{9.1.22}{186}{Subgraphs}{section*.392}{}}
\newlabel{x:figure:fig-tournament-graph-9-1}{{9.1.23}{186}{Subgraphs}{section*.393}{}}
\newlabel{x:definition:def-tournament-graph}{{9.1.24}{187}{Subgraphs}{section*.394}{}}
\newlabel{x:example:ex-single-elimination-9-1}{{9.1.25}{187}{Subgraphs}{section*.395}{}}
\newlabel{x:figure:fig-mlb-1983-9-1}{{9.1.26}{187}{Subgraphs}{section*.396}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {9.1.3}Graph Isomorphisms}{187}{subsection.9.1.3}}
\newlabel{g:subsection:idm40459455680}{{9.1.3}{187}{Graph Isomorphisms}{subsection.9.1.3}{}}
\newlabel{x:figure:fig-isomorphic-graphs-9-1}{{9.1.27}{188}{Graph Isomorphisms}{section*.397}{}}
\newlabel{x:definition:def-isomorphic-graphs}{{9.1.28}{188}{Graph Isomorphisms}{section*.398}{}}
\newlabel{x:definition:def-degree-of-a-vertex}{{9.1.29}{188}{Graph Isomorphisms}{section*.399}{}}
\newlabel{g:notation:idm40459399696}{{9.1.3}{188}{Graph Isomorphisms}{section*.399}{}}
\newlabel{x:definition:def-degree-sequence}{{9.1.30}{188}{Graph Isomorphisms}{section*.400}{}}
\newlabel{x:example:ex-degrees-9-1}{{9.1.31}{188}{Graph Isomorphisms}{section*.401}{}}
\newlabel{x:figure:fig-degrees-example-9-1}{{9.1.32}{189}{Graph Isomorphisms}{section*.402}{}}
\newlabel{x:definition:def-graphic-sequence}{{9.1.33}{189}{Graph Isomorphisms}{section*.403}{}}
\newlabel{x:figure:fig-degree-sequence-example}{{9.1.34}{189}{Graph Isomorphisms}{section*.404}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {9.1.4}Next Steps}{190}{subsection.9.1.4}}
\newlabel{g:subsection:idm40459412032}{{9.1.4}{190}{Next Steps}{subsection.9.1.4}{}}
\newlabel{x:list:list-graph-prospectus}{{9.1.35}{190}{Next Steps}{section*.405}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {9.1.5}Exercises}{190}{subsection.9.1.5}}
\newlabel{x:exercises:exercises-9-1}{{9.1.5}{190}{Exercises}{subsection.9.1.5}{}}
\newlabel{x:figure:fig-exercise-9-1-6}{{9.1.36}{191}{Exercises}{section*.406}{}}
\newlabel{x:figure:fig-same-ds-9-1}{{9.1.37}{192}{Exercises}{section*.407}{}}
\@writefile{toc}{\contentsline {section}{\numberline {9.2}Data Structures for Graphs}{192}{section.9.2}}
\newlabel{x:section:s-data-structures-for-graphs}{{9.2}{192}{Data Structures for Graphs}{section.9.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {9.2.1}Basic Data Structures}{192}{subsection.9.2.1}}
\newlabel{x:subsection:ss-graph-data-structures}{{9.2.1}{192}{Basic Data Structures}{subsection.9.2.1}{}}
\newlabel{g:list:idm40459323488}{{9.2.1}{192}{Basic Data Structures}{section*.408}{}}
\newlabel{x:example:ex-data-structure-sample}{{9.2.2}{193}{Basic Data Structures}{section*.409}{}}
\newlabel{x:figure:fig-example-9-2-1}{{9.2.3}{193}{Basic Data Structures}{section*.410}{}}
\newlabel{x:example:ex-ncaa-bb}{{9.2.4}{193}{Basic Data Structures}{section*.411}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {9.2.2}Sage Graphs}{194}{subsection.9.2.2}}
\newlabel{x:subsection:sss-sage-graphs}{{9.2.2}{194}{Sage Graphs}{subsection.9.2.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {9.2.3}Exercises}{195}{subsection.9.2.3}}
\newlabel{x:exercises:exercises-9-2}{{9.2.3}{195}{Exercises}{subsection.9.2.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {9.3}Connectivity}{196}{section.9.3}}
\newlabel{x:section:s-Connectivity}{{9.3}{196}{Connectivity}{section.9.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {9.3.1}Preliminaries}{196}{subsection.9.3.1}}
\newlabel{x:subsection:ss-connectivity-prelim}{{9.3.1}{196}{Preliminaries}{subsection.9.3.1}{}}
\newlabel{g:note:idm40459261840}{{9.3.1}{196}{Preliminaries}{section*.412}{}}
\newlabel{x:theorem:theorem-9-3-1}{{9.3.2}{196}{Preliminaries}{section*.413}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {9.3.2}Adjacency Matrix Method}{196}{subsection.9.3.2}}
\newlabel{x:subsection:ss-adjacency-matrix-method}{{9.3.2}{196}{Adjacency Matrix Method}{subsection.9.3.2}{}}
\newlabel{g:algorithm:idm40459243568}{{9.3.3}{196}{Adjacency Matrix Method}{section*.414}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {9.3.3}Breadth-First Search}{197}{subsection.9.3.3}}
\newlabel{x:subsection:ss-breadth-first-search}{{9.3.3}{197}{Breadth-First Search}{subsection.9.3.3}{}}
\newlabel{g:list:idm40459225328}{{9.3.4}{197}{Breadth-First Search}{section*.415}{}}
\newlabel{g:note:idm40459218560}{{9.3.5}{198}{Breadth-First Search}{section*.416}{}}
\newlabel{g:list:idm40459217776}{{9.3.6}{198}{Breadth-First Search}{section*.417}{}}
\newlabel{g:list:idm40459211952}{{9.3.7}{198}{Breadth-First Search}{section*.418}{}}
\newlabel{g:aside:idm40459205856}{{9.3.3}{199}{Breadth-First Search}{section*.419}{}}
\newlabel{x:algorithm:alg-breadth-first}{{9.3.8}{199}{Breadth-First Search}{section*.420}{}}
\newlabel{g:list:idm40459176976}{{9.3.9}{199}{Breadth-First Search}{section*.421}{}}
\newlabel{x:example:ex-search-example}{{9.3.10}{200}{Breadth-First Search}{section*.422}{}}
\newlabel{x:figure:fig-example-9-3-1}{{9.3.11}{200}{Breadth-First Search}{section*.423}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {9.3.4}Graph Measurements}{201}{subsection.9.3.4}}
\newlabel{x:subsection:ss-ecc-rad-diameter}{{9.3.4}{201}{Graph Measurements}{subsection.9.3.4}{}}
\newlabel{x:example:e-computing-distances}{{9.3.12}{201}{Graph Measurements}{section*.424}{}}
\newlabel{x:figure:fig-compute-distance-graph}{{9.3.13}{201}{Graph Measurements}{section*.425}{}}
\newlabel{g:notation:idm40459148832}{{9.3.4}{202}{Graph Measurements}{section*.425}{}}
\newlabel{g:notation:idm40459147984}{{9.3.4}{202}{Graph Measurements}{section*.425}{}}
\newlabel{g:notation:idm40459146928}{{9.3.4}{202}{Graph Measurements}{section*.425}{}}
\newlabel{g:notation:idm40459145952}{{9.3.4}{202}{Graph Measurements}{section*.425}{}}
\newlabel{x:example:e-distance-matrix}{{9.3.14}{202}{Graph Measurements}{section*.426}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {9.3.5}SageMath Note - Graph Searching}{202}{subsection.9.3.5}}
\newlabel{x:subsection:ss-sage-note-search}{{9.3.5}{202}{SageMath Note - Graph Searching}{subsection.9.3.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {9.3.6}Exercises}{203}{subsection.9.3.6}}
\newlabel{x:exercises:exercises-9-3}{{9.3.6}{203}{Exercises}{subsection.9.3.6}{}}
\newlabel{x:figure:fig-exercise-9-3-4}{{9.3.15}{204}{Exercises}{section*.427}{}}
\@writefile{toc}{\contentsline {section}{\numberline {9.4}Traversals: Eulerian and Hamiltonian Graphs}{206}{section.9.4}}
\newlabel{x:section:s-traversals}{{9.4}{206}{Traversals: Eulerian and Hamiltonian Graphs}{section.9.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {9.4.1}Eulerian Graphs}{206}{subsection.9.4.1}}
\newlabel{x:subsection:ss-eulerian}{{9.4.1}{206}{Eulerian Graphs}{subsection.9.4.1}{}}
\newlabel{x:figure:fig-konigsberg-map}{{9.4.1}{206}{Eulerian Graphs}{section*.428}{}}
\newlabel{x:figure:fig-konigsberg-multigraph}{{9.4.2}{206}{Eulerian Graphs}{section*.429}{}}
\newlabel{x:theorem:th-euler-theorem-koenigsberg-case}{{9.4.3}{206}{Eulerian Graphs}{section*.430}{}}
\newlabel{x:definition:def-eulerian-paths-circuits-graphs}{{9.4.4}{206}{Eulerian Graphs}{section*.431}{}}
\newlabel{x:example:ex-an-eulerian-graph}{{9.4.5}{207}{Eulerian Graphs}{section*.432}{}}
\newlabel{x:figure:fig-eulerian-9-4}{{9.4.6}{207}{Eulerian Graphs}{section*.433}{}}
\newlabel{x:theorem:theorem-euler-theorem-general}{{9.4.7}{207}{Eulerian Graphs}{section*.434}{}}
\newlabel{x:figure:fig-path-augmentation}{{9.4.8}{208}{Eulerian Graphs}{section*.435}{}}
\newlabel{x:example:ex-complete-eulerian}{{9.4.9}{208}{Eulerian Graphs}{section*.436}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {9.4.2}Hamiltonian Graphs}{208}{subsection.9.4.2}}
\newlabel{x:subsection:ss-hamiltonian-graphs}{{9.4.2}{208}{Hamiltonian Graphs}{subsection.9.4.2}{}}
\newlabel{x:figure:fig-hamilton-stamp}{{9.4.10}{209}{Hamiltonian Graphs}{section*.437}{}}