This repository was archived by the owner on Jul 31, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.aux
More file actions
1437 lines (1437 loc) · 187 KB
/
main.aux
File metadata and controls
1437 lines (1437 loc) · 187 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
\relax
\providecommand\zref@newlabel[2]{}
\abx@aux@refcontext{nyt/global//global/global}
\providecommand\hyper@newdestlabel[2]{}
\providecommand\HyField@AuxAddToFields[1]{}
\providecommand\HyField@AuxAddToCoFields[2]{}
\providecommand\BKM@entry[2]{}
\pgfsyspdfmark {pgfid1}{6749099}{49000519}
\pgfsyspdfmark {pgfid2}{5594039}{48027987}
\pgfsyspdfmark {pgfid3}{5594039}{48033493}
\pgfsyspdfmark {pgfid4}{5594039}{48050247}
\BKM@entry{id=1,open,dest={706172742E31},color={.95294 .4 .09804},flags=2,srcline={233}}{5C3337365C3337375C303030495C3030305C3034305C303030495C3030306E5C303030745C303030725C3030306F5C303030645C303030755C303030635C303030745C3030306F5C303030725C303030795C3030305C3034305C303030545C3030306F5C303030705C303030695C303030635C30303073}
\ttl@writefile{ptc}{\ttl@starttoc{part@1}}
\pgfsyspdfmark {pgfid5}{5594039}{33587398}
\@writefile{toc}{\contentsline {part}{\numberline {I}Introductory Topics}{17}{part.1}\protected@file@percent }
\BKM@entry{id=2,open,dest={636861707465722E31},flags=2,srcline={9}}{5C3337365C3337375C303030315C3030305C3034305C3030304D5C303030615C303030745C303030685C303030655C3030306D5C303030615C303030745C303030695C303030635C303030615C3030306C5C3030305C3034305C303030505C303030725C3030306F5C3030306F5C303030665C3030305C3034305C303030535C303030745C303030725C303030615C303030745C303030655C303030675C30303079}
\BKM@entry{id=3,open,dest={73656374696F6E2E312E31},srcline={19}}{5C3337365C3337375C303030315C3030302E5C303030315C3030305C3034305C303030505C303030725C3030306F5C303030705C3030306F5C303030735C303030695C303030745C303030695C3030306F5C3030306E5C303030735C3030305C3034305C303030615C3030306E5C303030645C3030305C3034305C303030415C303030785C303030695C3030306F5C3030306D5C303030615C303030745C303030695C303030635C3030305C3034305C303030535C303030795C303030735C303030745C303030655C3030306D}
\@writefile{toc}{\contentsline {chapter}{\numberline {1}Mathematical Proof Strategy}{19}{chapter.1}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\pgfsyspdfmark {pgfid6}{5594039}{47971818}
\@writefile{toc}{\contentsline {section}{\numberline {1.1}Propositions and Axiomatic System}{19}{section.1.1}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-1}{\default{1.1}\page{19}\abspage{19}\mdf@pagevalue{19}}
\zref@newlabel{mdf@pagelabel-2}{\default{1.1}\page{20}\abspage{20}\mdf@pagevalue{20}}
\zref@newlabel{mdf@pagelabel-3}{\default{1.1}\page{21}\abspage{21}\mdf@pagevalue{21}}
\zref@newlabel{mdf@pagelabel-4}{\default{1.1}\page{21}\abspage{21}\mdf@pagevalue{21}}
\@writefile{loe}{\addvspace {10\p@ }}
\@writefile{loe}{\contentsline {lemma}{\ifthmt@listswap Lemma~1.1\else \numberline {1.1}Lemma\fi }{21}{lemma.1.1}\protected@file@percent }
\@writefile{loe}{\contentsline {lemma}{\ifthmt@listswap Lemma~1.2\else \numberline {1.2}Lemma\fi }{21}{lemma.1.2}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-5}{\default{1.1}\page{22}\abspage{22}\mdf@pagevalue{22}}
\zref@newlabel{mdf@pagelabel-6}{\default{1.1}\page{22}\abspage{22}\mdf@pagevalue{22}}
\zref@newlabel{mdf@pagelabel-7}{\default{1.1}\page{22}\abspage{22}\mdf@pagevalue{22}}
\BKM@entry{id=4,open,dest={73656374696F6E2E312E32},srcline={157}}{5C3337365C3337375C303030315C3030302E5C303030325C3030305C3034305C303030445C303030695C303030725C303030655C303030635C303030745C3030305C3034305C303030505C303030725C3030306F5C3030306F5C30303066}
\@writefile{toc}{\contentsline {section}{\numberline {1.2}Direct Proof}{23}{section.1.2}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {1.2.1}Exercises}{24}{subsection.1.2.1}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-8}{\default{1.2.1}\page{24}\abspage{24}\mdf@pagevalue{24}}
\zref@newlabel{mdf@pagelabel-9}{\default{1.2.1}\page{24}\abspage{24}\mdf@pagevalue{24}}
\BKM@entry{id=5,open,dest={73656374696F6E2E312E33},srcline={248}}{5C3337365C3337375C303030315C3030302E5C303030335C3030305C3034305C303030505C303030725C3030306F5C3030306F5C303030665C3030305C3034305C303030625C303030795C3030305C3034305C303030435C303030615C303030735C303030655C30303073}
\zref@newlabel{mdf@pagelabel-10}{\default{1.2.1}\page{25}\abspage{25}\mdf@pagevalue{25}}
\newlabel{ex1.3}{{1.3}{25}{}{exerciseT.1.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {1.3}Proof by Cases}{25}{section.1.3}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {1.3.1}Exercises}{26}{subsection.1.3.1}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-11}{\default{1.3.1}\page{26}\abspage{26}\mdf@pagevalue{26}}
\zref@newlabel{mdf@pagelabel-12}{\default{1.3.1}\page{26}\abspage{26}\mdf@pagevalue{26}}
\zref@newlabel{mdf@pagelabel-13}{\default{1.3.1}\page{27}\abspage{27}\mdf@pagevalue{27}}
\zref@newlabel{mdf@pagelabel-14}{\default{1.3.1}\page{27}\abspage{27}\mdf@pagevalue{27}}
\BKM@entry{id=6,open,dest={73656374696F6E2E312E34},srcline={405}}{5C3337365C3337375C303030315C3030302E5C303030345C3030305C3034305C303030495C3030306E5C303030645C303030695C303030725C303030655C303030635C303030745C3030305C3034305C303030505C303030725C3030306F5C3030306F5C30303066}
\@writefile{toc}{\contentsline {section}{\numberline {1.4}Indirect Proof}{28}{section.1.4}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {1.4.1}Proof by Contradiction}{28}{subsection.1.4.1}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-15}{\default{1.4.1}\page{29}\abspage{29}\mdf@pagevalue{29}}
\zref@newlabel{mdf@pagelabel-16}{\default{1.4.1}\page{30}\abspage{30}\mdf@pagevalue{30}}
\zref@newlabel{mdf@pagelabel-17}{\default{1.4.1}\page{31}\abspage{31}\mdf@pagevalue{31}}
\zref@newlabel{mdf@pagelabel-18}{\default{1.4.1}\page{31}\abspage{31}\mdf@pagevalue{31}}
\zref@newlabel{mdf@pagelabel-19}{\default{1.4.1}\page{31}\abspage{31}\mdf@pagevalue{31}}
\@writefile{toc}{\contentsline {subsection}{\numberline {1.4.2}Proof by Contrapositive}{32}{subsection.1.4.2}\protected@file@percent }
\newlabel{contrapos}{{1.4.2}{32}{Proof by Contrapositive}{subsection.1.4.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {1.4.3}Exercises}{32}{subsection.1.4.3}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-20}{\default{1.4.3}\page{32}\abspage{32}\mdf@pagevalue{32}}
\zref@newlabel{mdf@pagelabel-21}{\default{1.4.3}\page{32}\abspage{32}\mdf@pagevalue{32}}
\BKM@entry{id=7,open,dest={73656374696F6E2E312E35},srcline={642}}{5C3337365C3337375C303030315C3030302E5C303030355C3030305C3034305C3030304D5C303030615C303030745C303030685C303030655C3030306D5C303030615C303030745C303030695C303030635C303030615C3030306C5C3030305C3034305C303030495C3030306E5C303030645C303030755C303030635C303030745C303030695C3030306F5C3030306E}
\zref@newlabel{mdf@pagelabel-22}{\default{1.4.3}\page{33}\abspage{33}\mdf@pagevalue{33}}
\@writefile{toc}{\contentsline {section}{\numberline {1.5}Mathematical Induction}{33}{section.1.5}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {1.5.1}Framework of MI}{34}{subsection.1.5.1}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-23}{\default{1.5.1}\page{34}\abspage{34}\mdf@pagevalue{34}}
\newlabel{principle/induc}{{1.1}{34}{Principle of Induction}{theoremeT.1.1}{}}
\zref@newlabel{mdf@pagelabel-24}{\default{1.5}\page{34}\abspage{34}\mdf@pagevalue{34}}
\@writefile{toc}{\contentsline {subsection}{\numberline {1.5.2}Strong Mathematical Induction}{35}{subsection.1.5.2}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-25}{\default{1.6}\page{35}\abspage{35}\mdf@pagevalue{35}}
\@writefile{toc}{\contentsline {subsection}{\numberline {1.5.3}Exercises}{36}{subsection.1.5.3}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-27}{\default{1.5.3}\page{36}\abspage{36}\mdf@pagevalue{36}}
\zref@newlabel{mdf@pagelabel-26}{\default{1.16}\page{36}\abspage{36}\mdf@pagevalue{36}}
\zref@newlabel{mdf@pagelabel-28}{\default{1.5.3}\page{37}\abspage{37}\mdf@pagevalue{37}}
\zref@newlabel{mdf@pagelabel-29}{\default{1.5.3}\page{37}\abspage{37}\mdf@pagevalue{37}}
\zref@newlabel{mdf@pagelabel-30}{\default{1.5.3}\page{38}\abspage{38}\mdf@pagevalue{38}}
\zref@newlabel{mdf@pagelabel-31}{\default{1.5.3}\page{39}\abspage{39}\mdf@pagevalue{39}}
\zref@newlabel{mdf@pagelabel-32}{\default{1.5.3}\page{40}\abspage{40}\mdf@pagevalue{40}}
\zref@newlabel{mdf@pagelabel-33}{\default{1.5.3}\page{41}\abspage{41}\mdf@pagevalue{41}}
\BKM@entry{id=8,open,dest={636861707465722E32},flags=2,srcline={4}}{5C3337365C3337375C303030325C3030305C3034305C303030535C303030655C303030745C3030302C5C3030305C3034305C303030535C303030655C303030715C303030755C303030655C3030306E5C303030635C303030655C3030302C5C3030305C3034305C303030465C303030755C3030306E5C303030635C303030745C303030695C3030306F5C3030306E5C3030302C5C3030305C3034305C303030615C3030306E5C303030645C3030305C3034305C303030535C303030755C3030306D5C3030306D5C303030615C303030745C303030695C3030306F5C3030306E}
\BKM@entry{id=9,open,dest={73656374696F6E2E322E31},srcline={5}}{5C3337365C3337375C303030325C3030302E5C303030315C3030305C3034305C303030535C303030655C30303074}
\@writefile{toc}{\contentsline {chapter}{\numberline {2}Set, Sequence, Function, and Summation}{43}{chapter.2}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\pgfsyspdfmark {pgfid16}{5594039}{48050247}
\@writefile{toc}{\contentsline {section}{\numberline {2.1}Set}{43}{section.2.1}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-34}{\default{2.1}\page{43}\abspage{43}\mdf@pagevalue{43}}
\zref@newlabel{mdf@pagelabel-35}{\default{2.1}\page{43}\abspage{43}\mdf@pagevalue{43}}
\BKM@entry{id=10,open,dest={73656374696F6E2E322E32},srcline={57}}{5C3337365C3337375C303030325C3030302E5C303030325C3030305C3034305C303030505C303030725C3030306F5C303030705C303030655C303030725C303030745C303030695C303030655C303030735C3030305C3034305C3030306F5C303030665C3030305C3034305C303030535C303030655C303030745C303030735C3030305C3034305C303030775C303030695C303030745C303030685C3030305C3034305C303030505C303030725C3030306F5C3030306F5C303030665C30303073}
\zref@newlabel{mdf@pagelabel-36}{\default{2.1}\page{44}\abspage{44}\mdf@pagevalue{44}}
\zref@newlabel{mdf@pagelabel-37}{\default{2.1}\page{44}\abspage{44}\mdf@pagevalue{44}}
\zref@newlabel{mdf@pagelabel-38}{\default{2.1}\page{44}\abspage{44}\mdf@pagevalue{44}}
\@writefile{toc}{\contentsline {section}{\numberline {2.2}Properties of Sets with Proofs}{44}{section.2.2}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-39}{\default{2.2}\page{45}\abspage{45}\mdf@pagevalue{45}}
\zref@newlabel{mdf@pagelabel-40}{\default{2.2}\page{46}\abspage{46}\mdf@pagevalue{46}}
\zref@newlabel{mdf@pagelabel-41}{\default{2.2}\page{46}\abspage{46}\mdf@pagevalue{46}}
\zref@newlabel{mdf@pagelabel-42}{\default{2.2}\page{46}\abspage{46}\mdf@pagevalue{46}}
\zref@newlabel{mdf@pagelabel-43}{\default{2.2}\page{46}\abspage{46}\mdf@pagevalue{46}}
\zref@newlabel{mdf@pagelabel-44}{\default{2.2}\page{46}\abspage{46}\mdf@pagevalue{46}}
\newlabel{def:partition}{{2.11}{46}{Partition of Sets}{definitionT.2.11}{}}
\zref@newlabel{mdf@pagelabel-45}{\default{2.2}\page{47}\abspage{47}\mdf@pagevalue{47}}
\newlabel{IE}{{2.1}{47}{The Principle of Inclusion-Exclusion}{theoremeT.2.1}{}}
\zref@newlabel{mdf@pagelabel-46}{\default{2.2}\page{47}\abspage{47}\mdf@pagevalue{47}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.2.1}Exercises}{47}{subsection.2.2.1}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-47}{\default{2.2.1}\page{47}\abspage{47}\mdf@pagevalue{47}}
\zref@newlabel{mdf@pagelabel-48}{\default{2.2.1}\page{48}\abspage{48}\mdf@pagevalue{48}}
\zref@newlabel{mdf@pagelabel-49}{\default{2.2.1}\page{48}\abspage{48}\mdf@pagevalue{48}}
\zref@newlabel{mdf@pagelabel-50}{\default{2.2.1}\page{48}\abspage{48}\mdf@pagevalue{48}}
\zref@newlabel{mdf@pagelabel-51}{\default{2.2.1}\page{48}\abspage{48}\mdf@pagevalue{48}}
\zref@newlabel{mdf@pagelabel-52}{\default{2.2.1}\page{48}\abspage{48}\mdf@pagevalue{48}}
\zref@newlabel{mdf@pagelabel-53}{\default{2.2.1}\page{48}\abspage{48}\mdf@pagevalue{48}}
\BKM@entry{id=11,open,dest={73656374696F6E2E322E33},srcline={334}}{5C3337365C3337375C303030325C3030302E5C303030335C3030305C3034305C303030465C303030755C3030306E5C303030635C303030745C303030695C3030306F5C3030306E5C3030303A5C3030305C3034305C303030615C3030305C3034305C303030705C303030655C303030725C303030735C303030705C303030655C303030635C303030745C303030695C303030765C303030655C3030305C3034305C303030665C303030725C3030306F5C3030306D5C3030305C3034305C303030535C303030655C303030745C3030305C3034305C303030545C303030685C303030655C3030306F5C303030725C30303079}
\zref@newlabel{mdf@pagelabel-54}{\default{2.2.1}\page{49}\abspage{49}\mdf@pagevalue{49}}
\zref@newlabel{mdf@pagelabel-55}{\default{2.2.1}\page{49}\abspage{49}\mdf@pagevalue{49}}
\@writefile{toc}{\contentsline {section}{\numberline {2.3}Function: a perspective from Set Theory}{49}{section.2.3}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {2.3.1}Function and Operation on Function}{49}{subsection.2.3.1}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-56}{\default{2.3.1}\page{49}\abspage{49}\mdf@pagevalue{49}}
\@writefile{loe}{\addvspace {10\p@ }}
\@writefile{loe}{\contentsline {solution}{\ifthmt@listswap \else \numberline {\let \autodot \@empty }\fi Solution}{50}{thmt@dummyctr.dummy.3}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-57}{\default{2.3.1}\page{50}\abspage{50}\mdf@pagevalue{50}}
\zref@newlabel{mdf@pagelabel-58}{\default{2.3.1}\page{50}\abspage{50}\mdf@pagevalue{50}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.3.2}Elementary Functions and More on Cartesian Product}{50}{subsection.2.3.2}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-59}{\default{2.3.2}\page{50}\abspage{50}\mdf@pagevalue{50}}
\zref@newlabel{mdf@pagelabel-60}{\default{2.3.2}\page{51}\abspage{51}\mdf@pagevalue{51}}
\@writefile{lot}{\contentsline {table}{\numberline {2.1}{\ignorespaces Basic Elementary Functions}}{51}{table.2.1}\protected@file@percent }
\newlabel{tab:basic_functions}{{2.1}{51}{Basic Elementary Functions}{table.2.1}{}}
\@writefile{loe}{\contentsline {solution}{\ifthmt@listswap \else \numberline {\let \autodot \@empty }\fi Solution}{51}{thmt@dummyctr.dummy.4}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-61}{\default{}\page{51}\abspage{51}\mdf@pagevalue{51}}
\@writefile{lof}{\contentsline {figure}{\numberline {2.1}{\ignorespaces $f(x,y)=x+y$}}{52}{figure.2.1}\protected@file@percent }
\newlabel{fig:xy}{{2.1}{52}{$f(x,y)=x+y$}{figure.2.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {2.2}{\ignorespaces Visualization of $\mathbb {R}^1$ and $\mathbb {R}^2$}}{53}{figure.2.2}\protected@file@percent }
\newlabel{fig:r2}{{2.2}{53}{Visualization of $\R ^1$ and $\R ^2$}{figure.2.2}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {2.3}{\ignorespaces }}{54}{figure.2.3}\protected@file@percent }
\newlabel{fig:r3}{{2.3}{54}{}{figure.2.3}{}}
\zref@newlabel{mdf@pagelabel-62}{\default{2.3.2}\page{54}\abspage{54}\mdf@pagevalue{54}}
\zref@newlabel{mdf@pagelabel-63}{\default{2.3.2}\page{55}\abspage{55}\mdf@pagevalue{55}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.3.3}Partial and Total Function}{55}{subsection.2.3.3}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-64}{\default{2.3.3}\page{55}\abspage{55}\mdf@pagevalue{55}}
\zref@newlabel{mdf@pagelabel-65}{\default{2.3.3}\page{55}\abspage{55}\mdf@pagevalue{55}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.3.4}Injective, Surjective, and Bijective Function}{56}{subsection.2.3.4}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-66}{\default{2.3.4}\page{56}\abspage{56}\mdf@pagevalue{56}}
\zref@newlabel{mdf@pagelabel-67}{\default{2.3.4}\page{56}\abspage{56}\mdf@pagevalue{56}}
\zref@newlabel{mdf@pagelabel-68}{\default{2.3.4}\page{56}\abspage{56}\mdf@pagevalue{56}}
\@writefile{lof}{\contentsline {figure}{\numberline {2.4}{\ignorespaces Examples of Special Mappings}}{56}{figure.2.4}\protected@file@percent }
\newlabel{fig:fuc}{{2.4}{56}{Examples of Special Mappings}{figure.2.4}{}}
\zref@newlabel{mdf@pagelabel-69}{\default{2.3.4}\page{57}\abspage{57}\mdf@pagevalue{57}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.3.5}Exercises}{57}{subsection.2.3.5}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-70}{\default{2.3.5}\page{57}\abspage{57}\mdf@pagevalue{57}}
\@writefile{loe}{\contentsline {solution}{\ifthmt@listswap \else \numberline {\let \autodot \@empty }\fi Solution}{57}{thmt@dummyctr.dummy.5}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-71}{\default{2.3.5}\page{58}\abspage{58}\mdf@pagevalue{58}}
\zref@newlabel{mdf@pagelabel-72}{\default{2.3.5}\page{58}\abspage{58}\mdf@pagevalue{58}}
\@writefile{loe}{\contentsline {solution}{\ifthmt@listswap \else \numberline {\let \autodot \@empty }\fi Solution}{58}{thmt@dummyctr.dummy.6}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-73}{\default{2.3.5}\page{59}\abspage{59}\mdf@pagevalue{59}}
\@writefile{loe}{\contentsline {solution}{\ifthmt@listswap \else \numberline {\let \autodot \@empty }\fi Solution}{59}{thmt@dummyctr.dummy.7}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-74}{\default{2.3.5}\page{59}\abspage{59}\mdf@pagevalue{59}}
\@writefile{loe}{\contentsline {solution}{\ifthmt@listswap \else \numberline {\let \autodot \@empty }\fi Solution}{59}{thmt@dummyctr.dummy.8}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-75}{\default{2.3.5}\page{59}\abspage{59}\mdf@pagevalue{59}}
\@writefile{loe}{\contentsline {solution}{\ifthmt@listswap \else \numberline {\let \autodot \@empty }\fi Solution}{59}{thmt@dummyctr.dummy.9}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-76}{\default{2.3.5}\page{60}\abspage{60}\mdf@pagevalue{60}}
\zref@newlabel{mdf@pagelabel-77}{\default{2.3.5}\page{61}\abspage{61}\mdf@pagevalue{61}}
\zref@newlabel{mdf@pagelabel-78}{\default{2.3.5}\page{61}\abspage{61}\mdf@pagevalue{61}}
\zref@newlabel{mdf@pagelabel-79}{\default{2.3.5}\page{61}\abspage{61}\mdf@pagevalue{61}}
\@writefile{loe}{\contentsline {solution}{\ifthmt@listswap \else \numberline {\let \autodot \@empty }\fi Solution}{61}{thmt@dummyctr.dummy.10}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-80}{\default{2.3.5}\page{62}\abspage{62}\mdf@pagevalue{62}}
\@writefile{loe}{\contentsline {solution}{\ifthmt@listswap \else \numberline {\let \autodot \@empty }\fi Solution}{62}{thmt@dummyctr.dummy.11}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-81}{\default{2.3.5}\page{62}\abspage{62}\mdf@pagevalue{62}}
\@writefile{loe}{\contentsline {solution}{\ifthmt@listswap \else \numberline {\let \autodot \@empty }\fi Solution}{62}{thmt@dummyctr.dummy.12}\protected@file@percent }
\BKM@entry{id=12,open,dest={73656374696F6E2E322E34},srcline={1030}}{5C3337365C3337375C303030325C3030302E5C303030345C3030305C3034305C303030535C303030755C3030306D5C3030306D5C303030615C303030745C303030695C3030306F5C3030306E}
\zref@newlabel{mdf@pagelabel-82}{\default{2.3.5}\page{63}\abspage{63}\mdf@pagevalue{63}}
\@writefile{loe}{\contentsline {solution}{\ifthmt@listswap \else \numberline {\let \autodot \@empty }\fi Solution}{63}{thmt@dummyctr.dummy.13}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {2.4}Summation}{63}{section.2.4}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {2.4.1}Sigma Notation}{64}{subsection.2.4.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {2.4.2}Properties and Techniques of Sigma Notation}{64}{subsection.2.4.2}\protected@file@percent }
\newlabel{exp:siginvariance}{{2.7}{64}{}{exampleT.2.7}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {2.4.2.1}Manipulation of Sigma Notation}{65}{subsubsection.2.4.2.1}\protected@file@percent }
\newlabel{eq:constant_factor}{{2.1}{65}{Manipulation of Sigma Notation}{equation.2.4.1}{}}
\newlabel{eq:summation_of_sums}{{2.2}{65}{Manipulation of Sigma Notation}{equation.2.4.2}{}}
\newlabel{eq:permutation_invariance}{{2.3}{65}{Manipulation of Sigma Notation}{equation.2.4.3}{}}
\newlabel{eq:sum_of_sums}{{2.5}{65}{Manipulation of Sigma Notation}{equation.2.4.5}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {2.4.2.2}Multiple Sums}{66}{subsubsection.2.4.2.2}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {2.4.3}Exercises}{67}{subsection.2.4.3}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-83}{\default{2.4.3}\page{68}\abspage{68}\mdf@pagevalue{68}}
\zref@newlabel{mdf@pagelabel-84}{\default{2.4.3}\page{68}\abspage{68}\mdf@pagevalue{68}}
\zref@newlabel{mdf@pagelabel-85}{\default{2.4.3}\page{68}\abspage{68}\mdf@pagevalue{68}}
\zref@newlabel{mdf@pagelabel-86}{\default{2.4.3}\page{69}\abspage{69}\mdf@pagevalue{69}}
\zref@newlabel{mdf@pagelabel-87}{\default{2.4.3}\page{70}\abspage{70}\mdf@pagevalue{70}}
\@writefile{lof}{\contentsline {figure}{\numberline {2.5}{\ignorespaces Visualization of $\sum _{i=1}^{n} \sum _{j=1}^{n} (a_ib_j-a_jb_i)$}}{71}{figure.2.5}\protected@file@percent }
\BKM@entry{id=13,open,dest={73656374696F6E2E322E35},srcline={1363}}{5C3337365C3337375C303030325C3030302E5C303030355C3030305C3034305C303030535C303030655C303030715C303030755C303030655C3030306E5C303030635C30303065}
\@writefile{toc}{\contentsline {section}{\numberline {2.5}Sequence}{72}{section.2.5}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-88}{\default{2.5}\page{72}\abspage{72}\mdf@pagevalue{72}}
\newlabel{def_sequence}{{2.24}{72}{Sequence}{definitionT.2.24}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.5.1}Introduction}{72}{subsection.2.5.1}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-89}{\default{2.5.1}\page{73}\abspage{73}\mdf@pagevalue{73}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.5.2}Special Sequences}{73}{subsection.2.5.2}\protected@file@percent }
\@writefile{toc}{\contentsline {subsubsection}{\numberline {2.5.2.1}Algorithmic Sequence}{73}{subsubsection.2.5.2.1}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-90}{\default{2.5.2.1}\page{73}\abspage{73}\mdf@pagevalue{73}}
\zref@newlabel{mdf@pagelabel-91}{\default{2.5.2.1}\page{74}\abspage{74}\mdf@pagevalue{74}}
\zref@newlabel{mdf@pagelabel-92}{\default{2.5.2.1}\page{74}\abspage{74}\mdf@pagevalue{74}}
\zref@newlabel{mdf@pagelabel-93}{\default{2.5.2.1}\page{74}\abspage{74}\mdf@pagevalue{74}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {2.5.2.2}Geometric Sequence}{75}{subsubsection.2.5.2.2}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-94}{\default{2.5.2.2}\page{75}\abspage{75}\mdf@pagevalue{75}}
\zref@newlabel{mdf@pagelabel-95}{\default{2.5.2.2}\page{75}\abspage{75}\mdf@pagevalue{75}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {2.5.2.3}characteristic Sequence}{76}{subsubsection.2.5.2.3}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-96}{\default{2.5.2.3}\page{76}\abspage{76}\mdf@pagevalue{76}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.5.3}Exercises}{76}{subsection.2.5.3}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-97}{\default{2.5.3}\page{76}\abspage{76}\mdf@pagevalue{76}}
\zref@newlabel{mdf@pagelabel-98}{\default{2.5.3}\page{77}\abspage{77}\mdf@pagevalue{77}}
\zref@newlabel{mdf@pagelabel-99}{\default{2.5.3}\page{78}\abspage{78}\mdf@pagevalue{78}}
\zref@newlabel{mdf@pagelabel-100}{\default{2.5.3}\page{79}\abspage{79}\mdf@pagevalue{79}}
\zref@newlabel{mdf@pagelabel-101}{\default{2.5.3}\page{79}\abspage{79}\mdf@pagevalue{79}}
\BKM@entry{id=14,open,dest={636861707465722E33},flags=2,srcline={4}}{5C3337365C3337375C303030335C3030305C3034305C303030415C3030306C5C303030675C3030306F5C303030725C303030695C303030745C303030685C3030306D5C3030305C3034305C303030615C3030306E5C303030645C3030305C3034305C3030304E5C303030755C3030306D5C303030625C303030655C303030725C3030305C3034305C303030535C303030795C303030735C303030745C303030655C3030306D}
\BKM@entry{id=15,open,dest={73656374696F6E2E332E31},srcline={10}}{5C3337365C3337375C303030335C3030302E5C303030315C3030305C3034305C3030304E5C303030755C3030306D5C303030625C303030655C303030725C30303073}
\@writefile{toc}{\contentsline {chapter}{\numberline {3}Algorithm and Number System}{81}{chapter.3}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\pgfsyspdfmark {pgfid29}{5594039}{48050247}
\@writefile{toc}{\contentsline {section}{\numberline {3.1}Numbers}{81}{section.3.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {3.1.1}Typology of Numbers}{81}{subsection.3.1.1}\protected@file@percent }
\newlabel{sec:number}{{3.1.1}{81}{Typology of Numbers}{subsection.3.1.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {3.1}{\ignorespaces Venn Diagram of Number Sets}}{83}{figure.3.1}\protected@file@percent }
\newlabel{venn}{{3.1}{83}{Venn Diagram of Number Sets}{figure.3.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.1.2}The Real Number System}{83}{subsection.3.1.2}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-102}{\default{3.1.2}\page{83}\abspage{83}\mdf@pagevalue{83}}
\newlabel{axi:field}{{3.1}{83}{Field Axioms}{definitionT.3.1}{}}
\zref@newlabel{mdf@pagelabel-103}{\default{3.1.2}\page{84}\abspage{84}\mdf@pagevalue{84}}
\newlabel{axi:order}{{3.2}{84}{Order Axioms}{definitionT.3.2}{}}
\zref@newlabel{mdf@pagelabel-104}{\default{3.1.2}\page{84}\abspage{84}\mdf@pagevalue{84}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.1.3}Floor, Ceiling, and Remainder}{85}{subsection.3.1.3}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-105}{\default{3.1.3}\page{85}\abspage{85}\mdf@pagevalue{85}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.1.3.1}Properties of Integer Function}{85}{subsubsection.3.1.3.1}\protected@file@percent }
\@writefile{lof}{\contentsline {figure}{\numberline {3.2}{\ignorespaces Visualization of $\lceil x \rceil \text { and } \lfloor x \rfloor $}}{85}{figure.3.2}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-106}{\default{3.1.3.1}\page{86}\abspage{86}\mdf@pagevalue{86}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.1.3.2}Remainder and Integer Function}{86}{subsubsection.3.1.3.2}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-107}{\default{3.1.3.2}\page{86}\abspage{86}\mdf@pagevalue{86}}
\zref@newlabel{mdf@pagelabel-108}{\default{3.1.3.2}\page{87}\abspage{87}\mdf@pagevalue{87}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.1.4}exercises}{87}{subsection.3.1.4}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-109}{\default{3.1.4}\page{87}\abspage{87}\mdf@pagevalue{87}}
\zref@newlabel{mdf@pagelabel-110}{\default{3.1.4}\page{88}\abspage{88}\mdf@pagevalue{88}}
\zref@newlabel{mdf@pagelabel-111}{\default{3.1.4}\page{88}\abspage{88}\mdf@pagevalue{88}}
\BKM@entry{id=16,open,dest={73656374696F6E2E332E32},srcline={415}}{5C3337365C3337375C303030335C3030302E5C303030325C3030305C3034305C303030415C3030306C5C303030675C3030306F5C303030725C303030695C303030745C303030685C3030306D5C3030305C3034305C303030615C3030306E5C303030645C3030305C3034305C303030415C3030306C5C303030675C3030306F5C303030725C303030695C303030745C303030685C3030306D5C3030305C3034305C303030415C3030306E5C303030615C3030306C5C303030795C303030735C303030695C30303073}
\zref@newlabel{mdf@pagelabel-112}{\default{3.1.4}\page{89}\abspage{89}\mdf@pagevalue{89}}
\@writefile{toc}{\contentsline {section}{\numberline {3.2}Algorithm and Algorithm Analysis}{89}{section.3.2}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {3.2.1}Algorithm}{89}{subsection.3.2.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.2.1.1}What is an Algorithm?}{89}{subsubsection.3.2.1.1}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-113}{\default{3.2.1.1}\page{89}\abspage{89}\mdf@pagevalue{89}}
\newlabel{def:algo}{{3.5}{89}{Algorithm}{definitionT.3.5}{}}
\@writefile{lot}{\contentsline {table}{\numberline {3.1}{\ignorespaces Execution of RPM}}{90}{table.3.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.2.1.2}Pseudocode}{90}{subsubsection.3.2.1.2}\protected@file@percent }
\@writefile{loa}{\contentsline {algorithm}{\numberline {1}{\ignorespaces Russian Peasant Multiplication}}{91}{algorithm.1}\protected@file@percent }
\newlabel{alg:rpm}{{1}{91}{Pseudocode}{algorithm.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.2.2}Algorithm Analysis}{91}{subsection.3.2.2}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-114}{\default{3.2.2}\page{91}\abspage{91}\mdf@pagevalue{91}}
\newlabel{Big O}{{3.6}{91}{The Big O Notation}{definitionT.3.6}{}}
\zref@newlabel{mdf@pagelabel-115}{\default{3.2.2}\page{92}\abspage{92}\mdf@pagevalue{92}}
\@writefile{lot}{\contentsline {table}{\numberline {3.2}{\ignorespaces Common time complexities in Big O notation}}{92}{table.3.2}\protected@file@percent }
\@writefile{lof}{\contentsline {figure}{\numberline {3.3}{\ignorespaces Time Complexity Visualization}}{92}{figure.3.3}\protected@file@percent }
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.2.2.1}Time Complexity}{92}{subsubsection.3.2.2.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.2.2.2}Space Complexity}{93}{subsubsection.3.2.2.2}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {3.2.3}Exercises}{93}{subsection.3.2.3}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-116}{\default{3.2.3}\page{93}\abspage{93}\mdf@pagevalue{93}}
\zref@newlabel{mdf@pagelabel-117}{\default{3.2.3}\page{94}\abspage{94}\mdf@pagevalue{94}}
\@writefile{loa}{\contentsline {algorithm}{\numberline {2}{\ignorespaces Square and Multiply Algorithm}}{94}{algorithm.2}\protected@file@percent }
\BKM@entry{id=17,open,dest={636861707465722E34},flags=2,srcline={4}}{5C3337365C3337375C303030345C3030305C3034305C303030495C3030306E5C303030655C303030715C303030755C303030615C3030306C5C303030695C303030745C30303079}
\BKM@entry{id=18,open,dest={73656374696F6E2E342E31},srcline={8}}{5C3337365C3337375C303030345C3030302E5C303030315C3030305C3034305C303030495C3030306E5C303030655C303030715C303030755C303030615C3030306C5C303030695C303030745C303030795C3030305C3034305C303030625C303030615C303030735C303030695C303030635C30303073}
\@writefile{toc}{\contentsline {chapter}{\numberline {4}Inequality}{97}{chapter.4}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\pgfsyspdfmark {pgfid33}{5594039}{48050247}
\@writefile{toc}{\contentsline {section}{\numberline {4.1}Inequality basics}{97}{section.4.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {4.1.1}Exercises}{98}{subsection.4.1.1}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-118}{\default{4.1.1}\page{98}\abspage{98}\mdf@pagevalue{98}}
\zref@newlabel{mdf@pagelabel-119}{\default{4.1.1}\page{98}\abspage{98}\mdf@pagevalue{98}}
\BKM@entry{id=19,open,dest={73656374696F6E2E342E32},srcline={79}}{5C3337365C3337375C303030345C3030302E5C303030325C3030305C3034305C303030535C3030306F5C3030306C5C303030765C303030695C3030306E5C303030675C3030305C3034305C303030515C303030755C303030615C303030645C303030725C303030615C303030745C303030695C303030635C3030305C3034305C303030495C3030306E5C303030655C303030715C303030755C303030615C3030306C5C303030695C303030745C30303079}
\@writefile{toc}{\contentsline {section}{\numberline {4.2}Solving Quadratic Inequality}{99}{section.4.2}\protected@file@percent }
\@writefile{lof}{\contentsline {figure}{\numberline {4.1}{\ignorespaces Quadratic function graphs based on the discriminant.}}{99}{figure.4.1}\protected@file@percent }
\BKM@entry{id=20,open,dest={73656374696F6E2E342E33},srcline={113}}{5C3337365C3337375C303030345C3030302E5C303030335C3030305C3034305C303030695C3030306D5C303030705C3030306F5C303030725C303030745C303030615C3030306E5C303030745C3030305C3034305C303030495C3030306E5C303030655C303030715C303030755C303030615C3030306C5C303030695C303030745C303030695C303030655C30303073}
\@writefile{toc}{\contentsline {section}{\numberline {4.3}important Inequalities}{100}{section.4.3}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {4.3.1}The Triangle Inequality}{100}{subsection.4.3.1}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-120}{\default{4.3.1}\page{100}\abspage{100}\mdf@pagevalue{100}}
\newlabel{triangularineq}{{4.1}{100}{Triangular Inequality}{definitionT.4.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.2}{\ignorespaces Triangular Inequality: $ab < 0$}}{101}{figure.4.2}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-121}{\default{4.3.1}\page{101}\abspage{101}\mdf@pagevalue{101}}
\zref@newlabel{mdf@pagelabel-122}{\default{4.3.1}\page{101}\abspage{101}\mdf@pagevalue{101}}
\newlabel{trian}{{4.1}{101}{}{corollaryT.4.1}{}}
\zref@newlabel{mdf@pagelabel-123}{\default{4.3.1}\page{102}\abspage{102}\mdf@pagevalue{102}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.3.2}The Arithmetic-Geometric Mean Inequality}{102}{subsection.4.3.2}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-124}{\default{4.3.2}\page{102}\abspage{102}\mdf@pagevalue{102}}
\newlabel{AGM}{{4.2}{102}{AGM Inequality}{definitionT.4.2}{}}
\newlabel{agm1}{{4.1}{103}{The Arithmetic-Geometric Mean Inequality}{equation.4.3.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.3}{\ignorespaces AGM when $x_2 = 0$}}{104}{figure.4.3}\protected@file@percent }
\@writefile{lof}{\contentsline {figure}{\numberline {4.4}{\ignorespaces AGM when $x_2 = 5$}}{104}{figure.4.4}\protected@file@percent }
\@writefile{lof}{\contentsline {figure}{\numberline {4.5}{\ignorespaces AGM 3D Visualization}}{105}{figure.4.5}\protected@file@percent }
\@writefile{lof}{\contentsline {figure}{\numberline {4.6}{\ignorespaces AGM 3D Visualization (Front)}}{105}{figure.4.6}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-125}{\default{4.3.2}\page{106}\abspage{106}\mdf@pagevalue{106}}
\zref@newlabel{mdf@pagelabel-126}{\default{4.3.2}\page{106}\abspage{106}\mdf@pagevalue{106}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.3.3}Exercises}{106}{subsection.4.3.3}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-127}{\default{4.3.3}\page{106}\abspage{106}\mdf@pagevalue{106}}
\zref@newlabel{mdf@pagelabel-128}{\default{4.3.3}\page{107}\abspage{107}\mdf@pagevalue{107}}
\zref@newlabel{mdf@pagelabel-129}{\default{4.3.3}\page{107}\abspage{107}\mdf@pagevalue{107}}
\zref@newlabel{mdf@pagelabel-130}{\default{4.3.3}\page{108}\abspage{108}\mdf@pagevalue{108}}
\zref@newlabel{mdf@pagelabel-131}{\default{4.3.3}\page{109}\abspage{109}\mdf@pagevalue{109}}
\zref@newlabel{mdf@pagelabel-132}{\default{4.3.3}\page{109}\abspage{109}\mdf@pagevalue{109}}
\zref@newlabel{mdf@pagelabel-133}{\default{4.3.3}\page{110}\abspage{110}\mdf@pagevalue{110}}
\zref@newlabel{mdf@pagelabel-134}{\default{4.3.3}\page{111}\abspage{111}\mdf@pagevalue{111}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.3.4}Cauchy-Schwarz Inequality}{111}{subsection.4.3.4}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-135}{\default{4.3.4}\page{112}\abspage{112}\mdf@pagevalue{112}}
\newlabel{CSineq}{{4.2}{112}{Cauchy-Schwarz Inequality}{theoremeT.4.2}{}}
\newlabel{CSvec}{{4.2}{112}{Cauchy-Schwarz Inequality}{equation.4.3.2}{}}
\zref@newlabel{mdf@pagelabel-136}{\default{4.3.4}\page{113}\abspage{113}\mdf@pagevalue{113}}
\newlabel{CSvector}{{4.3}{113}{Cauchy-Schwarz Inequality(vector)}{theoremeT.4.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.3.5}Rearrangement Inequality}{113}{subsection.4.3.5}\protected@file@percent }
\newlabel{eq4.3}{{4.3}{113}{Rearrangement Inequality}{equation.4.3.3}{}}
\newlabel{eq4.4}{{4.4}{113}{Rearrangement Inequality}{equation.4.3.4}{}}
\zref@newlabel{mdf@pagelabel-137}{\default{4.3.5}\page{113}\abspage{113}\mdf@pagevalue{113}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.3.6}Exercises}{114}{subsection.4.3.6}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-138}{\default{4.3.6}\page{114}\abspage{114}\mdf@pagevalue{114}}
\zref@newlabel{mdf@pagelabel-139}{\default{4.3.6}\page{114}\abspage{114}\mdf@pagevalue{114}}
\zref@newlabel{mdf@pagelabel-140}{\default{4.3.6}\page{115}\abspage{115}\mdf@pagevalue{115}}
\zref@newlabel{mdf@pagelabel-141}{\default{4.3.6}\page{115}\abspage{115}\mdf@pagevalue{115}}
\zref@newlabel{mdf@pagelabel-142}{\default{4.3.6}\page{116}\abspage{116}\mdf@pagevalue{116}}
\zref@newlabel{mdf@pagelabel-143}{\default{4.3.6}\page{116}\abspage{116}\mdf@pagevalue{116}}
\zref@newlabel{mdf@pagelabel-144}{\default{4.3.6}\page{117}\abspage{117}\mdf@pagevalue{117}}
\zref@newlabel{mdf@pagelabel-145}{\default{4.3.6}\page{117}\abspage{117}\mdf@pagevalue{117}}
\newlabel{gcsineq}{{4.5}{117}{Generalized Cauchy-Schwarz Inequality (vector)}{theoremeT.4.5}{}}
\zref@newlabel{mdf@pagelabel-146}{\default{4.3.6}\page{118}\abspage{118}\mdf@pagevalue{118}}
\zref@newlabel{mdf@pagelabel-148}{\default{4.3.6}\page{119}\abspage{119}\mdf@pagevalue{119}}
\zref@newlabel{mdf@pagelabel-147}{\default{4.17}\page{119}\abspage{119}\mdf@pagevalue{119}}
\zref@newlabel{mdf@pagelabel-149}{\default{4.3.6}\page{120}\abspage{120}\mdf@pagevalue{120}}
\zref@newlabel{mdf@pagelabel-150}{\default{4.3.6}\page{122}\abspage{122}\mdf@pagevalue{122}}
\zref@newlabel{mdf@pagelabel-151}{\default{4.3.6}\page{122}\abspage{122}\mdf@pagevalue{122}}
\zref@newlabel{mdf@pagelabel-152}{\default{4.3.6}\page{123}\abspage{123}\mdf@pagevalue{123}}
\zref@newlabel{mdf@pagelabel-153}{\default{4.3.6}\page{123}\abspage{123}\mdf@pagevalue{123}}
\BKM@entry{id=21,open,dest={636861707465722E35},flags=2,srcline={4}}{5C3337365C3337375C303030355C3030305C3034305C303030435C3030306F5C3030306D5C303030705C3030306C5C303030655C303030785C3030305C3034305C3030304E5C303030755C3030306D5C303030625C303030655C30303072}
\@writefile{toc}{\contentsline {chapter}{\numberline {5}Complex Number}{125}{chapter.5}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\pgfsyspdfmark {pgfid38}{5594039}{47834195}
\zref@newlabel{mdf@pagelabel-154}{\default{5}\page{125}\abspage{125}\mdf@pagevalue{125}}
\zref@newlabel{mdf@pagelabel-155}{\default{5}\page{125}\abspage{125}\mdf@pagevalue{125}}
\zref@newlabel{mdf@pagelabel-156}{\default{5}\page{125}\abspage{125}\mdf@pagevalue{125}}
\BKM@entry{id=22,open,dest={73656374696F6E2E352E31},srcline={58}}{5C3337365C3337375C303030355C3030302E5C303030315C3030305C3034305C303030415C3030306C5C303030675C303030655C303030625C303030725C303030615C3030305C3034305C3030306F5C303030665C3030305C3034305C303030435C3030306F5C3030306D5C303030705C3030306C5C303030655C303030785C3030305C3034305C3030304E5C303030755C3030306D5C303030625C303030655C30303072}
\@writefile{toc}{\contentsline {section}{\numberline {5.1}Algebra of Complex Number}{126}{section.5.1}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-157}{\default{5.1}\page{126}\abspage{126}\mdf@pagevalue{126}}
\zref@newlabel{mdf@pagelabel-158}{\default{5.1}\page{126}\abspage{126}\mdf@pagevalue{126}}
\zref@newlabel{mdf@pagelabel-159}{\default{5.1}\page{127}\abspage{127}\mdf@pagevalue{127}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.1.1}Exercises}{127}{subsection.5.1.1}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-160}{\default{5.1.1}\page{127}\abspage{127}\mdf@pagevalue{127}}
\zref@newlabel{mdf@pagelabel-161}{\default{5.1.1}\page{127}\abspage{127}\mdf@pagevalue{127}}
\zref@newlabel{mdf@pagelabel-162}{\default{5.1.1}\page{127}\abspage{127}\mdf@pagevalue{127}}
\zref@newlabel{mdf@pagelabel-163}{\default{5.1.1}\page{127}\abspage{127}\mdf@pagevalue{127}}
\zref@newlabel{mdf@pagelabel-164}{\default{5.1.1}\page{127}\abspage{127}\mdf@pagevalue{127}}
\zref@newlabel{mdf@pagelabel-165}{\default{5.1.1}\page{128}\abspage{128}\mdf@pagevalue{128}}
\zref@newlabel{mdf@pagelabel-166}{\default{5.1.1}\page{128}\abspage{128}\mdf@pagevalue{128}}
\zref@newlabel{mdf@pagelabel-167}{\default{5.1.1}\page{128}\abspage{128}\mdf@pagevalue{128}}
\BKM@entry{id=23,open,dest={73656374696F6E2E352E32},srcline={224}}{5C3337365C3337375C303030355C3030302E5C303030325C3030305C3034305C303030505C3030306F5C303030695C3030306E5C303030745C3030305C3034305C303030725C303030655C303030705C303030725C303030655C303030735C303030655C3030306E5C303030745C303030615C303030745C303030695C3030306F5C3030306E5C3030305C3034305C3030306F5C303030665C3030305C3034305C303030435C3030306F5C3030306D5C303030705C3030306C5C303030655C303030785C3030305C3034305C3030304E5C303030755C3030306D5C303030625C303030655C30303072}
\zref@newlabel{mdf@pagelabel-168}{\default{5.1.1}\page{129}\abspage{129}\mdf@pagevalue{129}}
\@writefile{loa}{\contentsline {algorithm}{\numberline {3}{\ignorespaces Karatsuba's algorithm for multiplying two complex numbers}}{129}{algorithm.3}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {5.2}Point representation of Complex Number}{129}{section.5.2}\protected@file@percent }
\@writefile{lof}{\contentsline {figure}{\numberline {5.1}{\ignorespaces Complex Plane}}{129}{figure.5.1}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-169}{\default{5.2}\page{130}\abspage{130}\mdf@pagevalue{130}}
\zref@newlabel{mdf@pagelabel-170}{\default{5.2}\page{130}\abspage{130}\mdf@pagevalue{130}}
\zref@newlabel{mdf@pagelabel-171}{\default{5.2}\page{130}\abspage{130}\mdf@pagevalue{130}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.2}{\ignorespaces Complex Conjugate}}{131}{figure.5.2}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {5.2.1}Exercises}{132}{subsection.5.2.1}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-172}{\default{5.2.1}\page{132}\abspage{132}\mdf@pagevalue{132}}
\zref@newlabel{mdf@pagelabel-173}{\default{5.2.1}\page{132}\abspage{132}\mdf@pagevalue{132}}
\zref@newlabel{mdf@pagelabel-174}{\default{5.2.1}\page{133}\abspage{133}\mdf@pagevalue{133}}
\zref@newlabel{mdf@pagelabel-175}{\default{5.2.1}\page{133}\abspage{133}\mdf@pagevalue{133}}
\zref@newlabel{mdf@pagelabel-176}{\default{5.2.1}\page{133}\abspage{133}\mdf@pagevalue{133}}
\zref@newlabel{mdf@pagelabel-177}{\default{5.2.1}\page{133}\abspage{133}\mdf@pagevalue{133}}
\newlabel{conjugate root}{{5.14}{133}{}{exerciseT.5.14}{}}
\zref@newlabel{mdf@pagelabel-178}{\default{5.2.1}\page{134}\abspage{134}\mdf@pagevalue{134}}
\BKM@entry{id=24,open,dest={73656374696F6E2E352E33},srcline={486}}{5C3337365C3337375C303030355C3030302E5C303030335C3030305C3034305C303030565C303030655C303030635C303030745C3030306F5C303030725C3030305C3034305C303030615C3030306E5C303030645C3030305C3034305C303030505C3030306F5C3030306C5C303030615C303030725C3030305C3034305C303030465C3030306F5C303030725C3030306D}
\@writefile{toc}{\contentsline {section}{\numberline {5.3}Vector and Polar Form}{135}{section.5.3}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {5.3.1}Vector Form of Complex Number}{135}{subsection.5.3.1}\protected@file@percent }
\newlabel{vec}{{5.3.1}{136}{Vector Form of Complex Number}{subsection.5.3.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.3}{\ignorespaces Complex Number as Vector}}{136}{figure.5.3}\protected@file@percent }
\newlabel{parrl}{{5.3.1}{136}{Vector Form of Complex Number}{figure.5.3}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.4}{\ignorespaces Parallelogram Law}}{136}{figure.5.4}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {5.3.2}Polar Form of Complex Number}{137}{subsection.5.3.2}\protected@file@percent }
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.3.2.1}The Polar Coordinate}{137}{subsubsection.5.3.2.1}\protected@file@percent }
\newlabel{polar}{{5.3.2.1}{137}{The Polar Coordinate}{subsubsection.5.3.2.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.5}{\ignorespaces Complex Number in Polar Coordinate}}{137}{figure.5.5}\protected@file@percent }
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.3.2.2}Polar Expression of Complex Number}{137}{subsubsection.5.3.2.2}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-179}{\default{5.3.2.2}\page{138}\abspage{138}\mdf@pagevalue{138}}
\newlabel{polarform}{{5.10}{138}{Arguement of Complex Number}{definitionT.5.10}{}}
\newlabel{polarprod}{{5.7}{139}{Polar Expression of Complex Number}{equation.5.3.7}{}}
\newlabel{5.8}{{5.8}{139}{Polar Expression of Complex Number}{equation.5.3.8}{}}
\newlabel{5.9}{{5.9}{139}{Polar Expression of Complex Number}{equation.5.3.9}{}}
\newlabel{5.10}{{5.10}{139}{Polar Expression of Complex Number}{equation.5.3.10}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.3.3}Exercises}{140}{subsection.5.3.3}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-180}{\default{5.3.3}\page{140}\abspage{140}\mdf@pagevalue{140}}
\zref@newlabel{mdf@pagelabel-181}{\default{5.3.3}\page{140}\abspage{140}\mdf@pagevalue{140}}
\zref@newlabel{mdf@pagelabel-182}{\default{5.3.3}\page{140}\abspage{140}\mdf@pagevalue{140}}
\zref@newlabel{mdf@pagelabel-183}{\default{5.3.3}\page{140}\abspage{140}\mdf@pagevalue{140}}
\zref@newlabel{mdf@pagelabel-184}{\default{5.3.3}\page{141}\abspage{141}\mdf@pagevalue{141}}
\zref@newlabel{mdf@pagelabel-185}{\default{5.3.3}\page{141}\abspage{141}\mdf@pagevalue{141}}
\zref@newlabel{mdf@pagelabel-186}{\default{5.3.3}\page{142}\abspage{142}\mdf@pagevalue{142}}
\zref@newlabel{mdf@pagelabel-187}{\default{5.3.3}\page{143}\abspage{143}\mdf@pagevalue{143}}
\BKM@entry{id=25,open,dest={73656374696F6E2E352E34},srcline={880}}{5C3337365C3337375C303030355C3030302E5C303030345C3030305C3034305C303030455C303030785C303030705C3030306F5C3030306E5C303030655C3030306E5C303030745C303030695C303030615C3030306C5C3030305C3034305C303030465C3030306F5C303030725C3030306D}
\zref@newlabel{mdf@pagelabel-188}{\default{5.3.3}\page{144}\abspage{144}\mdf@pagevalue{144}}
\@writefile{toc}{\contentsline {section}{\numberline {5.4}Exponential Form}{144}{section.5.4}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-189}{\default{5.4}\page{144}\abspage{144}\mdf@pagevalue{144}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.4.1}De Moivre's Theorem}{146}{subsection.5.4.1}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-190}{\default{5.4.1}\page{146}\abspage{146}\mdf@pagevalue{146}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.4.2}Exercises}{147}{subsection.5.4.2}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-191}{\default{5.4.2}\page{147}\abspage{147}\mdf@pagevalue{147}}
\zref@newlabel{mdf@pagelabel-192}{\default{5.4.2}\page{147}\abspage{147}\mdf@pagevalue{147}}
\zref@newlabel{mdf@pagelabel-193}{\default{5.4.2}\page{148}\abspage{148}\mdf@pagevalue{148}}
\zref@newlabel{mdf@pagelabel-194}{\default{5.4.2}\page{148}\abspage{148}\mdf@pagevalue{148}}
\zref@newlabel{mdf@pagelabel-195}{\default{5.4.2}\page{148}\abspage{148}\mdf@pagevalue{148}}
\zref@newlabel{mdf@pagelabel-196}{\default{5.4.2}\page{149}\abspage{149}\mdf@pagevalue{149}}
\BKM@entry{id=26,open,dest={73656374696F6E2E352E35},srcline={1190}}{5C3337365C3337375C303030355C3030302E5C303030355C3030305C3034305C303030465C303030695C3030306E5C303030645C303030695C3030306E5C303030675C3030305C3034305C303030435C3030306F5C3030306D5C303030705C3030306C5C303030655C303030785C3030305C3034305C303030525C3030306F5C3030306F5C303030745C30303073}
\zref@newlabel{mdf@pagelabel-197}{\default{5.4.2}\page{150}\abspage{150}\mdf@pagevalue{150}}
\@writefile{toc}{\contentsline {section}{\numberline {5.5}Finding Complex Roots}{150}{section.5.5}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {5.5.1}Solving Quadratic Equations Over the Complex Numbers}{150}{subsection.5.5.1}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-198}{\default{5.5.1}\page{151}\abspage{151}\mdf@pagevalue{151}}
\zref@newlabel{mdf@pagelabel-199}{\default{5.5.1}\page{152}\abspage{152}\mdf@pagevalue{152}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.5.2}Solving Polynomial Equations on Complex Number}{153}{subsection.5.5.2}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-200}{\default{5.5.2}\page{153}\abspage{153}\mdf@pagevalue{153}}
\zref@newlabel{mdf@pagelabel-201}{\default{5.5.2}\page{153}\abspage{153}\mdf@pagevalue{153}}
\zref@newlabel{mdf@pagelabel-202}{\default{5.5.2}\page{153}\abspage{153}\mdf@pagevalue{153}}
\zref@newlabel{mdf@pagelabel-203}{\default{5.5.2}\page{154}\abspage{154}\mdf@pagevalue{154}}
\zref@newlabel{mdf@pagelabel-204}{\default{5.5.2}\page{156}\abspage{156}\mdf@pagevalue{156}}
\zref@newlabel{mdf@pagelabel-205}{\default{5.5.2}\page{157}\abspage{157}\mdf@pagevalue{157}}
\zref@newlabel{mdf@pagelabel-206}{\default{5.5.2}\page{157}\abspage{157}\mdf@pagevalue{157}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.5.3}Solving Equation with De Moivre's Theorem}{157}{subsection.5.5.3}\protected@file@percent }
\@writefile{lof}{\contentsline {figure}{\numberline {5.6}{\ignorespaces Solutions for $z^3=1$}}{158}{figure.5.6}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-207}{\default{5.5.3}\page{159}\abspage{159}\mdf@pagevalue{159}}
\newlabel{mthroot}{{5.28}{159}{Solving Equation with De Moivre's Theorem}{equation.5.5.28}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.5.4}Exercises}{160}{subsection.5.5.4}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-208}{\default{5.5.4}\page{160}\abspage{160}\mdf@pagevalue{160}}
\zref@newlabel{mdf@pagelabel-209}{\default{5.5.4}\page{160}\abspage{160}\mdf@pagevalue{160}}
\zref@newlabel{mdf@pagelabel-210}{\default{5.5.4}\page{161}\abspage{161}\mdf@pagevalue{161}}
\zref@newlabel{mdf@pagelabel-211}{\default{5.5.4}\page{162}\abspage{162}\mdf@pagevalue{162}}
\zref@newlabel{mdf@pagelabel-212}{\default{5.5.4}\page{162}\abspage{162}\mdf@pagevalue{162}}
\zref@newlabel{mdf@pagelabel-213}{\default{5.5.4}\page{162}\abspage{162}\mdf@pagevalue{162}}
\zref@newlabel{mdf@pagelabel-214}{\default{5.5.4}\page{163}\abspage{163}\mdf@pagevalue{163}}
\zref@newlabel{mdf@pagelabel-215}{\default{5.5.4}\page{164}\abspage{164}\mdf@pagevalue{164}}
\zref@newlabel{mdf@pagelabel-216}{\default{5.5.4}\page{164}\abspage{164}\mdf@pagevalue{164}}
\BKM@entry{id=27,open,dest={706172742E32},color={.95294 .4 .09804},flags=2,srcline={240}}{5C3337365C3337375C303030495C303030495C3030305C3034305C303030465C303030755C303030725C303030745C303030685C303030655C303030725C3030305C3034305C303030445C303030695C303030735C303030635C303030725C303030655C303030745C303030655C3030305C3034305C3030304D5C303030615C303030745C303030685C303030655C3030306D5C303030615C303030745C303030695C303030635C303030735C3030305C3034305C303030615C3030306E5C303030645C3030305C3034305C303030545C303030685C303030655C3030306F5C303030725C303030695C303030655C30303073}
\ttl@writefile{ptc}{\ttl@stoptoc{part@1}}
\ttl@writefile{ptc}{\ttl@starttoc{part@2}}
\pgfsyspdfmark {pgfid42}{5594039}{33587398}
\@writefile{toc}{\contentsline {part}{\numberline {II}Further Discrete Mathematics and Theories}{167}{part.2}\protected@file@percent }
\BKM@entry{id=28,open,dest={636861707465722E36},flags=2,srcline={4}}{5C3337365C3337375C303030365C3030305C3034305C303030425C3030306F5C3030306F5C3030306C5C303030655C303030615C3030306E5C3030305C3034305C303030415C3030306C5C303030675C303030655C303030625C303030725C303030615C3030305C3034305C303030615C3030306E5C303030645C3030305C3034305C303030465C303030755C303030725C303030745C303030685C303030655C303030725C3030305C3034305C3030304C5C3030306F5C303030675C303030695C30303063}
\BKM@entry{id=29,open,dest={73656374696F6E2E362E31},srcline={11}}{5C3337365C3337375C303030365C3030302E5C303030315C3030305C3034305C303030425C3030306F5C3030306F5C3030306C5C303030655C303030615C3030306E5C3030305C3034305C303030455C303030785C303030705C303030725C303030655C303030735C303030735C303030695C3030306F5C3030306E5C3030305C3034305C303030615C3030306E5C303030645C3030305C3034305C303030545C303030725C303030755C303030745C303030685C3030305C3034305C303030545C303030615C303030625C3030306C5C30303065}
\@writefile{toc}{\contentsline {chapter}{\numberline {6}Boolean Algebra and Further Logic}{169}{chapter.6}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\pgfsyspdfmark {pgfid43}{5594039}{48050247}
\@writefile{toc}{\contentsline {section}{\numberline {6.1}Boolean Expression and Truth Table}{169}{section.6.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {6.1.1}Property of Algebra Operation}{169}{subsection.6.1.1}\protected@file@percent }
\newlabel{algelaw}{{6.1.1}{169}{Property of Algebra Operation}{subsection.6.1.1}{}}
\@writefile{lot}{\contentsline {table}{\numberline {6.1}{\ignorespaces Common Algebraic Laws}}{169}{table.6.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {6.1.2}Boolean Expression and Truth Table}{170}{subsection.6.1.2}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-217}{\default{6.1.2}\page{170}\abspage{170}\mdf@pagevalue{170}}
\zref@newlabel{mdf@pagelabel-218}{\default{6.1.2}\page{171}\abspage{171}\mdf@pagevalue{171}}
\newlabel{truthtab}{{6.1.2}{171}{Boolean Expression and Truth Table}{definitionT.6.2}{}}
\@writefile{lot}{\contentsline {table}{\numberline {6.2}{\ignorespaces Common Boolean Operators Truth Tables}}{171}{table.6.2}\protected@file@percent }
\newlabel{xor}{{6.1}{171}{Boolean Expression and Truth Table}{equation.6.1.1}{}}
\@writefile{lot}{\contentsline {table}{\numberline {6.3}{\ignorespaces Addition and Multiplication Rule of 0 and 1}}{172}{table.6.3}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {6.1.3}Boolean Identities}{172}{subsection.6.1.3}\protected@file@percent }
\@writefile{lot}{\contentsline {table}{\numberline {6.4}{\ignorespaces Truth table for \((A \land \neg B) \lor (\neg A \land B)\)}}{172}{table.6.4}\protected@file@percent }
\@writefile{lot}{\contentsline {table}{\numberline {6.5}{\ignorespaces Basic Boolean Identities}}{172}{table.6.5}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-219}{\default{6.1.3}\page{173}\abspage{173}\mdf@pagevalue{173}}
\zref@newlabel{mdf@pagelabel-220}{\default{6.1.3}\page{173}\abspage{173}\mdf@pagevalue{173}}
\@writefile{lot}{\contentsline {table}{\numberline {6.6}{\ignorespaces Truth values of material conditional, biconditional, and XOR for all possible inputs.}}{174}{table.6.6}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {6.1.4}Exercises}{175}{subsection.6.1.4}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-221}{\default{6.1.4}\page{175}\abspage{175}\mdf@pagevalue{175}}
\zref@newlabel{mdf@pagelabel-222}{\default{6.1.4}\page{176}\abspage{176}\mdf@pagevalue{176}}
\zref@newlabel{mdf@pagelabel-223}{\default{6.1.4}\page{176}\abspage{176}\mdf@pagevalue{176}}
\zref@newlabel{mdf@pagelabel-224}{\default{6.1.4}\page{176}\abspage{176}\mdf@pagevalue{176}}
\zref@newlabel{mdf@pagelabel-225}{\default{6.1.4}\page{177}\abspage{177}\mdf@pagevalue{177}}
\zref@newlabel{mdf@pagelabel-226}{\default{6.1.4}\page{177}\abspage{177}\mdf@pagevalue{177}}
\@writefile{lot}{\contentsline {table}{\numberline {6.7}{\ignorespaces Truth table for the expression \( x \lor ((\lnot y) \land (\lnot z)) \)}}{177}{table.6.7}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-227}{\default{6.1.4}\page{177}\abspage{177}\mdf@pagevalue{177}}
\BKM@entry{id=30,open,dest={73656374696F6E2E362E32},srcline={586}}{5C3337365C3337375C303030365C3030302E5C303030325C3030305C3034305C303030425C3030306F5C3030306F5C3030306C5C303030655C303030615C3030306E5C3030305C3034305C303030465C303030755C3030306E5C303030635C303030745C303030695C3030306F5C3030306E}
\zref@newlabel{mdf@pagelabel-228}{\default{6.1.4}\page{178}\abspage{178}\mdf@pagevalue{178}}
\@writefile{toc}{\contentsline {section}{\numberline {6.2}Boolean Function}{178}{section.6.2}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-229}{\default{6.2}\page{178}\abspage{178}\mdf@pagevalue{178}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.2.1}Representation of Boolean Function}{179}{subsection.6.2.1}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-230}{\default{6.2.1}\page{179}\abspage{179}\mdf@pagevalue{179}}
\zref@newlabel{mdf@pagelabel-231}{\default{6.2.1}\page{179}\abspage{179}\mdf@pagevalue{179}}
\zref@newlabel{mdf@pagelabel-232}{\default{6.2.1}\page{180}\abspage{180}\mdf@pagevalue{180}}
\@writefile{loe}{\addvspace {10\p@ }}
\@writefile{loe}{\contentsline {solution}{\ifthmt@listswap \else \numberline {\let \autodot \@empty }\fi Solution}{181}{thmt@dummyctr.dummy.14}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {6.2.2}Properties of Boolean Function}{181}{subsection.6.2.2}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-233}{\default{6.2.2}\page{181}\abspage{181}\mdf@pagevalue{181}}
\zref@newlabel{mdf@pagelabel-234}{\default{6.2.2}\page{182}\abspage{182}\mdf@pagevalue{182}}
\zref@newlabel{mdf@pagelabel-235}{\default{6.2.2}\page{184}\abspage{184}\mdf@pagevalue{184}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.2.3}Simplification of Boolean Function}{185}{subsection.6.2.3}\protected@file@percent }
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.2.3.1}Simplification by Boolean Laws (Algebra)}{185}{subsubsection.6.2.3.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.2.3.2}Simplification by Karnaugh Maps}{185}{subsubsection.6.2.3.2}\protected@file@percent }
\@writefile{lof}{\contentsline {figure}{\numberline {6.1}{\ignorespaces K-map and Grouped K-map of $F_1$}}{187}{figure.6.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {6.2.4}Simplification by Quine-McCluskey Method}{188}{subsection.6.2.4}\protected@file@percent }
\@writefile{loa}{\contentsline {algorithm}{\numberline {4}{\ignorespaces Quine–McCluskey Algorithm}}{189}{algorithm.4}\protected@file@percent }
\newlabel{alg:quine_mccluskey}{{4}{189}{Simplification by Quine-McCluskey Method}{algorithm.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.2.5}Exercises}{189}{subsection.6.2.5}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-236}{\default{6.2.5}\page{189}\abspage{189}\mdf@pagevalue{189}}
\@writefile{loe}{\contentsline {solution}{\ifthmt@listswap \else \numberline {\let \autodot \@empty }\fi Solution}{189}{thmt@dummyctr.dummy.15}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-237}{\default{6.2.5}\page{190}\abspage{190}\mdf@pagevalue{190}}
\zref@newlabel{mdf@pagelabel-238}{\default{6.2.5}\page{190}\abspage{190}\mdf@pagevalue{190}}
\zref@newlabel{mdf@pagelabel-239}{\default{6.2.5}\page{190}\abspage{190}\mdf@pagevalue{190}}
\zref@newlabel{mdf@pagelabel-240}{\default{6.2.5}\page{191}\abspage{191}\mdf@pagevalue{191}}
\@writefile{loe}{\contentsline {solution}{\ifthmt@listswap \else \numberline {\let \autodot \@empty }\fi Solution}{191}{thmt@dummyctr.dummy.16}\protected@file@percent }
\@writefile{lof}{\contentsline {figure}{\numberline {6.2}{\ignorespaces Karnaugh Map of $F_1$ and $F_2$ after Grouping}}{191}{figure.6.2}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-241}{\default{6.2.5}\page{192}\abspage{192}\mdf@pagevalue{192}}
\@writefile{loe}{\contentsline {solution}{\ifthmt@listswap \else \numberline {\let \autodot \@empty }\fi Solution}{192}{thmt@dummyctr.dummy.17}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-242}{\default{6.2.5}\page{192}\abspage{192}\mdf@pagevalue{192}}
\@writefile{loe}{\contentsline {solution}{\ifthmt@listswap \else \numberline {\let \autodot \@empty }\fi Solution}{192}{thmt@dummyctr.dummy.18}\protected@file@percent }
\BKM@entry{id=31,open,dest={73656374696F6E2E362E33},srcline={1325}}{5C3337365C3337375C303030365C3030302E5C303030335C3030305C3034305C303030505C303030725C303030655C303030645C303030695C303030635C303030615C303030745C303030655C303030735C3030305C3034305C303030615C3030306E5C303030645C3030305C3034305C303030515C303030755C303030615C3030306E5C303030745C303030695C303030665C303030695C303030655C303030725C30303073}
\zref@newlabel{mdf@pagelabel-243}{\default{6.2.5}\page{193}\abspage{193}\mdf@pagevalue{193}}
\@writefile{loe}{\contentsline {solution}{\ifthmt@listswap \else \numberline {\let \autodot \@empty }\fi Solution}{193}{thmt@dummyctr.dummy.19}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-244}{\default{6.2.5}\page{193}\abspage{193}\mdf@pagevalue{193}}
\newlabel{bool_func_vis}{{6.16}{193}{}{exerciseT.6.16}{}}
\@writefile{loe}{\contentsline {solution}{\ifthmt@listswap \else \numberline {\let \autodot \@empty }\fi Solution}{193}{thmt@dummyctr.dummy.20}\protected@file@percent }
\@writefile{lof}{\contentsline {figure}{\numberline {6.3}{\ignorespaces Visualization of Boolean Domain}}{193}{figure.6.3}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {6.3}Predicates and Quantifiers}{194}{section.6.3}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {6.3.1}Predicate}{194}{subsection.6.3.1}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-245}{\default{6.3.1}\page{194}\abspage{194}\mdf@pagevalue{194}}
\zref@newlabel{mdf@pagelabel-246}{\default{6.3.1}\page{194}\abspage{194}\mdf@pagevalue{194}}
\zref@newlabel{mdf@pagelabel-247}{\default{6.3.1}\page{194}\abspage{194}\mdf@pagevalue{194}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.3.2}Quantifier}{195}{subsection.6.3.2}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-248}{\default{6.3.2}\page{195}\abspage{195}\mdf@pagevalue{195}}
\zref@newlabel{mdf@pagelabel-249}{\default{6.3.2}\page{196}\abspage{196}\mdf@pagevalue{196}}
\zref@newlabel{mdf@pagelabel-250}{\default{6.3.2}\page{196}\abspage{196}\mdf@pagevalue{196}}
\BKM@entry{id=32,open,dest={73656374696F6E2E362E34},srcline={1481}}{5C3337365C3337375C303030365C3030302E5C303030345C3030305C3034305C303030495C3030306E5C303030665C303030655C303030725C303030655C3030306E5C303030635C303030655C3030305C3034305C303030615C3030306E5C303030645C3030305C3034305C303030445C303030655C303030645C303030755C303030635C303030745C303030695C3030306F5C3030306E}
\@writefile{lot}{\contentsline {table}{\numberline {6.8}{\ignorespaces De Morgan's law for quantifiers}}{197}{table.6.8}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {6.3.3}Nested Quantifier}{197}{subsection.6.3.3}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {6.4}Inference and Deduction}{197}{section.6.4}\protected@file@percent }
\BKM@entry{id=33,open,dest={636861707465722E37},flags=2,srcline={4}}{5C3337365C3337375C303030375C3030305C3034305C303030505C303030725C303030655C3030306C5C303030695C3030306D5C303030695C3030306E5C303030615C303030725C303030795C3030305C3034305C3030304E5C303030755C3030306D5C303030625C303030655C303030725C3030305C3034305C303030545C303030685C303030655C3030306F5C303030725C303030795C3030305C3034305C303030615C3030306E5C303030645C3030305C3034305C303030435C303030725C303030795C303030705C303030745C3030306F5C303030675C303030725C303030615C303030705C303030685C30303079}
\BKM@entry{id=34,open,dest={73656374696F6E2E372E31},srcline={9}}{5C3337365C3337375C303030375C3030302E5C303030315C3030305C3034305C303030445C303030695C303030765C303030695C303030735C303030695C303030625C303030695C3030306C5C303030695C303030745C303030795C3030305C3034305C303030615C3030306E5C303030645C3030305C3034305C3030304D5C3030306F5C303030645C303030755C3030306C5C303030615C303030725C3030305C3034305C303030415C303030725C303030695C303030745C303030685C3030306D5C303030655C303030745C303030695C30303063}
\@writefile{toc}{\contentsline {chapter}{\numberline {7}Preliminary Number Theory and Cryptography}{199}{chapter.7}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\pgfsyspdfmark {pgfid61}{5594039}{47910356}
\@writefile{toc}{\contentsline {section}{\numberline {7.1}Divisibility and Modular Arithmetic}{199}{section.7.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {7.1.1}Division and Divisibility}{200}{subsection.7.1.1}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-251}{\default{7.1.1}\page{200}\abspage{200}\mdf@pagevalue{200}}
\zref@newlabel{mdf@pagelabel-252}{\default{7.1.1}\page{200}\abspage{200}\mdf@pagevalue{200}}
\zref@newlabel{mdf@pagelabel-253}{\default{7.1.1}\page{200}\abspage{200}\mdf@pagevalue{200}}
\zref@newlabel{mdf@pagelabel-254}{\default{7.1.1}\page{201}\abspage{201}\mdf@pagevalue{201}}
\newlabel{Properties of Divisibility}{{7.1}{201}{Properties of Divisibility}{theoremeT.7.1}{}}
\zref@newlabel{mdf@pagelabel-255}{\default{7.1.1}\page{201}\abspage{201}\mdf@pagevalue{201}}
\newlabel{div1}{{7.1}{201}{}{corollaryT.7.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {7.1.2}Modular Arithmetic}{201}{subsection.7.1.2}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-256}{\default{7.1.2}\page{202}\abspage{202}\mdf@pagevalue{202}}
\zref@newlabel{mdf@pagelabel-257}{\default{7.1.2}\page{202}\abspage{202}\mdf@pagevalue{202}}
\zref@newlabel{mdf@pagelabel-258}{\default{7.1.2}\page{202}\abspage{202}\mdf@pagevalue{202}}
\newlabel{mod2}{{7.3}{202}{}{theoremeT.7.3}{}}
\zref@newlabel{mdf@pagelabel-259}{\default{7.1.2}\page{202}\abspage{202}\mdf@pagevalue{202}}
\zref@newlabel{mdf@pagelabel-260}{\default{7.1.2}\page{203}\abspage{203}\mdf@pagevalue{203}}
\@writefile{toc}{\contentsline {subsection}{\numberline {7.1.3}Exercises}{204}{subsection.7.1.3}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-261}{\default{7.1.3}\page{204}\abspage{204}\mdf@pagevalue{204}}
\zref@newlabel{mdf@pagelabel-262}{\default{7.1.3}\page{204}\abspage{204}\mdf@pagevalue{204}}
\zref@newlabel{mdf@pagelabel-263}{\default{7.1.3}\page{204}\abspage{204}\mdf@pagevalue{204}}
\zref@newlabel{mdf@pagelabel-264}{\default{7.1.3}\page{204}\abspage{204}\mdf@pagevalue{204}}
\zref@newlabel{mdf@pagelabel-265}{\default{7.1.3}\page{204}\abspage{204}\mdf@pagevalue{204}}
\zref@newlabel{mdf@pagelabel-266}{\default{7.1.3}\page{205}\abspage{205}\mdf@pagevalue{205}}
\zref@newlabel{mdf@pagelabel-267}{\default{7.1.3}\page{205}\abspage{205}\mdf@pagevalue{205}}
\BKM@entry{id=35,open,dest={73656374696F6E2E372E32},srcline={392}}{5C3337365C3337375C303030375C3030302E5C303030325C3030305C3034305C3030304E5C303030755C3030306D5C303030625C303030655C303030725C3030305C3034305C303030525C303030655C303030705C303030725C303030655C303030735C303030655C3030306E5C303030745C303030615C303030745C303030695C3030306F5C3030306E5C303030735C3030305C3034305C303030615C3030306E5C303030645C3030305C3034305C303030415C3030306C5C303030675C3030306F5C303030725C303030695C303030745C303030685C3030306D5C30303073}
\zref@newlabel{mdf@pagelabel-268}{\default{7.1.3}\page{206}\abspage{206}\mdf@pagevalue{206}}
\zref@newlabel{mdf@pagelabel-269}{\default{7.1.3}\page{206}\abspage{206}\mdf@pagevalue{206}}
\@writefile{toc}{\contentsline {section}{\numberline {7.2}Number Representations and Algorithms}{207}{section.7.2}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {7.2.1}Representations of Numbers and Base Conversion}{207}{subsection.7.2.1}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-270}{\default{7.2.1}\page{207}\abspage{207}\mdf@pagevalue{207}}
\@writefile{toc}{\contentsline {subsection}{\numberline {7.2.2}Base Conversion}{208}{subsection.7.2.2}\protected@file@percent }
\@writefile{loa}{\contentsline {algorithm}{\numberline {5}{\ignorespaces Base conversion of an integer $n$ to base $b$}}{209}{algorithm.5}\protected@file@percent }
\@writefile{loa}{\contentsline {algorithm}{\numberline {6}{\ignorespaces Convert a floating-point number to a different base}}{209}{algorithm.6}\protected@file@percent }
\@writefile{lof}{\contentsline {figure}{\numberline {7.1}{\ignorespaces Binary, Octal and Hexadecimal Representation}}{210}{figure.7.1}\protected@file@percent }
\@writefile{loa}{\contentsline {algorithm}{\numberline {7}{\ignorespaces Constructing Base \( b \) Expansions}}{211}{algorithm.7}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {7.2.3}Operation Algorithms of Number}{211}{subsection.7.2.3}\protected@file@percent }
\@writefile{loa}{\contentsline {algorithm}{\numberline {8}{\ignorespaces Addition of Integers}}{212}{algorithm.8}\protected@file@percent }
\@writefile{loa}{\contentsline {algorithm}{\numberline {9}{\ignorespaces Addition of Integers}}{213}{algorithm.9}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {7.2.4}Modular Exponentiation Algorithm}{213}{subsection.7.2.4}\protected@file@percent }
\@writefile{loa}{\contentsline {algorithm}{\numberline {10}{\ignorespaces Computing div and mod.}}{214}{algorithm.10}\protected@file@percent }
\newlabel{modulare}{{7.2.4}{214}{Modular Exponentiation Algorithm}{exampleT.7.11}{}}
\@writefile{loa}{\contentsline {algorithm}{\numberline {11}{\ignorespaces Fast Modular Exponentiation.}}{214}{algorithm.11}\protected@file@percent }
\@writefile{toc}{\contentsline {paragraph}{Time Complexity of Algorithm 5}{215}{paragraph*.4}\protected@file@percent }
\BKM@entry{id=36,open,dest={73656374696F6E2E372E33},srcline={809}}{5C3337365C3337375C303030375C3030302E5C303030335C3030305C3034305C303030505C303030725C303030695C3030306D5C303030655C303030735C3030305C3034305C303030615C3030306E5C303030645C3030305C3034305C303030475C303030725C303030655C303030615C303030745C303030655C303030735C303030745C3030305C3034305C303030435C3030306F5C3030306D5C3030306D5C3030306F5C3030306E5C3030305C3034305C303030445C303030695C303030765C303030695C303030735C3030306F5C303030725C30303073}
\@writefile{toc}{\contentsline {subsection}{\numberline {7.2.5}Exercises}{216}{subsection.7.2.5}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {7.3}Primes and Greatest Common Divisors}{216}{section.7.3}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {7.3.1}Primes and Related Algorithms}{216}{subsection.7.3.1}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-271}{\default{7.3.1}\page{216}\abspage{216}\mdf@pagevalue{216}}
\zref@newlabel{mdf@pagelabel-272}{\default{7.3.1}\page{216}\abspage{216}\mdf@pagevalue{216}}
\zref@newlabel{mdf@pagelabel-273}{\default{7.3.1}\page{218}\abspage{218}\mdf@pagevalue{218}}
\@writefile{loa}{\contentsline {algorithm}{\numberline {12}{\ignorespaces Primality Test Using Trial Division}}{218}{algorithm.12}\protected@file@percent }
\@writefile{loa}{\contentsline {algorithm}{\numberline {13}{\ignorespaces Prime Factorization}}{219}{algorithm.13}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {7.3.2}Greatest Common Divisors and Least Common Multiples}{219}{subsection.7.3.2}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-274}{\default{7.3.2}\page{219}\abspage{219}\mdf@pagevalue{219}}
\zref@newlabel{mdf@pagelabel-275}{\default{7.3.2}\page{219}\abspage{219}\mdf@pagevalue{219}}
\zref@newlabel{mdf@pagelabel-276}{\default{7.3.2}\page{220}\abspage{220}\mdf@pagevalue{220}}
\zref@newlabel{mdf@pagelabel-277}{\default{7.3.2}\page{221}\abspage{221}\mdf@pagevalue{221}}
\zref@newlabel{mdf@pagelabel-278}{\default{7.3.2}\page{221}\abspage{221}\mdf@pagevalue{221}}
\newlabel{Bezout}{{7.9}{221}{Bézout's Theorem}{theoremeT.7.9}{}}
\BKM@entry{id=37,open,dest={73656374696F6E2E372E34},srcline={1098}}{5C3337365C3337375C303030375C3030302E5C303030345C3030305C3034305C303030535C3030306F5C3030306C5C303030765C303030695C3030306E5C303030675C3030305C3034305C303030435C3030306F5C3030306E5C303030675C303030725C303030755C303030655C3030306E5C303030635C30303065}
\@writefile{toc}{\contentsline {subsection}{\numberline {7.3.3}Exercises}{222}{subsection.7.3.3}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {7.4}Solving Congruence}{222}{section.7.4}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {7.4.1}Linear Congruence}{222}{subsection.7.4.1}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-279}{\default{7.4.1}\page{222}\abspage{222}\mdf@pagevalue{222}}
\zref@newlabel{mdf@pagelabel-280}{\default{7.4.1}\page{222}\abspage{222}\mdf@pagevalue{222}}
\newlabel{exist_inverse}{{7.10}{222}{Existence of Inverses Theorem}{theoremeT.7.10}{}}
\zref@newlabel{mdf@pagelabel-281}{\default{7.4.1}\page{223}\abspage{223}\mdf@pagevalue{223}}
\@writefile{toc}{\contentsline {paragraph}{Solution:}{223}{paragraph*.5}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-282}{\default{7.4.1}\page{224}\abspage{224}\mdf@pagevalue{224}}
\zref@newlabel{mdf@pagelabel-283}{\default{7.4.1}\page{225}\abspage{225}\mdf@pagevalue{225}}
\@writefile{toc}{\contentsline {subsection}{\numberline {7.4.2}The Chinese Remainder Theorem}{226}{subsection.7.4.2}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-284}{\default{7.4.2}\page{226}\abspage{226}\mdf@pagevalue{226}}
\zref@newlabel{mdf@pagelabel-285}{\default{7.4.2}\page{227}\abspage{227}\mdf@pagevalue{227}}
\zref@newlabel{mdf@pagelabel-286}{\default{7.4.2}\page{227}\abspage{227}\mdf@pagevalue{227}}
\zref@newlabel{mdf@pagelabel-287}{\default{7.4.2}\page{227}\abspage{227}\mdf@pagevalue{227}}
\zref@newlabel{mdf@pagelabel-288}{\default{7.4.2}\page{228}\abspage{228}\mdf@pagevalue{228}}
\@writefile{toc}{\contentsline {subsection}{\numberline {7.4.3}Fermat's Little Theorem}{230}{subsection.7.4.3}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-289}{\default{7.4.3}\page{230}\abspage{230}\mdf@pagevalue{230}}
\@writefile{loe}{\addvspace {10\p@ }}
\@writefile{loe}{\contentsline {solution}{\ifthmt@listswap \else \numberline {\let \autodot \@empty }\fi Solution}{231}{thmt@dummyctr.dummy.21}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-290}{\default{7.4.3}\page{231}\abspage{231}\mdf@pagevalue{231}}
\zref@newlabel{mdf@pagelabel-291}{\default{7.4.3}\page{232}\abspage{232}\mdf@pagevalue{232}}
\@writefile{loe}{\contentsline {solution}{\ifthmt@listswap \else \numberline {\let \autodot \@empty }\fi Solution}{232}{thmt@dummyctr.dummy.22}\protected@file@percent }
\BKM@entry{id=38,open,dest={636861707465722E38},flags=2,srcline={4}}{5C3337365C3337375C303030385C3030305C3034305C303030525C303030655C3030306C5C303030615C303030745C303030695C3030306F5C3030306E}
\BKM@entry{id=39,open,dest={73656374696F6E2E382E31},srcline={7}}{5C3337365C3337375C303030385C3030302E5C303030315C3030305C3034305C3030304E5C303030425C303030475C3030305C3034305C303030535C303030655C303030745C3030305C3034305C303030545C303030685C303030655C3030306F5C303030725C303030795C3030305C3034305C303030615C3030306E5C303030645C3030305C3034305C303030425C303030695C3030306E5C303030615C303030725C303030795C3030305C3034305C303030525C303030655C3030306C5C303030615C303030745C303030695C3030306F5C3030306E}
\@writefile{toc}{\contentsline {chapter}{\numberline {8}Relation}{233}{chapter.8}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\pgfsyspdfmark {pgfid68}{5594039}{47833151}
\@writefile{toc}{\contentsline {section}{\numberline {8.1}NBG Set Theory and Binary Relation}{233}{section.8.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {8.1.1}Class}{234}{subsection.8.1.1}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-292}{\default{8.1.1}\page{234}\abspage{234}\mdf@pagevalue{234}}
\@writefile{loe}{\addvspace {10\p@ }}
\@writefile{loe}{\contentsline {axiom}{\ifthmt@listswap Axiom~8.1\else \numberline {8.1}Axiom\fi \thmtformatoptarg {Axiom of Extensionality}}{235}{axiom.8.1}\protected@file@percent }
\@writefile{loe}{\contentsline {axiom}{\ifthmt@listswap Axiom~8.2\else \numberline {8.2}Axiom\fi \thmtformatoptarg {Axiom Scheme of Classification}}{235}{axiom.8.2}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-293}{\default{8.1.1}\page{235}\abspage{235}\mdf@pagevalue{235}}
\zref@newlabel{mdf@pagelabel-294}{\default{8.1.1}\page{236}\abspage{236}\mdf@pagevalue{236}}
\zref@newlabel{mdf@pagelabel-295}{\default{8.1.1}\page{236}\abspage{236}\mdf@pagevalue{236}}
\zref@newlabel{mdf@pagelabel-296}{\default{8.1.1}\page{236}\abspage{236}\mdf@pagevalue{236}}
\newlabel{intofclass}{{8.5}{236}{Intersection and Union of Class(of one single class)}{definitionT.8.5}{}}
\@writefile{loe}{\contentsline {lemma}{\ifthmt@listswap Lemma~8.1\else \numberline {8.1}Lemma\fi }{237}{lemma.8.1}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-297}{\default{8.1.1}\page{237}\abspage{237}\mdf@pagevalue{237}}
\@writefile{loe}{\contentsline {axiom}{\ifthmt@listswap Axiom~8.3\else \numberline {8.3}Axiom\fi \thmtformatoptarg {Power Set Axiom}}{238}{axiom.8.3}\protected@file@percent }
\@writefile{loe}{\contentsline {axiom}{\ifthmt@listswap Axiom~8.4\else \numberline {8.4}Axiom\fi \thmtformatoptarg {Pairing Axiom}}{238}{axiom.8.4}\protected@file@percent }
\@writefile{loe}{\contentsline {axiom}{\ifthmt@listswap Axiom~8.5\else \numberline {8.5}Axiom\fi \thmtformatoptarg {Union Axiom}}{238}{axiom.8.5}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {8.1.2}Binary Relations, Composition and Inverse}{238}{subsection.8.1.2}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-298}{\default{8.1.2}\page{239}\abspage{239}\mdf@pagevalue{239}}
\zref@newlabel{mdf@pagelabel-299}{\default{8.1.2}\page{239}\abspage{239}\mdf@pagevalue{239}}
\@writefile{lof}{\contentsline {figure}{\numberline {8.1}{\ignorespaces Visual Comparison of a Relation and a Function}}{240}{figure.8.1}\protected@file@percent }
\@writefile{loe}{\contentsline {solution}{\ifthmt@listswap \else \numberline {\let \autodot \@empty }\fi Solution}{240}{thmt@dummyctr.dummy.29}\protected@file@percent }
\@writefile{lof}{\contentsline {figure}{\numberline {8.2}{\ignorespaces $R=\{(a,b)\mid a$ divides $b\}$}}{240}{figure.8.2}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-300}{\default{8.1.2}\page{240}\abspage{240}\mdf@pagevalue{240}}
\zref@newlabel{mdf@pagelabel-301}{\default{8.1.2}\page{241}\abspage{241}\mdf@pagevalue{241}}
\@writefile{loe}{\contentsline {axiom}{\ifthmt@listswap Axiom~8.6\else \numberline {8.6}Axiom\fi \thmtformatoptarg {Replacement Axiom}}{241}{axiom.8.6}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {8.1.3}Mapping, Composition, and Inverse}{241}{subsection.8.1.3}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-302}{\default{8.1.3}\page{241}\abspage{241}\mdf@pagevalue{241}}
\zref@newlabel{mdf@pagelabel-303}{\default{8.1.3}\page{241}\abspage{241}\mdf@pagevalue{241}}
\zref@newlabel{mdf@pagelabel-304}{\default{8.1.3}\page{242}\abspage{242}\mdf@pagevalue{242}}
\zref@newlabel{mdf@pagelabel-305}{\default{8.1.3}\page{242}\abspage{242}\mdf@pagevalue{242}}
\zref@newlabel{mdf@pagelabel-306}{\default{8.1.3}\page{242}\abspage{242}\mdf@pagevalue{242}}
\zref@newlabel{mdf@pagelabel-307}{\default{8.1.3}\page{243}\abspage{243}\mdf@pagevalue{243}}
\newlabel{diagonalR}{{8.15}{243}{Diagonal (Relation) and Identity Mapping}{definitionT.8.15}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {8.1.4}Families of Sets}{243}{subsection.8.1.4}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-308}{\default{8.1.4}\page{243}\abspage{243}\mdf@pagevalue{243}}
\zref@newlabel{mdf@pagelabel-309}{\default{8.1.4}\page{244}\abspage{244}\mdf@pagevalue{244}}
\@writefile{loe}{\contentsline {axiom}{\ifthmt@listswap Axiom~8.7\else \numberline {8.7}Axiom\fi \thmtformatoptarg {Axiom of Choice}}{245}{axiom.8.7}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-310}{\default{8.1.4}\page{245}\abspage{245}\mdf@pagevalue{245}}
\@writefile{toc}{\contentsline {subsection}{\numberline {8.1.5}Reflexivity, Symmetry, and Transitivity}{246}{subsection.8.1.5}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-311}{\default{8.1.5}\page{246}\abspage{246}\mdf@pagevalue{246}}
\newlabel{reflexR}{{8.19}{246}{Reflexive Relation}{definitionT.8.19}{}}
\zref@newlabel{mdf@pagelabel-312}{\default{8.1.5}\page{246}\abspage{246}\mdf@pagevalue{246}}
\zref@newlabel{mdf@pagelabel-313}{\default{8.1.5}\page{246}\abspage{246}\mdf@pagevalue{246}}
\zref@newlabel{mdf@pagelabel-314}{\default{8.1.5}\page{246}\abspage{246}\mdf@pagevalue{246}}
\zref@newlabel{mdf@pagelabel-315}{\default{8.1.5}\page{246}\abspage{246}\mdf@pagevalue{246}}
\@writefile{toc}{\contentsline {subsection}{\numberline {8.1.6}Exercises}{247}{subsection.8.1.6}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-316}{\default{8.1.6}\page{247}\abspage{247}\mdf@pagevalue{247}}
\@writefile{loe}{\contentsline {solution}{\ifthmt@listswap \else \numberline {\let \autodot \@empty }\fi Solution}{247}{thmt@dummyctr.dummy.32}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-317}{\default{8.1.6}\page{247}\abspage{247}\mdf@pagevalue{247}}
\@writefile{loe}{\contentsline {solution}{\ifthmt@listswap \else \numberline {\let \autodot \@empty }\fi Solution}{247}{thmt@dummyctr.dummy.33}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-318}{\default{8.1.6}\page{247}\abspage{247}\mdf@pagevalue{247}}
\BKM@entry{id=40,open,dest={73656374696F6E2E382E32},srcline={722}}{5C3337365C3337375C303030385C3030302E5C303030325C3030305C3034305C303030525C303030655C303030705C303030725C303030655C303030735C303030655C3030306E5C303030745C303030615C303030745C303030695C3030306F5C3030306E5C3030305C3034305C3030306F5C303030665C3030305C3034305C303030525C303030655C3030306C5C303030615C303030745C303030695C3030306F5C3030306E5C30303073}
\zref@newlabel{mdf@pagelabel-319}{\default{8.1.6}\page{248}\abspage{248}\mdf@pagevalue{248}}
\@writefile{toc}{\contentsline {section}{\numberline {8.2}Representation of Relations}{248}{section.8.2}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {8.2.1}Representation By Matrix}{248}{subsection.8.2.1}\protected@file@percent }
\@writefile{loe}{\contentsline {solution}{\ifthmt@listswap \else \numberline {\let \autodot \@empty }\fi Solution}{251}{thmt@dummyctr.dummy.34}\protected@file@percent }
\@writefile{loe}{\contentsline {solution}{\ifthmt@listswap \else \numberline {\let \autodot \@empty }\fi Solution}{251}{thmt@dummyctr.dummy.35}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {8.2.2}Representation By Digraph}{251}{subsection.8.2.2}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-320}{\default{8.2.2}\page{252}\abspage{252}\mdf@pagevalue{252}}
\@writefile{lof}{\contentsline {figure}{\numberline {8.3}{\ignorespaces $R_1$ and $R_2$ in Digraph}}{253}{figure.8.3}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {8.2.3}Exercises}{253}{subsection.8.2.3}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-321}{\default{8.2.3}\page{253}\abspage{253}\mdf@pagevalue{253}}
\@writefile{loe}{\contentsline {solution}{\ifthmt@listswap \else \numberline {\let \autodot \@empty }\fi Solution}{253}{thmt@dummyctr.dummy.36}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-322}{\default{8.2.3}\page{254}\abspage{254}\mdf@pagevalue{254}}
\@writefile{loe}{\contentsline {solution}{\ifthmt@listswap \else \numberline {\let \autodot \@empty }\fi Solution}{254}{thmt@dummyctr.dummy.37}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-323}{\default{8.2.3}\page{254}\abspage{254}\mdf@pagevalue{254}}
\@writefile{loe}{\contentsline {solution}{\ifthmt@listswap \else \numberline {\let \autodot \@empty }\fi Solution}{254}{thmt@dummyctr.dummy.38}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-324}{\default{8.2.3}\page{254}\abspage{254}\mdf@pagevalue{254}}
\BKM@entry{id=41,open,dest={73656374696F6E2E382E33},srcline={1120}}{5C3337365C3337375C303030385C3030302E5C303030335C3030305C3034305C303030435C3030306C5C3030306F5C303030735C303030755C303030725C303030655C3030305C3034305C3030306F5C303030665C3030305C3034305C303030525C303030655C3030306C5C303030615C303030745C303030695C3030306F5C3030306E5C30303073}
\BKM@entry{id=42,open,dest={73656374696F6E2E382E34},srcline={1124}}{5C3337365C3337375C303030385C3030302E5C303030345C3030305C3034305C303030455C303030715C303030755C303030695C303030765C303030615C3030306C5C303030655C3030306E5C303030635C303030655C3030305C3034305C303030525C303030655C3030306C5C303030615C303030745C303030695C3030306F5C3030306E5C30303073}
\zref@newlabel{mdf@pagelabel-325}{\default{8.2.3}\page{255}\abspage{255}\mdf@pagevalue{255}}
\zref@newlabel{mdf@pagelabel-326}{\default{8.2.3}\page{255}\abspage{255}\mdf@pagevalue{255}}
\@writefile{loe}{\contentsline {solution}{\ifthmt@listswap \else \numberline {\let \autodot \@empty }\fi Solution}{255}{thmt@dummyctr.dummy.39}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-327}{\default{8.2.3}\page{255}\abspage{255}\mdf@pagevalue{255}}
\@writefile{loe}{\contentsline {solution}{\ifthmt@listswap \else \numberline {\let \autodot \@empty }\fi Solution}{255}{thmt@dummyctr.dummy.40}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {8.3}Closure of Relations}{255}{section.8.3}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {8.3.1}Exercises}{255}{subsection.8.3.1}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {8.4}Equivalence Relations}{255}{section.8.4}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {8.4.1}Equivalence}{256}{subsection.8.4.1}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-328}{\default{8.4.1}\page{256}\abspage{256}\mdf@pagevalue{256}}
\@writefile{loe}{\contentsline {solution}{\ifthmt@listswap \else \numberline {\let \autodot \@empty }\fi Solution}{256}{thmt@dummyctr.dummy.41}\protected@file@percent }
\@writefile{loe}{\contentsline {solution}{\ifthmt@listswap \else \numberline {\let \autodot \@empty }\fi Solution}{256}{thmt@dummyctr.dummy.42}\protected@file@percent }
\@writefile{loe}{\contentsline {solution}{\ifthmt@listswap \else \numberline {\let \autodot \@empty }\fi Solution}{257}{thmt@dummyctr.dummy.43}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {8.4.2}Equivalence Classes}{257}{subsection.8.4.2}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-329}{\default{8.4.2}\page{257}\abspage{257}\mdf@pagevalue{257}}
\@writefile{loe}{\contentsline {solution}{\ifthmt@listswap \else \numberline {\let \autodot \@empty }\fi Solution}{257}{thmt@dummyctr.dummy.44}\protected@file@percent }
\@writefile{loe}{\contentsline {solution}{\ifthmt@listswap \else \numberline {\let \autodot \@empty }\fi Solution}{258}{thmt@dummyctr.dummy.45}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-330}{\default{8.4.2}\page{258}\abspage{258}\mdf@pagevalue{258}}
\@writefile{loe}{\contentsline {solution}{\ifthmt@listswap \else \numberline {\let \autodot \@empty }\fi Solution}{258}{thmt@dummyctr.dummy.46}\protected@file@percent }
\@writefile{loe}{\contentsline {solution}{\ifthmt@listswap \else \numberline {\let \autodot \@empty }\fi Solution}{258}{thmt@dummyctr.dummy.47}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-331}{\default{8.4.2}\page{258}\abspage{258}\mdf@pagevalue{258}}
\@writefile{loe}{\contentsline {lemma}{\ifthmt@listswap Lemma~8.2\else \numberline {8.2}Lemma\fi }{259}{lemma.8.2}\protected@file@percent }
\@writefile{loe}{\contentsline {lemma}{\ifthmt@listswap Lemma~8.3\else \numberline {8.3}Lemma\fi }{259}{lemma.8.3}\protected@file@percent }
\@writefile{loe}{\contentsline {solution}{\ifthmt@listswap \else \numberline {\let \autodot \@empty }\fi Solution}{259}{thmt@dummyctr.dummy.50}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {8.4.3}Exercises}{259}{subsection.8.4.3}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-332}{\default{8.4.3}\page{259}\abspage{259}\mdf@pagevalue{259}}
\@writefile{loe}{\contentsline {solution}{\ifthmt@listswap \else \numberline {\let \autodot \@empty }\fi Solution}{260}{thmt@dummyctr.dummy.51}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-333}{\default{8.4.3}\page{260}\abspage{260}\mdf@pagevalue{260}}
\@writefile{loe}{\contentsline {solution}{\ifthmt@listswap \else \numberline {\let \autodot \@empty }\fi Solution}{260}{thmt@dummyctr.dummy.52}\protected@file@percent }
\BKM@entry{id=43,open,dest={73656374696F6E2E382E35},srcline={1427}}{5C3337365C3337375C303030385C3030302E5C303030355C3030305C3034305C3030304F5C303030725C303030645C303030655C303030725C3030305C3034305C303030525C303030655C3030306C5C303030615C303030745C303030695C3030306F5C3030306E5C30303073}
\zref@newlabel{mdf@pagelabel-334}{\default{8.4.3}\page{261}\abspage{261}\mdf@pagevalue{261}}
\@writefile{loe}{\contentsline {solution}{\ifthmt@listswap \else \numberline {\let \autodot \@empty }\fi Solution}{261}{thmt@dummyctr.dummy.53}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-335}{\default{8.4.3}\page{261}\abspage{261}\mdf@pagevalue{261}}
\@writefile{toc}{\contentsline {section}{\numberline {8.5}Order Relations}{262}{section.8.5}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {8.5.1}Partial, Total, and Well Ordering}{262}{subsection.8.5.1}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-336}{\default{8.5.1}\page{262}\abspage{262}\mdf@pagevalue{262}}
\zref@newlabel{mdf@pagelabel-337}{\default{8.5.1}\page{262}\abspage{262}\mdf@pagevalue{262}}
\@writefile{loe}{\contentsline {solution}{\ifthmt@listswap \else \numberline {\let \autodot \@empty }\fi Solution}{262}{thmt@dummyctr.dummy.54}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-338}{\default{8.5.1}\page{263}\abspage{263}\mdf@pagevalue{263}}
\zref@newlabel{mdf@pagelabel-339}{\default{8.5.1}\page{263}\abspage{263}\mdf@pagevalue{263}}
\zref@newlabel{mdf@pagelabel-340}{\default{8.5.1}\page{263}\abspage{263}\mdf@pagevalue{263}}
\@writefile{toc}{\contentsline {subsection}{\numberline {8.5.2}Lexicographic Order}{264}{subsection.8.5.2}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-341}{\default{8.5.2}\page{264}\abspage{264}\mdf@pagevalue{264}}
\newlabel{lexord}{{8.32}{264}{Lexicographic Ordering}{definitionT.8.32}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {8.5.3}Hasse Diagram}{265}{subsection.8.5.3}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {8.5.4}Maximal and Minimal Elements}{265}{subsection.8.5.4}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {8.5.5}Lattices}{265}{subsection.8.5.5}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {8.5.6}Topological Sorting}{265}{subsection.8.5.6}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {8.5.7}Exercises}{265}{subsection.8.5.7}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-342}{\default{8.5.7}\page{266}\abspage{266}\mdf@pagevalue{266}}
\@writefile{loe}{\contentsline {solution}{\ifthmt@listswap \else \numberline {\let \autodot \@empty }\fi Solution}{266}{thmt@dummyctr.dummy.55}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-343}{\default{8.5.7}\page{266}\abspage{266}\mdf@pagevalue{266}}
\@writefile{loe}{\contentsline {solution}{\ifthmt@listswap \else \numberline {\let \autodot \@empty }\fi Solution}{266}{thmt@dummyctr.dummy.56}\protected@file@percent }
\zref@newlabel{mdf@pagelabel-344}{\default{8.5.7}\page{266}\abspage{266}\mdf@pagevalue{266}}
\@writefile{loe}{\contentsline {solution}{\ifthmt@listswap \else \numberline {\let \autodot \@empty }\fi Solution}{266}{thmt@dummyctr.dummy.57}\protected@file@percent }
\BKM@entry{id=44,open,dest={73656374696F6E2E382E36},srcline={1667}}{5C3337365C3337375C303030385C3030302E5C303030365C3030305C3034305C303030535C303030705C303030655C303030635C303030695C303030615C3030306C5C3030305C3034305C303030545C303030795C303030705C303030655C303030735C3030305C3034305C3030306F5C303030665C3030305C3034305C303030525C303030655C3030306C5C303030615C303030745C303030695C3030306F5C3030306E5C30303073}
\@writefile{toc}{\contentsline {section}{\numberline {8.6}Special Types of Relations}{267}{section.8.6}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {8.6.1}Recursive Relations}{267}{subsection.8.6.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {8.6.2}\(n\)-ary Relations}{267}{subsection.8.6.2}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {8.6.3}Exercises}{267}{subsection.8.6.3}\protected@file@percent }
\BKM@entry{id=45,open,dest={636861707465722E39},flags=2,srcline={4}}{5C3337365C3337375C303030395C3030305C3034305C303030475C303030725C303030615C303030705C303030685C3030305C3034305C303030545C303030685C303030655C3030306F5C303030725C30303079}
\@writefile{toc}{\contentsline {chapter}{\numberline {9}Graph Theory}{269}{chapter.9}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\pgfsyspdfmark {pgfid85}{5594039}{48050247}
\BKM@entry{id=46,open,dest={636861707465722E3130},flags=2,srcline={4}}{5C3337365C3337375C303030315C303030305C3030305C3034305C303030425C303030615C303030735C303030695C303030635C303030735C3030305C3034305C3030306F5C303030665C3030305C3034305C303030415C303030625C303030735C303030745C303030725C303030615C303030635C303030745C3030305C3034305C303030415C3030306C5C303030675C303030655C303030625C303030725C30303061}
\@writefile{toc}{\contentsline {chapter}{\numberline {10}Basics of Abstract Algebra}{271}{chapter.10}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\pgfsyspdfmark {pgfid87}{5594039}{47968009}
\BKM@entry{id=47,open,dest={73656374696F6E2E31302E31},srcline={6}}{5C3337365C3337375C303030315C303030305C3030302E5C303030315C3030305C3034305C303030465C303030755C3030306E5C303030645C303030615C3030306D5C303030655C3030306E5C303030745C303030615C3030306C5C303030735C3030305C3034305C3030306F5C303030665C3030305C3034305C303030415C3030306C5C303030675C303030655C303030625C303030725C303030615C303030695C303030635C3030305C3034305C303030535C303030745C303030725C303030755C303030635C303030745C303030755C303030725C303030655C30303073}
\BKM@entry{id=48,open,dest={73656374696F6E2E31302E32},srcline={11}}{5C3337365C3337375C303030315C303030305C3030302E5C303030325C3030305C3034305C3030304F5C303030705C303030655C303030725C303030615C303030745C303030695C3030306F5C3030306E5C303030735C3030305C3034305C3030306F5C3030306E5C3030305C3034305C303030415C3030306C5C303030675C303030655C303030625C303030725C303030615C303030695C303030635C3030305C3034305C303030535C303030745C303030725C303030755C303030635C303030745C303030755C303030725C303030655C30303073}
\BKM@entry{id=49,open,dest={73656374696F6E2E31302E33},srcline={15}}{5C3337365C3337375C303030315C303030305C3030302E5C303030335C3030305C3034305C303030415C303030705C303030705C3030306C5C303030695C303030635C303030615C303030745C303030695C3030306F5C3030306E5C303030735C3030305C3034305C3030306F5C303030665C3030305C3034305C303030415C3030306C5C303030675C303030655C303030625C303030725C303030615C303030695C303030635C3030305C3034305C303030535C303030745C303030725C303030755C303030635C303030745C303030755C303030725C303030655C30303073}
\@writefile{toc}{\contentsline {section}{\numberline {10.1}Fundamentals of Algebraic Structures}{272}{section.10.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {10.1.1}Groups}{272}{subsection.10.1.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {10.1.2}Rings}{272}{subsection.10.1.2}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {10.1.3}Fields}{272}{subsection.10.1.3}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {10.1.4}Exercises}{272}{subsection.10.1.4}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {10.2}Operations on Algebraic Structures}{272}{section.10.2}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {10.2.1}Homomorphisms}{272}{subsection.10.2.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {10.2.2}Isomorphisms}{272}{subsection.10.2.2}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {10.2.3}Exercises}{272}{subsection.10.2.3}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {10.3}Applications of Algebraic Structures}{272}{section.10.3}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {10.3.1}Cryptography}{272}{subsection.10.3.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {10.3.2}Coding Theory}{272}{subsection.10.3.2}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {10.3.3}Exercises}{272}{subsection.10.3.3}\protected@file@percent }
\BKM@entry{id=50,open,dest={636861707465722E3131},flags=2,srcline={4}}{5C3337365C3337375C303030315C303030315C3030305C3034305C303030495C3030306E5C303030745C303030725C3030306F5C303030645C303030755C303030635C303030745C3030306F5C303030725C303030795C3030305C3034305C303030545C3030306F5C303030705C3030306F5C3030306C5C3030306F5C303030675C303030795C3030305C3034305C303030615C3030306E5C303030645C3030305C3034305C303030435C303030615C303030745C303030655C303030675C3030306F5C303030725C303030795C3030305C3034305C303030545C303030685C303030655C3030306F5C303030725C30303079}
\@writefile{toc}{\contentsline {chapter}{\numberline {11}Introductory Topology and Category Theory}{273}{chapter.11}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\pgfsyspdfmark {pgfid88}{5594039}{47968009}
\BKM@entry{id=51,open,dest={73656374696F6E2E31312E31},srcline={8}}{5C3337365C3337375C303030315C303030315C3030302E5C303030315C3030305C3034305C303030425C303030615C303030735C303030695C303030635C3030305C3034305C303030545C3030306F5C303030705C3030306F5C3030306C5C3030306F5C303030675C30303079}
\@writefile{toc}{\contentsline {section}{\numberline {11.1}Basic Topology}{274}{section.11.1}\protected@file@percent }
\BKM@entry{id=52,open,dest={73656374696F6E2E31312E32},srcline={23}}{5C3337365C3337375C303030315C303030315C3030302E5C303030325C3030305C3034305C303030435C303030615C303030745C303030655C303030675C3030306F5C303030725C303030795C3030305C3034305C303030545C303030685C303030655C3030306F5C303030725C303030795C3030305C3034305C303030465C303030755C3030306E5C303030645C303030615C3030306D5C303030655C3030306E5C303030745C303030615C3030306C5C30303073}
\@writefile{toc}{\contentsline {subsection}{\numberline {11.1.1}Introduction to Topological Spaces}{276}{subsection.11.1.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.1.1.1}Open and Closed Sets}{276}{subsubsection.11.1.1.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.1.1.2}Basis for a Topology}{276}{subsubsection.11.1.1.2}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {11.1.2}Continuity and Limits}{276}{subsection.11.1.2}\protected@file@percent }
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.1.2.1}Continuous Functions}{276}{subsubsection.11.1.2.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.1.2.2}Limit Points and Convergence}{276}{subsubsection.11.1.2.2}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {11.1.3}Compactness and Connectedness}{276}{subsection.11.1.3}\protected@file@percent }
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.1.3.1}Compact Spaces}{276}{subsubsection.11.1.3.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.1.3.2}Connected Spaces}{276}{subsubsection.11.1.3.2}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {11.1.4}Applications of Topology}{276}{subsection.11.1.4}\protected@file@percent }
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.1.4.1}Topology in Computer Science}{276}{subsubsection.11.1.4.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.1.4.2}Topology in Physics}{276}{subsubsection.11.1.4.2}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {11.2}Category Theory Fundamentals}{276}{section.11.2}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {11.2.1}Introduction to Categories}{277}{subsection.11.2.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.2.1.1}Objects and Morphisms}{277}{subsubsection.11.2.1.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.2.1.2}Examples of Categories}{277}{subsubsection.11.2.1.2}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {11.2.2}Functors and Natural Transformations}{277}{subsection.11.2.2}\protected@file@percent }
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.2.2.1}Definition of Functors}{277}{subsubsection.11.2.2.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.2.2.2}Natural Transformations between Functors}{277}{subsubsection.11.2.2.2}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {11.2.3}Limits and Colimits}{277}{subsection.11.2.3}\protected@file@percent }
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.2.3.1}Universal Properties}{277}{subsubsection.11.2.3.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.2.3.2}Construction of Limits and Colimits}{277}{subsubsection.11.2.3.2}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {11.2.4}Applications of Category Theory}{277}{subsection.11.2.4}\protected@file@percent }
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.2.4.1}Category Theory in Programming Languages}{277}{subsubsection.11.2.4.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.2.4.2}Category Theory in Logic and Set Theory}{277}{subsubsection.11.2.4.2}\protected@file@percent }
\BKM@entry{id=53,open,dest={706172742E33},color={.95294 .4 .09804},flags=2,srcline={248}}{5C3337365C3337375C303030495C303030495C303030495C3030305C3034305C303030535C303030695C3030306E5C303030675C3030306C5C303030655C3030302D5C303030765C303030615C303030725C303030695C303030615C303030625C3030306C5C303030655C3030305C3034305C303030435C303030615C3030306C5C303030635C303030755C3030306C5C303030755C30303073}
\ttl@writefile{ptc}{\ttl@stoptoc{part@2}}
\ttl@writefile{ptc}{\ttl@starttoc{part@3}}
\pgfsyspdfmark {pgfid89}{5594039}{33587398}
\@writefile{toc}{\contentsline {part}{\numberline {III}Single-variable Calculus}{279}{part.3}\protected@file@percent }
\BKM@entry{id=54,open,dest={636861707465722E3132},flags=2,srcline={4}}{5C3337365C3337375C303030315C303030325C3030305C3034305C303030465C303030755C3030306E5C303030635C303030745C303030695C3030306F5C3030306E5C3030305C3034305C3030304D5C3030306F5C3030306E5C3030306F5C303030745C3030306F5C3030306E5C303030695C303030635C303030695C303030745C303030795C3030302C5C3030305C3034305C303030505C303030615C303030725C303030695C303030745C303030795C3030305C3034305C303030615C3030306E5C303030645C3030305C3034305C303030505C303030655C303030725C303030695C3030306F5C303030645C303030695C303030635C303030695C303030745C30303079}
\BKM@entry{id=55,open,dest={73656374696F6E2E31322E31},srcline={6}}{5C3337365C3337375C303030315C303030325C3030302E5C303030315C3030305C3034305C3030304D5C3030306F5C3030306E5C3030306F5C303030745C3030306F5C3030306E5C303030695C303030635C303030695C303030745C303030795C3030305C3034305C3030306F5C303030665C3030305C3034305C303030465C303030755C3030306E5C303030635C303030745C303030695C3030306F5C3030306E}
\BKM@entry{id=56,open,dest={73656374696F6E2E31322E32},srcline={9}}{5C3337365C3337375C303030315C303030325C3030302E5C303030325C3030305C3034305C303030505C303030615C303030725C303030695C303030745C303030795C3030305C3034305C3030306F5C303030665C3030305C3034305C303030465C303030755C3030306E5C303030635C303030745C303030695C3030306F5C3030306E}
\BKM@entry{id=57,open,dest={73656374696F6E2E31322E33},srcline={12}}{5C3337365C3337375C303030315C303030325C3030302E5C303030335C3030305C3034305C303030505C303030655C303030725C303030695C3030306F5C303030645C303030695C303030635C303030695C303030745C303030795C3030305C3034305C3030306F5C303030665C3030305C3034305C303030465C303030755C3030306E5C303030635C303030745C303030695C3030306F5C3030306E}
\@writefile{toc}{\contentsline {chapter}{\numberline {12}Function Monotonicity, Parity and Periodicity}{281}{chapter.12}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\pgfsyspdfmark {pgfid90}{5594039}{48050247}
\@writefile{toc}{\contentsline {section}{\numberline {12.1}Monotonicity of Function}{281}{section.12.1}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {12.2}Parity of Function}{281}{section.12.2}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {12.3}Periodicity of Function}{281}{section.12.3}\protected@file@percent }
\BKM@entry{id=58,open,dest={636861707465722E3133},flags=2,srcline={4}}{5C3337365C3337375C303030315C303030335C3030305C3034305C303030415C303030625C303030735C303030745C303030725C303030615C303030635C303030745C3030305C3034305C303030615C3030306E5C303030645C3030305C3034305C303030505C303030695C303030655C303030635C303030655C3030302D5C303030775C303030695C303030735C303030655C3030305C3034305C303030465C303030755C3030306E5C303030635C303030745C303030695C3030306F5C3030306E}
\BKM@entry{id=59,open,dest={73656374696F6E2E31332E31},srcline={6}}{5C3337365C3337375C303030315C303030335C3030302E5C303030315C3030305C3034305C303030415C303030625C303030735C303030745C303030725C303030615C303030635C303030745C3030305C3034305C303030465C303030755C3030306E5C303030635C303030745C303030695C3030306F5C3030306E}
\BKM@entry{id=60,open,dest={73656374696F6E2E31332E32},srcline={8}}{5C3337365C3337375C303030315C303030335C3030302E5C303030325C3030305C3034305C303030505C303030695C303030655C303030635C303030655C3030302D5C303030775C303030695C303030735C303030655C3030305C3034305C303030465C303030755C3030306E5C303030635C303030745C303030695C3030306F5C3030306E}
\@writefile{toc}{\contentsline {chapter}{\numberline {13}Abstract and Piece-wise Function}{283}{chapter.13}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\pgfsyspdfmark {pgfid91}{5594039}{48050247}
\@writefile{toc}{\contentsline {section}{\numberline {13.1}Abstract Function}{283}{section.13.1}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {13.2}Piece-wise Function}{283}{section.13.2}\protected@file@percent }
\BKM@entry{id=61,open,dest={636861707465722E3134},flags=2,srcline={4}}{5C3337365C3337375C303030315C303030345C3030305C3034305C3030304C5C303030695C3030306D5C303030695C303030745C3030305C3034305C303030615C3030306E5C303030645C3030305C3034305C303030435C3030306F5C3030306E5C303030745C303030695C3030306E5C303030755C303030695C303030745C30303079}
\BKM@entry{id=62,open,dest={73656374696F6E2E31342E31},srcline={5}}{5C3337365C3337375C303030315C303030345C3030302E5C303030315C3030305C3034305C3030304C5C303030695C3030306D5C303030695C303030745C3030305C3034305C3030306F5C303030665C3030305C3034305C303030535C303030655C303030715C303030755C303030655C3030306E5C303030635C30303065}
\BKM@entry{id=63,open,dest={73656374696F6E2E31342E32},srcline={8}}{5C3337365C3337375C303030315C303030345C3030302E5C303030325C3030305C3034305C3030306C5C303030695C3030306D5C303030695C303030745C3030305C3034305C3030306F5C303030665C3030305C3034305C303030465C303030755C3030306E5C303030635C303030745C303030695C3030306F5C3030306E}
\BKM@entry{id=64,open,dest={73656374696F6E2E31342E33},srcline={11}}{5C3337365C3337375C303030315C303030345C3030302E5C303030335C3030305C3034305C303030435C3030306F5C3030306E5C303030745C303030695C3030306E5C303030755C303030695C303030745C30303079}
\BKM@entry{id=65,open,dest={73656374696F6E2E31342E34},srcline={14}}{5C3337365C3337375C303030315C303030345C3030302E5C303030345C3030305C3034305C303030415C303030705C303030705C3030306C5C303030695C303030635C303030615C303030745C303030695C3030306F5C3030306E5C3030305C3034305C3030306F5C303030665C3030305C3034305C3030304C5C303030695C3030306D5C303030695C30303074}
\@writefile{toc}{\contentsline {chapter}{\numberline {14}Limit and Continuity}{285}{chapter.14}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\pgfsyspdfmark {pgfid92}{5594039}{48050247}
\@writefile{toc}{\contentsline {section}{\numberline {14.1}Limit of Sequence}{285}{section.14.1}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {14.2}limit of Function}{285}{section.14.2}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {14.3}Continuity}{285}{section.14.3}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {14.4}Application of Limit}{285}{section.14.4}\protected@file@percent }
\BKM@entry{id=66,open,dest={636861707465722E3135},flags=2,srcline={4}}{5C3337365C3337375C303030315C303030355C3030305C3034305C303030445C303030695C303030665C303030665C303030655C303030725C303030655C3030306E5C303030745C303030695C303030615C3030306C5C3030305C3034305C303030435C303030615C3030306C5C303030635C303030755C3030306C5C303030755C30303073}
\BKM@entry{id=67,open,dest={73656374696F6E2E31352E31},srcline={6}}{5C3337365C3337375C303030315C303030355C3030302E5C303030315C3030305C3034305C303030445C303030655C303030725C303030695C303030765C303030615C303030745C303030695C303030765C303030655C3030305C3034305C303030425C303030615C303030735C303030695C303030635C30303073}
\BKM@entry{id=68,open,dest={73656374696F6E2E31352E32},srcline={11}}{5C3337365C3337375C303030315C303030355C3030302E5C303030325C3030305C3034305C303030425C303030615C303030735C303030695C303030635C3030305C3034305C303030445C303030655C303030725C303030695C303030765C303030615C303030745C303030695C303030765C303030655C3030305C3034305C303030525C303030755C3030306C5C303030655C30303073}
\BKM@entry{id=69,open,dest={73656374696F6E2E31352E33},srcline={15}}{5C3337365C3337375C303030315C303030355C3030302E5C303030335C3030305C3034305C303030485C303030695C303030675C303030685C303030655C303030725C3030302D5C3030306F5C303030725C303030645C303030655C303030725C3030305C3034305C303030445C303030655C303030725C303030695C303030765C303030615C303030745C303030695C303030765C303030655C30303073}
\BKM@entry{id=70,open,dest={73656374696F6E2E31352E34},srcline={19}}{5C3337365C3337375C303030315C303030355C3030302E5C303030345C3030305C3034305C303030445C303030655C303030725C303030695C303030765C303030615C303030745C303030695C303030765C303030655C303030735C3030305C3034305C3030306F5C303030665C3030305C3034305C303030415C303030625C3030306E5C3030306F5C303030725C3030306D5C303030615C3030306C5C3030305C3034305C303030465C303030755C3030306E5C303030635C303030745C303030695C3030306F5C3030306E}
\BKM@entry{id=71,open,dest={73656374696F6E2E31352E35},srcline={23}}{5C3337365C3337375C303030315C303030355C3030302E5C303030355C3030305C3034305C303030445C303030695C303030665C303030665C303030655C303030725C303030655C3030306E5C303030745C303030695C303030615C303030745C303030695C3030306F5C3030306E}
\BKM@entry{id=72,open,dest={73656374696F6E2E31352E36},srcline={25}}{5C3337365C3337375C303030315C303030355C3030302E5C303030365C3030305C3034305C303030525C303030655C3030306C5C303030615C303030745C303030655C303030645C3030305C3034305C303030525C303030615C303030745C303030655C30303073}
\BKM@entry{id=73,open,dest={73656374696F6E2E31352E37},srcline={28}}{5C3337365C3337375C303030315C303030355C3030302E5C303030375C3030305C3034305C303030545C303030615C303030795C3030306C5C3030306F5C303030725C3030305C3034305C303030535C303030655C303030725C303030695C303030655C30303073}
\BKM@entry{id=74,open,dest={73656374696F6E2E31352E38},srcline={33}}{5C3337365C3337375C303030315C303030355C3030302E5C303030385C3030305C3034305C303030415C303030705C303030705C3030306C5C303030695C303030635C303030615C303030745C303030695C3030306F5C3030306E5C303030735C3030305C3034305C3030306F5C303030665C3030305C3034305C303030445C303030695C303030665C303030665C303030655C303030725C303030655C3030306E5C303030745C303030695C303030615C3030306C5C3030305C3034305C303030435C303030615C3030306C5C303030635C303030755C3030306C5C303030755C30303073}
\@writefile{toc}{\contentsline {chapter}{\numberline {15}Differential Calculus}{287}{chapter.15}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\pgfsyspdfmark {pgfid93}{5594039}{48050247}
\@writefile{toc}{\contentsline {section}{\numberline {15.1}Derivative Basics}{288}{section.15.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {15.1.1}Definition of Derivative}{288}{subsection.15.1.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {15.1.2}Geometric Meaning of Derivative}{288}{subsection.15.1.2}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {15.1.3}Physical Meaning of Derivative}{288}{subsection.15.1.3}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {15.2}Basic Derivative Rules}{288}{section.15.2}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {15.2.1}Derivatives of Elementary Functions}{288}{subsection.15.2.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {15.2.2}Product Rule, Quotient Rule, Chain Rule}{288}{subsection.15.2.2}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {15.3}Higher-order Derivatives}{288}{section.15.3}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {15.3.1}Second-order Derivatives and Applications}{288}{subsection.15.3.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {15.3.2}Calculation and Significance of Higher-order Derivatives}{288}{subsection.15.3.2}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {15.4}Derivatives of Abnormal Function}{288}{section.15.4}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {15.4.1}Derivatives of Implicit Functions}{288}{subsection.15.4.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {15.4.2}Derivatives of Parametric Equations}{288}{subsection.15.4.2}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {15.5}Differentiation}{288}{section.15.5}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {15.6}Related Rates}{288}{section.15.6}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {15.6.1}Relationships between Rates of Change of Different Quantities}{288}{subsection.15.6.1}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {15.7}Taylor Series}{288}{section.15.7}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {15.7.1}Taylor Expansion of Functions}{288}{subsection.15.7.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {15.7.2}Application of Taylor Series}{288}{subsection.15.7.2}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {15.8}Applications of Differential Calculus}{288}{section.15.8}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {15.8.1}Tangents and Normals of Curves}{288}{subsection.15.8.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {15.8.2}Mean Value Theorem in Differential Calculus}{288}{subsection.15.8.2}\protected@file@percent }
\@writefile{toc}{\contentsline {subsubsection}{\numberline {15.8.2.1}Fermat's Theorem}{288}{subsubsection.15.8.2.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsubsection}{\numberline {15.8.2.2}Rolle's Theorem}{288}{subsubsection.15.8.2.2}\protected@file@percent }
\@writefile{toc}{\contentsline {subsubsection}{\numberline {15.8.2.3}Lagrange's Mean Value Theorem}{288}{subsubsection.15.8.2.3}\protected@file@percent }
\@writefile{toc}{\contentsline {subsubsection}{\numberline {15.8.2.4}Cauchy's Mean Value Theorem}{288}{subsubsection.15.8.2.4}\protected@file@percent }
\@writefile{toc}{\contentsline {subsubsection}{\numberline {15.8.2.5}Indeterminate Form Limit}{288}{subsubsection.15.8.2.5}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {15.8.3}Extrema Problems and Optimization}{288}{subsection.15.8.3}\protected@file@percent }
\BKM@entry{id=75,open,dest={636861707465722E3136},flags=2,srcline={4}}{5C3337365C3337375C303030315C303030365C3030305C3034305C303030695C3030306E5C303030745C303030655C303030675C303030725C303030615C3030306C5C3030305C3034305C303030635C303030615C3030306C5C303030635C303030755C3030306C5C303030755C30303073}
\BKM@entry{id=76,open,dest={73656374696F6E2E31362E31},srcline={6}}{5C3337365C3337375C303030315C303030365C3030302E5C303030315C3030305C3034305C303030465C303030755C3030306E5C303030645C303030615C3030306D5C303030655C3030306E5C303030745C303030615C3030306C5C303030735C3030305C3034305C3030306F5C303030665C3030305C3034305C303030495C3030306E5C303030745C303030655C303030675C303030725C303030615C303030745C303030695C3030306F5C3030306E}
\BKM@entry{id=77,open,dest={73656374696F6E2E31362E32},srcline={11}}{5C3337365C3337375C303030315C303030365C3030302E5C303030325C3030305C3034305C303030545C303030655C303030635C303030685C3030306E5C303030695C303030715C303030755C303030655C303030735C3030305C3034305C3030306F5C303030665C3030305C3034305C303030495C3030306E5C303030745C303030655C303030675C303030725C303030615C303030745C303030695C3030306F5C3030306E}
\BKM@entry{id=78,open,dest={73656374696F6E2E31362E33},srcline={18}}{5C3337365C3337375C303030315C303030365C3030302E5C303030335C3030305C3034305C303030415C303030705C303030705C3030306C5C303030695C303030635C303030615C303030745C303030695C3030306F5C3030306E5C303030735C3030305C3034305C3030306F5C303030665C3030305C3034305C303030495C3030306E5C303030745C303030655C303030675C303030725C303030615C303030745C303030695C3030306F5C3030306E}
\BKM@entry{id=79,open,dest={73656374696F6E2E31362E34},srcline={24}}{5C3337365C3337375C303030315C303030365C3030302E5C303030345C3030305C3034305C303030495C3030306D5C303030705C303030725C3030306F5C303030705C303030655C303030725C3030305C3034305C303030495C3030306E5C303030745C303030655C303030675C303030725C303030615C3030306C5C30303073}
\BKM@entry{id=80,open,dest={73656374696F6E2E31362E35},srcline={28}}{5C3337365C3337375C303030315C303030365C3030302E5C303030355C3030305C3034305C3030304E5C303030755C3030306D5C303030655C303030725C303030695C303030635C303030615C3030306C5C3030305C3034305C303030495C3030306E5C303030745C303030655C303030675C303030725C303030615C303030745C303030695C3030306F5C3030306E5C3030305C3034305C3030304D5C303030655C303030745C303030685C3030306F5C303030645C30303073}
\@writefile{toc}{\contentsline {chapter}{\numberline {16}integral calculus}{289}{chapter.16}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\pgfsyspdfmark {pgfid94}{5594039}{48050247}
\@writefile{toc}{\contentsline {section}{\numberline {16.1}Fundamentals of Integration}{290}{section.16.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {16.1.1}Definition of the Integral}{290}{subsection.16.1.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {16.1.2}Properties of Integrals}{290}{subsection.16.1.2}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {16.1.3}The Fundamental Theorem of Calculus}{290}{subsection.16.1.3}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {16.2}Techniques of Integration}{290}{section.16.2}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {16.2.1}Basic Integration Formulas}{290}{subsection.16.2.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {16.2.2}Integration by Substitution}{290}{subsection.16.2.2}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {16.2.3}Integration by Parts}{290}{subsection.16.2.3}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {16.2.4}Trigonometric Integrals}{290}{subsection.16.2.4}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {16.2.5}Partial Fractions}{290}{subsection.16.2.5}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {16.3}Applications of Integration}{290}{section.16.3}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {16.3.1}Area Under Curves}{290}{subsection.16.3.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {16.3.2}Volumes of Solids of Revolution}{290}{subsection.16.3.2}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {16.3.3}Arc Length and Surface Area}{290}{subsection.16.3.3}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {16.3.4}Center of Mass and Moments}{290}{subsection.16.3.4}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {16.4}Improper Integrals}{290}{section.16.4}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {16.4.1}Convergence and Divergence of Improper Integrals}{290}{subsection.16.4.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {16.4.2}Applications of Improper Integrals}{290}{subsection.16.4.2}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {16.5}Numerical Integration Methods}{290}{section.16.5}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {16.5.1}The Trapezoidal Rule}{290}{subsection.16.5.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {16.5.2}Simpson's Rule}{290}{subsection.16.5.2}\protected@file@percent }
\BKM@entry{id=81,open,dest={636861707465722E3137},flags=2,srcline={4}}{5C3337365C3337375C303030315C303030375C3030305C3034305C303030445C303030695C303030665C303030665C303030655C303030725C303030655C3030306E5C303030745C303030695C303030615C3030306C5C3030305C3034305C303030455C303030715C303030755C303030615C303030745C303030695C3030306F5C3030306E}
\@writefile{toc}{\contentsline {chapter}{\numberline {17}Differential Equation}{291}{chapter.17}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\pgfsyspdfmark {pgfid95}{5594039}{48050247}
\BKM@entry{id=82,open,dest={636861707465722E3138},flags=2,srcline={4}}{5C3337365C3337375C303030315C303030385C3030305C3034305C303030495C3030306E5C303030665C303030695C3030306E5C303030695C303030745C303030655C3030305C3034305C303030535C303030655C303030725C303030695C303030655C30303073}
\@writefile{toc}{\contentsline {chapter}{\numberline {18}Infinite Series}{293}{chapter.18}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\pgfsyspdfmark {pgfid96}{5594039}{48050247}
\BKM@entry{id=83,open,dest={706172742E34},color={.95294 .4 .09804},flags=2,srcline={257}}{5C3337365C3337375C303030495C303030565C3030305C3034305C3030304D5C303030755C3030306C5C303030745C303030695C3030302D5C303030765C303030615C303030725C303030695C303030615C303030625C3030306C5C303030655C3030305C3034305C303030615C3030306E5C303030645C3030305C3034305C303030565C303030655C303030635C303030745C3030306F5C303030725C3030305C3034305C303030435C303030615C3030306C5C303030635C303030755C3030306C5C303030755C30303073}
\ttl@writefile{ptc}{\ttl@stoptoc{part@3}}
\ttl@writefile{ptc}{\ttl@starttoc{part@4}}
\pgfsyspdfmark {pgfid97}{5594039}{33587398}
\@writefile{toc}{\contentsline {part}{\numberline {IV}Multi-variable and Vector Calculus}{295}{part.4}\protected@file@percent }
\BKM@entry{id=84,open,dest={636861707465722E3139},flags=2,srcline={4}}{5C3337365C3337375C303030315C303030395C3030305C3034305C303030695C3030306E5C303030745C303030655C303030675C303030725C303030615C3030306C5C3030305C3034305C303030635C303030615C3030306C5C303030635C303030755C3030306C5C303030755C30303073}
\@writefile{toc}{\contentsline {chapter}{\numberline {19}integral calculus}{297}{chapter.19}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\pgfsyspdfmark {pgfid98}{5594039}{48050247}
\BKM@entry{id=85,open,dest={636861707465722E3230},flags=2,srcline={10}}{5C3337365C3337375C303030325C303030305C3030305C3034305C303030495C3030306E5C303030745C303030725C3030306F5C303030645C303030755C303030635C303030745C303030695C3030306F5C3030306E5C3030305C3034305C303030745C3030306F5C3030305C3034305C3030304D5C303030755C3030306C5C303030745C303030695C303030765C303030615C303030725C303030695C303030615C303030625C3030306C5C303030655C3030305C3034305C303030465C303030755C3030306E5C303030635C303030745C303030695C3030306F5C3030306E5C30303073}
\@writefile{toc}{\contentsline {chapter}{\numberline {20}Introduction to Multivariable Functions}{299}{chapter.20}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\pgfsyspdfmark {pgfid99}{5594039}{48050247}
\@writefile{toc}{\contentsline {subsection}{\numberline {20.0.1}Concepts of Multivariable Functions}{299}{subsection.20.0.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {20.0.2}Graphs and Contour Plots}{299}{subsection.20.0.2}\protected@file@percent }
\BKM@entry{id=86,open,dest={636861707465722E3231},flags=2,srcline={18}}{5C3337365C3337375C303030325C303030315C3030305C3034305C303030505C303030615C303030725C303030745C303030695C303030615C3030306C5C3030305C3034305C303030445C303030655C303030725C303030695C303030765C303030615C303030745C303030695C303030765C303030655C30303073}
\@writefile{toc}{\contentsline {chapter}{\numberline {21}Partial Derivatives}{301}{chapter.21}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\pgfsyspdfmark {pgfid100}{5594039}{48050247}
\@writefile{toc}{\contentsline {subsection}{\numberline {21.0.1}Definition and Interpretation}{301}{subsection.21.0.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {21.0.2}Higher-Order Partial Derivatives}{301}{subsection.21.0.2}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {21.0.3}Chain Rule in Multiple Variables}{301}{subsection.21.0.3}\protected@file@percent }
\BKM@entry{id=87,open,dest={636861707465722E3232},flags=2,srcline={27}}{5C3337365C3337375C303030325C303030325C3030305C3034305C3030304D5C303030755C3030306C5C303030745C303030695C303030705C3030306C5C303030655C3030305C3034305C303030495C3030306E5C303030745C303030655C303030675C303030725C303030615C3030306C5C30303073}
\@writefile{toc}{\contentsline {chapter}{\numberline {22}Multiple Integrals}{303}{chapter.22}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\pgfsyspdfmark {pgfid101}{5594039}{48050247}
\@writefile{toc}{\contentsline {subsection}{\numberline {22.0.1}Double Integrals}{303}{subsection.22.0.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsubsection}{\numberline {22.0.1.1}Iterated Integrals}{303}{subsubsection.22.0.1.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsubsection}{\numberline {22.0.1.2}Double Integrals over General Regions}{303}{subsubsection.22.0.1.2}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {22.0.2}Triple Integrals}{303}{subsection.22.0.2}\protected@file@percent }
\@writefile{toc}{\contentsline {subsubsection}{\numberline {22.0.2.1}Cylindrical and Spherical Coordinates}{303}{subsubsection.22.0.2.1}\protected@file@percent }
\BKM@entry{id=88,open,dest={636861707465722E3233},flags=2,srcline={38}}{5C3337365C3337375C303030325C303030335C3030305C3034305C303030565C303030655C303030635C303030745C3030306F5C303030725C3030305C3034305C303030435C303030615C3030306C5C303030635C303030755C3030306C5C303030755C30303073}
\BKM@entry{id=89,open,dest={73656374696F6E2E32332E31},srcline={39}}{5C3337365C3337375C303030325C303030335C3030302E5C303030315C3030305C3034305C303030565C303030655C303030635C303030745C3030306F5C303030725C3030305C3034305C303030465C303030695C303030655C3030306C5C303030645C30303073}
\BKM@entry{id=90,open,dest={73656374696F6E2E32332E32},srcline={40}}{5C3337365C3337375C303030325C303030335C3030302E5C303030325C3030305C3034305C303030475C303030725C303030615C303030645C303030695C303030655C3030306E5C303030745C3030302C5C3030305C3034305C303030445C303030695C303030765C303030655C303030725C303030675C303030655C3030306E5C303030635C303030655C3030302C5C3030305C3034305C303030615C3030306E5C303030645C3030305C3034305C303030435C303030755C303030725C3030306C}
\BKM@entry{id=91,open,dest={73656374696F6E2E32332E33},srcline={41}}{5C3337365C3337375C303030325C303030335C3030302E5C303030335C3030305C3034305C3030304C5C303030695C3030306E5C303030655C3030305C3034305C303030615C3030306E5C303030645C3030305C3034305C303030535C303030755C303030725C303030665C303030615C303030635C303030655C3030305C3034305C303030495C3030306E5C303030745C303030655C303030675C303030725C303030615C3030306C5C30303073}
\@writefile{toc}{\contentsline {chapter}{\numberline {23}Vector Calculus}{305}{chapter.23}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\pgfsyspdfmark {pgfid102}{5594039}{48050247}
\@writefile{toc}{\contentsline {section}{\numberline {23.1}Vector Fields}{305}{section.23.1}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {23.2}Gradient, Divergence, and Curl}{305}{section.23.2}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {23.3}Line and Surface Integrals}{305}{section.23.3}\protected@file@percent }
\BKM@entry{id=92,open,dest={706172742E35},color={.95294 .4 .09804},flags=2,srcline={260}}{5C3337365C3337375C303030565C3030305C3034305C3030304C5C303030695C3030306E5C303030655C303030615C303030725C3030305C3034305C303030415C3030306C5C303030675C303030655C303030625C303030725C30303061}
\ttl@writefile{ptc}{\ttl@stoptoc{part@4}}
\ttl@writefile{ptc}{\ttl@starttoc{part@5}}
\pgfsyspdfmark {pgfid103}{5594039}{33587398}
\@writefile{toc}{\contentsline {part}{\numberline {V}Linear Algebra}{307}{part.5}\protected@file@percent }
\BKM@entry{id=93,open,dest={636861707465722E3234},flags=2,srcline={4}}{5C3337365C3337375C303030325C303030345C3030305C3034305C303030565C303030655C303030635C303030745C3030306F5C303030725C303030735C3030305C3034305C303030535C303030705C303030615C303030635C303030655C3030305C3034305C303030615C3030306E5C303030645C3030305C3034305C303030745C303030685C303030655C3030305C3034305C303030475C303030655C3030306F5C3030306D5C303030655C303030745C303030725C303030795C3030305C3034305C3030306F5C303030665C3030305C3034305C303030535C303030705C303030615C303030635C30303065}
\@writefile{toc}{\contentsline {chapter}{\numberline {24}Vectors Space and the Geometry of Space}{309}{chapter.24}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\pgfsyspdfmark {pgfid104}{5594039}{48050247}
\BKM@entry{id=94,open,dest={636861707465722E3235},flags=2,srcline={14}}{5C3337365C3337375C303030325C303030355C3030305C3034305C3030304D5C303030615C303030745C303030725C303030695C303030635C303030655C303030735C3030305C3034305C303030615C3030306E5C303030645C3030305C3034305C303030535C303030795C303030735C303030745C303030655C3030306D5C303030735C3030305C3034305C3030306F5C303030665C3030305C3034305C303030455C303030715C303030755C303030615C303030745C303030695C3030306F5C3030306E5C30303073}
\@writefile{toc}{\contentsline {chapter}{\numberline {25}Matrices and Systems of Equations}{311}{chapter.25}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\pgfsyspdfmark {pgfid105}{5594039}{48050247}
\BKM@entry{id=95,open,dest={636861707465722E3236},flags=2,srcline={20}}{5C3337365C3337375C303030325C303030365C3030305C3034305C303030445C303030655C303030745C303030655C303030725C3030306D5C303030695C3030306E5C303030615C3030306E5C303030745C3030305C3034305C3030306F5C303030665C3030305C3034305C3030304D5C303030615C303030745C303030725C303030695C30303078}
\@writefile{toc}{\contentsline {chapter}{\numberline {26}Determinant of Matrix}{313}{chapter.26}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\pgfsyspdfmark {pgfid106}{5594039}{48050247}
\BKM@entry{id=96,open,dest={636861707465722E3237},flags=2,srcline={26}}{5C3337365C3337375C303030325C303030375C3030305C3034305C3030304F5C303030725C303030745C303030685C3030306F5C303030675C3030306F5C3030306E5C303030615C3030306C5C303030695C303030745C30303079}