-
Notifications
You must be signed in to change notification settings - Fork 197
/
mathematics-roadmap.drawio
1110 lines (1110 loc) · 121 KB
/
mathematics-roadmap.drawio
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
<mxfile host="Electron" modified="2024-06-17T13:14:25.767Z" agent="Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) draw.io/24.5.3 Chrome/124.0.6367.207 Electron/30.0.6 Safari/537.36" etag="hajiQb9jVSigGS4sBuIq" version="24.5.3" type="device">
<diagram id="uAUSS5AuCfC497PnXvrO" name="Page-1">
<mxGraphModel dx="4341" dy="1682" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="850" pageHeight="1100" math="0" shadow="0">
<root>
<mxCell id="0" />
<mxCell id="1" parent="0" />
<mxCell id="ZpYR9GBJYjBJ57970Wno-1" value="Legend" style="swimlane;fillColor=#FFFFFF;" parent="1" vertex="1">
<mxGeometry x="-1320" y="-1100" width="160" height="320" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-2" value="Optional" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#fff2cc;strokeColor=#d6b656;" parent="ZpYR9GBJYjBJ57970Wno-1" vertex="1">
<mxGeometry x="30" y="150" width="100" height="30" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-3" value="Optional but Recommended" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="ZpYR9GBJYjBJ57970Wno-1" vertex="1">
<mxGeometry x="30" y="90" width="100" height="40" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-4" value="Essential<br>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="ZpYR9GBJYjBJ57970Wno-1" vertex="1">
<mxGeometry x="30" y="40" width="100" height="30" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-46" value="" style="endArrow=classic;html=1;" parent="ZpYR9GBJYjBJ57970Wno-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="55" y="210" as="sourcePoint" />
<mxPoint x="105" y="210" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-47" value="One way Dependency" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="ZpYR9GBJYjBJ57970Wno-1" vertex="1">
<mxGeometry x="40" y="220" width="80" height="30" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-48" value="" style="endArrow=classic;startArrow=classic;html=1;" parent="ZpYR9GBJYjBJ57970Wno-1" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="55" y="280" as="sourcePoint" />
<mxPoint x="105" y="280" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-49" value="Interrelation" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="ZpYR9GBJYjBJ57970Wno-1" vertex="1">
<mxGeometry x="40" y="290" width="80" height="20" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-6" value="" style="shape=flexArrow;endArrow=classic;html=1;fontSize=30;entryX=0.5;entryY=0;entryDx=0;entryDy=0;fillColor=#e1d5e7;strokeColor=#9673a6;exitX=0.5;exitY=1;exitDx=0;exitDy=0;" parent="1" source="ZpYR9GBJYjBJ57970Wno-7" target="ZpYR9GBJYjBJ57970Wno-8" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="-579" y="-1040" as="sourcePoint" />
<mxPoint x="-579" y="-510" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-7" value="Start" style="rounded=0;whiteSpace=wrap;html=1;fontSize=30;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="1" vertex="1">
<mxGeometry x="-600" y="-1100" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-19" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="1" source="ZpYR9GBJYjBJ57970Wno-8" target="ZpYR9GBJYjBJ57970Wno-16" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-8" value="Introduction to Philosophy" style="swimlane;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="1" vertex="1">
<mxGeometry x="-780" y="-760" width="480" height="200" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-9" value="Think: A Compelling Introduction to Philosophy<br><b>Simon Blackburn</b><br>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="ZpYR9GBJYjBJ57970Wno-8" vertex="1">
<mxGeometry x="140" y="40" width="200" height="60" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-10" value="Philosophy: A Text with Readings<br><b>Manuel Velasquez</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="ZpYR9GBJYjBJ57970Wno-8" vertex="1">
<mxGeometry x="10" y="120" width="200" height="60" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-11" value="Thinking It Through: An Introduction to Contemporary Philosophy<br><b>Kwame Appiah</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="ZpYR9GBJYjBJ57970Wno-8" vertex="1">
<mxGeometry x="230" y="120" width="241" height="60" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-27" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="1" source="ZpYR9GBJYjBJ57970Wno-16" target="ZpYR9GBJYjBJ57970Wno-20" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-62" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="1" source="ZpYR9GBJYjBJ57970Wno-16" target="HZ-TQ83FuogPrPlQnaqr-56" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-16" value="Introduction to Logic" style="swimlane;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="1" vertex="1">
<mxGeometry x="-730" y="-440" width="380" height="120" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-17" value="The Power of Logic<br><b>Frances Howard-Snyder, Daniel Howard-Snyder, Ryan Wasserman</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="ZpYR9GBJYjBJ57970Wno-16" vertex="1">
<mxGeometry x="10" y="40" width="180" height="70" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-18" value="A Concise Introduction to Logic<br><b>Patrick J. Hurely</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="ZpYR9GBJYjBJ57970Wno-16" vertex="1">
<mxGeometry x="210" y="40" width="160" height="70" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-38" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;" parent="1" source="ZpYR9GBJYjBJ57970Wno-20" target="ZpYR9GBJYjBJ57970Wno-36" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-20" value="Precalculus" style="swimlane;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="-720" y="-200" width="360" height="120" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-21" value="Precalculus: Mathematics for Calculus<br><b>James Stewart, Lothar Redlin, Saleem Watson</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="ZpYR9GBJYjBJ57970Wno-20" vertex="1">
<mxGeometry x="10" y="40" width="170" height="70" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-32" value="Precalculus<br><b>Michael Sullivan</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="ZpYR9GBJYjBJ57970Wno-20" vertex="1">
<mxGeometry x="200" y="40" width="150" height="70" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-53" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;" parent="1" source="ZpYR9GBJYjBJ57970Wno-36" target="ZpYR9GBJYjBJ57970Wno-49" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-108" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="1" source="ZpYR9GBJYjBJ57970Wno-36" target="ZpYR9GBJYjBJ57970Wno-66" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-111" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;fillColor=#fff2cc;strokeColor=#d6b656;" parent="1" source="ZpYR9GBJYjBJ57970Wno-36" target="ZpYR9GBJYjBJ57970Wno-109" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-36" value="Calculus" style="swimlane;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="-760" y="40" width="440" height="240" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-37" value="Calculus: Early Transcendentals<br><b>James Stewart</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="ZpYR9GBJYjBJ57970Wno-36" vertex="1">
<mxGeometry x="125" y="40" width="190" height="80" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-44" value="Infinite Powers: How Calculus Reveals the Secrets of the Universe<br><b>Steven H. Strogatz</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="ZpYR9GBJYjBJ57970Wno-36" vertex="1">
<mxGeometry x="20" y="140" width="190" height="80" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-48" value="Thomas' Calculus<br><b>George B. Thomas, Jr.</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="ZpYR9GBJYjBJ57970Wno-36" vertex="1">
<mxGeometry x="230" y="140" width="190" height="80" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-39" value="" style="shape=flexArrow;endArrow=classic;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" target="ZpYR9GBJYjBJ57970Wno-20" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="-982.5" y="-1050" as="sourcePoint" />
<mxPoint x="-981" y="-256" as="targetPoint" />
<Array as="points">
<mxPoint x="-980" y="-140" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-40" value="Start" style="rounded=0;whiteSpace=wrap;html=1;fontSize=30;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="-1040" y="-1100" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-59" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" parent="1" source="ZpYR9GBJYjBJ57970Wno-49" target="ZpYR9GBJYjBJ57970Wno-54" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-78" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" source="ZpYR9GBJYjBJ57970Wno-49" target="ZpYR9GBJYjBJ57970Wno-72" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-49" value="Introduction to Linear Algebra" style="swimlane;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="-718.75" y="400" width="357.5" height="200" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-50" value="Elementary Linear Algebra<br><b>Howard Anton, Chris Rorres</b><br>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="ZpYR9GBJYjBJ57970Wno-49" vertex="1">
<mxGeometry x="98.75" y="42.5" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-51" value="Introduction to Linear Algebra <br><b>Gilbert Strang</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="ZpYR9GBJYjBJ57970Wno-49" vertex="1">
<mxGeometry x="15" y="120" width="135" height="70" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-52" value="Linear Algebra and Its Applications <br><b>David C. Lay, Steven R. Lay, Judi J. McDonald</b><br>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="ZpYR9GBJYjBJ57970Wno-49" vertex="1">
<mxGeometry x="165" y="120" width="180" height="70" as="geometry" />
</mxCell>
<mxCell id="xL-RMtT2ga-J8ltklIkg-5" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" parent="1" source="ZpYR9GBJYjBJ57970Wno-54" target="xL-RMtT2ga-J8ltklIkg-1" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-54" value="Introduction to Differential Equations" style="swimlane;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="-240" y="365" width="280" height="270" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-55" value="Elementary Differential Equations and Boundary Value Problems<br><b>William E. Boyce, Richard C. DiPrima</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="ZpYR9GBJYjBJ57970Wno-54" vertex="1">
<mxGeometry x="22.5" y="40" width="235" height="60" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-57" value="Fundamentals of Differential Equations<br><span><b>David Snider, Edward B. Saff, and R. Kent Nagle</b></span><br>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="ZpYR9GBJYjBJ57970Wno-54" vertex="1">
<mxGeometry x="25" y="195" width="234" height="60" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-58" value="Differential Equations<br><b>Dennis Zill, Warren Wright</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="ZpYR9GBJYjBJ57970Wno-54" vertex="1">
<mxGeometry x="25" y="115" width="230" height="60" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-66" value="Problem Solving" style="swimlane;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="1" vertex="1">
<mxGeometry x="-200" y="20" width="310" height="280" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-67" value="How to Solve It<br><b>G. Polya</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="ZpYR9GBJYjBJ57970Wno-66" vertex="1">
<mxGeometry x="19.92" y="40" width="110" height="60" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-68" value="Solving Mathematical Problems<br><b>Terence Tao</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="ZpYR9GBJYjBJ57970Wno-66" vertex="1">
<mxGeometry x="150.08999999999997" y="40" width="140" height="60" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-69" value="<div>Mathematical Discovery: On Understanding, Learning and Teaching Problem Solving</div><div><b>George Polya</b></div>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="ZpYR9GBJYjBJ57970Wno-66" vertex="1">
<mxGeometry x="19.92" y="200" width="270.17" height="60" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-70" value="<div>How to Solve Mathematical Problems</div><div><b>Wayne Wickelgren</b></div>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="ZpYR9GBJYjBJ57970Wno-66" vertex="1">
<mxGeometry x="40" y="120" width="230" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-28" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.25;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" parent="1" source="ZpYR9GBJYjBJ57970Wno-72" target="HZ-TQ83FuogPrPlQnaqr-14" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-69" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" source="ZpYR9GBJYjBJ57970Wno-72" target="HZ-TQ83FuogPrPlQnaqr-63" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-84" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.75;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" source="ZpYR9GBJYjBJ57970Wno-72" target="HZ-TQ83FuogPrPlQnaqr-79" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-98" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;" parent="1" source="ZpYR9GBJYjBJ57970Wno-72" target="HZ-TQ83FuogPrPlQnaqr-85" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-99" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.25;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" source="ZpYR9GBJYjBJ57970Wno-72" target="HZ-TQ83FuogPrPlQnaqr-70" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-72" value="Naive Set Theory, Mathematical Reasoning, Proofs, and Discrete Mathematics" style="swimlane;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="-880" y="720" width="680" height="240" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-74" value="How to Prove It<br><b>Daniel J. Velleman</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="ZpYR9GBJYjBJ57970Wno-72" vertex="1">
<mxGeometry x="20" y="40" width="130" height="60" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-76" value="Introduction to Mathematical Proofs<br><b>Charles E. Roberts</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="ZpYR9GBJYjBJ57970Wno-72" vertex="1">
<mxGeometry x="160" y="40" width="170" height="60" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-77" value="Proofs and Fundamentals<br><b>Ethan D. Bloch</b><br>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="ZpYR9GBJYjBJ57970Wno-72" vertex="1">
<mxGeometry x="480" y="40" width="166" height="60" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-75" value="Book Of Proof<br><b>Richard Hammak</b><br>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="ZpYR9GBJYjBJ57970Wno-72" vertex="1">
<mxGeometry x="340" y="40" width="130" height="60" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-95" value="Discrete Mathematics" style="swimlane;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="ZpYR9GBJYjBJ57970Wno-72" vertex="1">
<mxGeometry x="50" y="110" width="560" height="110" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-73" value="Discrete Mathematics with Applications<br><b>Susanna S. Epp</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="ZpYR9GBJYjBJ57970Wno-95" vertex="1">
<mxGeometry x="10" y="40" width="170" height="60" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-85" value="Discrete Mathematics and Its Applications<br><b>Kenneth H. Rosen</b><b><br></b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="ZpYR9GBJYjBJ57970Wno-95" vertex="1">
<mxGeometry x="196" y="40" width="166" height="60" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-102" value="<div>Mathematics: A Discrete Introduction</div><div><b>Edward R. Scheinerman</b></div>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="ZpYR9GBJYjBJ57970Wno-95" vertex="1">
<mxGeometry x="380" y="40" width="166" height="60" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-109" value="Introduction to Physics" style="swimlane;fillColor=#fff2cc;strokeColor=#d6b656;" parent="1" vertex="1">
<mxGeometry x="-1300" y="50" width="420" height="220" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-110" value="Physics for Scientists and Engineers with Modern Physics<br><b>Raymond A. Serway, John W. Jewett Jr.</b><br>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#fff2cc;strokeColor=#d6b656;" parent="ZpYR9GBJYjBJ57970Wno-109" vertex="1">
<mxGeometry x="15" y="44" width="190" height="75" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-112" value="An Introduction to Physical Science<br><b>James T. Shipman, Jerry D. Wilson, Charles A. Higgens Jr.</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#fff2cc;strokeColor=#d6b656;" parent="ZpYR9GBJYjBJ57970Wno-109" vertex="1">
<mxGeometry x="220" y="44" width="190" height="75" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-115" value="Physics for Scientists and Engineers: A Strategic Approach with Modern Physics<br><b>Randall D. Knight</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#fff2cc;strokeColor=#d6b656;" parent="ZpYR9GBJYjBJ57970Wno-109" vertex="1">
<mxGeometry x="115" y="130" width="190" height="75" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-122" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;fillColor=#fff2cc;strokeColor=#d6b656;" parent="1" source="ZpYR9GBJYjBJ57970Wno-117" target="ZpYR9GBJYjBJ57970Wno-95" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-44" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.75;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;fillColor=#fff2cc;strokeColor=#d6b656;" parent="1" source="ZpYR9GBJYjBJ57970Wno-117" target="HZ-TQ83FuogPrPlQnaqr-37" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-125" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.75;exitDx=0;exitDy=0;entryX=0;entryY=0.25;entryDx=0;entryDy=0;fillColor=#fff2cc;strokeColor=#d6b656;" parent="1" source="ZpYR9GBJYjBJ57970Wno-117" target="HZ-TQ83FuogPrPlQnaqr-119" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-117" value="Introduction to Programming with Python" style="swimlane;fillColor=#fff2cc;strokeColor=#d6b656;" parent="1" vertex="1">
<mxGeometry x="-80" y="793.5" width="320" height="183" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-118" value="Head First Python<br><b>Paul Barry</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#fff2cc;strokeColor=#d6b656;" parent="ZpYR9GBJYjBJ57970Wno-117" vertex="1">
<mxGeometry x="10" y="38" width="130" height="60" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-119" value="<div>Think Python: How to think like a computer scientist</div><div><b>Allen B. Downey</b></div>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#fff2cc;strokeColor=#d6b656;" parent="ZpYR9GBJYjBJ57970Wno-117" vertex="1">
<mxGeometry x="82.5" y="113" width="165" height="60" as="geometry" />
</mxCell>
<mxCell id="ZpYR9GBJYjBJ57970Wno-120" value="A Beginners Guide to Python 3 Programming<br><b>John Hunt</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#fff2cc;strokeColor=#d6b656;" parent="ZpYR9GBJYjBJ57970Wno-117" vertex="1">
<mxGeometry x="160" y="38" width="150" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-53" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="1" source="HZ-TQ83FuogPrPlQnaqr-1" target="HZ-TQ83FuogPrPlQnaqr-29" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-54" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.25;exitY=1;exitDx=0;exitDy=0;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="1" source="HZ-TQ83FuogPrPlQnaqr-1" target="HZ-TQ83FuogPrPlQnaqr-14" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-55" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.75;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="1" source="HZ-TQ83FuogPrPlQnaqr-1" target="HZ-TQ83FuogPrPlQnaqr-37" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-1" value="Introduction to the Philosophy of Mathematics and Logic" style="swimlane;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="1" vertex="1">
<mxGeometry x="1155" y="280" width="650" height="279" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-2" value="Introduction to Logic and to the Methodology of the Deductive Sciences<br><b>Alfred Tarski</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="HZ-TQ83FuogPrPlQnaqr-1" vertex="1">
<mxGeometry x="10" y="39" width="234" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-3" value="Introduction to Mathematical Philosophy<br><b>Bertrand Russell</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="HZ-TQ83FuogPrPlQnaqr-1" vertex="1">
<mxGeometry x="10" y="200" width="185" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-4" value="Mathematical Thought: An Introduction to The Philosophy of Mathemematics<br><b>Evert W. Beth</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="HZ-TQ83FuogPrPlQnaqr-1" vertex="1">
<mxGeometry x="196" y="120" width="239" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-5" value="On the Philosophy of Logic<br><b>Jennifer Fisher</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="HZ-TQ83FuogPrPlQnaqr-1" vertex="1">
<mxGeometry x="270" y="39" width="175" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-6" value="Philosophy of Logics<br><b>Susan Haack</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="HZ-TQ83FuogPrPlQnaqr-1" vertex="1">
<mxGeometry x="480" y="200" width="154" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-7" value="Philosophy of Mathematics<br><b>James Robert Brown</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="HZ-TQ83FuogPrPlQnaqr-1" vertex="1">
<mxGeometry x="10" y="120" width="169" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-9" value="The Foundations of Arithmetic<br><b>Gottlob Frege</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="HZ-TQ83FuogPrPlQnaqr-1" vertex="1">
<mxGeometry x="460" y="120" width="174" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-10" value="The Concept of Logical Consequence<br><b>John Etchemendy</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="HZ-TQ83FuogPrPlQnaqr-1" vertex="1">
<mxGeometry x="470" y="39" width="164" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-12" value="The Concept of Logical Consequence: An Introduction to Philosophical Logic<br><b>Matthew W. McKeon</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="HZ-TQ83FuogPrPlQnaqr-1" vertex="1">
<mxGeometry x="210" y="200" width="250" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-36" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" parent="1" source="HZ-TQ83FuogPrPlQnaqr-14" target="HZ-TQ83FuogPrPlQnaqr-29" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-63" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.25;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" source="HZ-TQ83FuogPrPlQnaqr-14" target="XHwMdBdWKg2Phqc04OuS-54" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-71" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.75;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" source="HZ-TQ83FuogPrPlQnaqr-14" target="XHwMdBdWKg2Phqc04OuS-64" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-14" value="Introduction to Axiomatic Set Theory" style="swimlane;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="460" y="685" width="600" height="190" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-15" value="Classic Set Theory<br><b>Derek Goldrei</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-14" vertex="1">
<mxGeometry x="115" y="40" width="170" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-16" value="Elements of Set Theory<br><b>Herbert Enderton</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-14" vertex="1">
<mxGeometry x="20" y="110" width="170" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-17" value="Introduction to Set Theory<br><b>Karel Hrbacek, Thomas Jech</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-14" vertex="1">
<mxGeometry x="296.5" y="40" width="183.5" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-18" value="Foundations of Set Theory<br><b>A.A. Fraenkel. Y. Bar-Hillel, A. Levy</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-14" vertex="1">
<mxGeometry x="200" y="110" width="170" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-19" value="A First Course in Mathematical Logic and Set Theory<br><b>Michael L. O'Leary</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-14" vertex="1">
<mxGeometry x="383" y="110" width="190" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-29" value="Introduction to Mathematical Logic and Model Theory" style="swimlane;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="1180" y="680" width="600" height="200" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-30" value="Mathematical Logic<br><b>Ian Chiswell, Wilfrid Hodges</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-29" vertex="1">
<mxGeometry x="15" y="40" width="180" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-31" value="Propositional and Predicate Calculus<br><b>Derek Goldrei</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-29" vertex="1">
<mxGeometry x="15" y="120" width="183" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-32" value="A Mathematical Introduction to Logic<br><b>Herbert Enderton</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-29" vertex="1">
<mxGeometry x="210" y="40" width="183" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-33" value="A Friendly Introduction to Mathematical Logic<br><b>Christopher C. Leary</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-29" vertex="1">
<mxGeometry x="213" y="120" width="180" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-34" value="A First Course in Logic<br><b>Shawn Hedman</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-29" vertex="1">
<mxGeometry x="410" y="40" width="180" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-35" value="Introduction to Mathematical Logic<br><b>Elliott Mendelson</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-29" vertex="1">
<mxGeometry x="415" y="120" width="175" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-37" value="Introduction to the Theory of Computation" style="swimlane;fillColor=#dae8fc;strokeColor=#6c8ebf;startSize=23;" parent="1" vertex="1">
<mxGeometry x="1900" y="680" width="360" height="200" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-38" value="<span>Introduction to the Theory of Computation<br><b>Michael Sipser</b></span>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-37" vertex="1">
<mxGeometry x="14" y="40" width="176" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-39" value="<span>Introduction to Languages and the Theory of Computation<br><b>John C. Martin</b></span>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-37" vertex="1">
<mxGeometry x="68.75" y="120" width="222.5" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-40" value="Computability Theory <b>Herbert Enderton</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-37" vertex="1">
<mxGeometry x="200" y="40" width="143" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-45" value="" style="endArrow=classic;startArrow=classic;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;exitX=1;exitY=0.5;exitDx=0;exitDy=0;" parent="1" source="HZ-TQ83FuogPrPlQnaqr-29" target="HZ-TQ83FuogPrPlQnaqr-37" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1640" y="900" as="sourcePoint" />
<mxPoint x="1690" y="850" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-61" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="1" source="HZ-TQ83FuogPrPlQnaqr-56" target="HZ-TQ83FuogPrPlQnaqr-1" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-56" value="Introduction to the Philosophy of Language" style="swimlane;fillColor=#e1d5e7;strokeColor=#9673a6;startSize=23;" parent="1" vertex="1">
<mxGeometry x="1304.5" y="-40" width="351" height="200" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-57" value="Philosophy of Language<br><b>Alexander Miller</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="HZ-TQ83FuogPrPlQnaqr-56" vertex="1">
<mxGeometry x="15.5" y="40" width="146" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-58" value="Philosophy of Language<br><b>William G. Lycan</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="HZ-TQ83FuogPrPlQnaqr-56" vertex="1">
<mxGeometry x="15.5" y="120" width="146" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-59" value="An Introduction to the Philosophy of Language<br><b>Michael Morris</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="HZ-TQ83FuogPrPlQnaqr-56" vertex="1">
<mxGeometry x="178" y="40" width="158.25" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-60" value="Philosophy of Language An Introduction<br><b>Chris Daly</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="HZ-TQ83FuogPrPlQnaqr-56" vertex="1">
<mxGeometry x="171.75" y="120" width="164.5" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-109" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" source="HZ-TQ83FuogPrPlQnaqr-63" target="HZ-TQ83FuogPrPlQnaqr-100" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-126" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.75;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" source="HZ-TQ83FuogPrPlQnaqr-63" target="HZ-TQ83FuogPrPlQnaqr-119" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-170" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" parent="1" source="HZ-TQ83FuogPrPlQnaqr-63" target="HZ-TQ83FuogPrPlQnaqr-138" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="-900" y="1180" />
<mxPoint x="-900" y="1820" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-63" value="Introduction to Real Analysis" style="swimlane;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="-838.5" y="1080" width="597" height="200" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-64" value="Introduction to Real Analysis<br><b>Robert G. Bartle, Donald R. Sherbert</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-63" vertex="1">
<mxGeometry x="114.5" y="40" width="180" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-65" value="How to Think About Analysis<br><b>Lara Alcock</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-63" vertex="1">
<mxGeometry x="23.5" y="120" width="170" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-66" value="Introduction to Real Analysis<br><b>William F. Trench</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-63" vertex="1">
<mxGeometry x="310" y="40" width="170" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-67" value="From Calculus to Analysis<br><b>Steen Pedersen</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-63" vertex="1">
<mxGeometry x="218.5" y="120" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-68" value="Writing Proofs in Analysis<br><b>Jonathan M. Kane</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-63" vertex="1">
<mxGeometry x="408.5" y="120" width="170" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-115" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" source="HZ-TQ83FuogPrPlQnaqr-70" target="HZ-TQ83FuogPrPlQnaqr-110" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-70" value="Introduction to Number Theory" style="swimlane;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="-1360" y="1080" width="397" height="200" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-71" value="Elementary Number Theory<br><b>David Burton</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-70" vertex="1">
<mxGeometry x="109" y="40" width="165" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-72" value="Elementary Number Theory with Applications<br><b>Thomas Koshy</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-70" vertex="1">
<mxGeometry x="20" y="120" width="165" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-73" value="<div>Elementary Number Theory</div><div><b>Kenneth H. Rosen</b></div>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-70" vertex="1">
<mxGeometry x="200" y="120" width="170" height="61" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-83" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.75;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" source="HZ-TQ83FuogPrPlQnaqr-79" target="XHwMdBdWKg2Phqc04OuS-78" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-79" value="Introduction to Combinatorics" style="swimlane;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="-119.99714285714276" y="1080" width="420" height="210" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-80" value="Combinatorial Reasoning: An Introduction to the Art of Counting<br><b>Duane DeTemple, William Webb</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-79" vertex="1">
<mxGeometry x="20" y="45" width="205" height="70" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-81" value="Combinatorics: An Introduction<br><b>Theodore G. Faticoni</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-79" vertex="1">
<mxGeometry x="20" y="130" width="156" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-82" value="How to Count: An Introduction to Combinatorics and Its Applications<br><b>Robert A. Beeler</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-79" vertex="1">
<mxGeometry x="190" y="130" width="215" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-83" value="Introductory Combinatorics<br><b>Richard A. Brualdi</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-79" vertex="1">
<mxGeometry x="240" y="50" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-85" value="Euclidean and Non-Euclidean Geometry" style="swimlane;fillColor=#dae8fc;strokeColor=#6c8ebf;startSize=23;" parent="1" vertex="1">
<mxGeometry x="-2030" y="639" width="548" height="402.5" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-86" value="Foundations of Euclidean and Non-Euclidean Geometry<br><b>Ellery B. Golos</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-85" vertex="1">
<mxGeometry x="103.5" y="40" width="180" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-87" value="Foundations of Geometry<br><b>Gerard A. Venema</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-85" vertex="1">
<mxGeometry x="309.5" y="40" width="135" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-88" value="Euclidean and Non-Euclidean Geometry<br><b>Marvin Jay Greenberg</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-85" vertex="1">
<mxGeometry x="15" y="115" width="180" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-91" value="Modern Geometries<br><b>John R. Smart</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-85" vertex="1">
<mxGeometry x="395" y="115" width="135" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-95" value="The Four Pillars of Geometry<br><b>John Stillwell</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-85" vertex="1">
<mxGeometry x="217" y="115" width="150" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-50" value="A Modern View of Geometry<br><b>Leonard M. Blumenthal</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-85" vertex="1">
<mxGeometry x="15" y="190" width="180" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-51" value="Classical Geometry<br><b>I. E. L., J. E. L., A. C. F. L., G. W. T.</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-85" vertex="1">
<mxGeometry x="211.75" y="190" width="160.5" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-52" value="Euclidean Geometry<br><b>M. Solomonovich</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-85" vertex="1">
<mxGeometry x="390" y="190" width="141" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-89" value="Geometry<br><b>D. A. Brannan,&nbsp;M. F. Esplen, J. J. Gray</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-85" vertex="1">
<mxGeometry x="213.5" y="260" width="145" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-90" value="Introduction To Non-Euclidean Geometry<br><b>Harold E. Wolfe</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-85" vertex="1">
<mxGeometry x="15" y="260" width="180" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-92" value="Modern Geometry with Applications<br><b>George A. Jennings</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-85" vertex="1">
<mxGeometry x="380" y="260" width="150" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-93" value="Projective Geometry<br><b>H. S. M. Coxeter</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-85" vertex="1">
<mxGeometry x="217" y="332" width="133" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-94" value="Transformation Geometry<br><b>George E. Martin</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-85" vertex="1">
<mxGeometry x="379" y="332" width="151" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-96" value="The Foundations of Geoemtry and the Non-Euclidean Plane<br><b>George E. Martin</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-85" vertex="1">
<mxGeometry x="15" y="332" width="180" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-171" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.75;exitDx=0;exitDy=0;entryX=0.25;entryY=0;entryDx=0;entryDy=0;" parent="1" source="HZ-TQ83FuogPrPlQnaqr-100" target="HZ-TQ83FuogPrPlQnaqr-153" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-23" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;" parent="1" source="HZ-TQ83FuogPrPlQnaqr-100" target="XHwMdBdWKg2Phqc04OuS-15" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="-960" y="1500" />
<mxPoint x="-960" y="2205" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-174" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.25;exitY=0;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" source="HZ-TQ83FuogPrPlQnaqr-100" target="XHwMdBdWKg2Phqc04OuS-162" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="-670" y="1320" />
<mxPoint x="-2149" y="1320" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-100" value="Introduction to General Topology" style="swimlane;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="-800" y="1400" width="520" height="200" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-101" value="Topology<br><b>James Munkres</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-100" vertex="1">
<mxGeometry x="377" y="120" width="127" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-102" value="General Topology<br><b>Stephen Willard</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-100" vertex="1">
<mxGeometry x="13" y="40" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-103" value="Topology Without Tears<br><b>Sidney A. Morris</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-100" vertex="1">
<mxGeometry x="13" y="120" width="146" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-104" value="Topological Spaces<br><b>Gerard Buskes, Arnoud van Rooij</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-100" vertex="1">
<mxGeometry x="350" y="40" width="154" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-105" value="Introduction to Metric and Topological Spaces<br><b>Wilson A. Sutherland</b><br>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-100" vertex="1">
<mxGeometry x="180" y="120" width="182" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-107" value="First Concepts of Topology<br><b>W. G. Chinn &amp; N. E. Steenrod</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-100" vertex="1">
<mxGeometry x="150" y="40" width="186" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-132" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" source="HZ-TQ83FuogPrPlQnaqr-110" target="HZ-TQ83FuogPrPlQnaqr-127" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-14" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;" parent="1" source="HZ-TQ83FuogPrPlQnaqr-110" target="XHwMdBdWKg2Phqc04OuS-8" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-72" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.75;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;" parent="1" source="HZ-TQ83FuogPrPlQnaqr-110" target="XHwMdBdWKg2Phqc04OuS-64" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="-1081" y="1630" />
<mxPoint x="1060" y="1630" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-176" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.25;exitDx=0;exitDy=0;entryX=1;entryY=0.25;entryDx=0;entryDy=0;" parent="1" source="HZ-TQ83FuogPrPlQnaqr-110" target="XHwMdBdWKg2Phqc04OuS-162" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-187" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.25;exitY=0;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" source="HZ-TQ83FuogPrPlQnaqr-110" target="XHwMdBdWKg2Phqc04OuS-178" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="-1242" y="1360" />
<mxPoint x="-2605" y="1360" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-110" value="Introduction to Abstract Algebra" style="swimlane;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="-1322.25" y="1400" width="321.5" height="200" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-111" value="Contemporary Abstract Algebra<br><b>Joseph A. Gallian</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-110" vertex="1">
<mxGeometry x="11.5" y="40" width="140" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-112" value="Algebra Abstract and Concrete<br><b>Frederick Goodman</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-110" vertex="1">
<mxGeometry x="11.5" y="120" width="140" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-113" value="A First Course in Abstract Algebra<br><b>Joseph J. Rotman</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-110" vertex="1">
<mxGeometry x="173.5" y="120" width="136.5" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-114" value="Algebra<br><b>Michael Artin</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-110" vertex="1">
<mxGeometry x="169" y="40" width="141" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-119" value="Introduction to Numercial Analysis" style="swimlane;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="-160" y="1400" width="310" height="200" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-120" value="Numerical Analysis Richard Burden, Jr. <b>Douglas Faires</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-119" vertex="1">
<mxGeometry x="160" y="40" width="140" height="63" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-121" value="Numerical Analysis<br><b>Timothy Sauer</b><br>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-119" vertex="1">
<mxGeometry x="15" y="40" width="125" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-122" value="Numerical Methods That Usually Work <b>Forman S. Acton</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-119" vertex="1">
<mxGeometry x="15" y="110" width="125" height="75" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-123" value="An Introduction to Numerical Methods and Analysis<br><b>James F. Epperson</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-119" vertex="1">
<mxGeometry x="150" y="115" width="150" height="70" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-22" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.75;exitDx=0;exitDy=0;entryX=1;entryY=0.25;entryDx=0;entryDy=0;" parent="1" source="HZ-TQ83FuogPrPlQnaqr-127" target="XHwMdBdWKg2Phqc04OuS-15" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-34" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" source="HZ-TQ83FuogPrPlQnaqr-127" target="XHwMdBdWKg2Phqc04OuS-24" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-148" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.75;exitY=1;exitDx=0;exitDy=0;entryX=0;entryY=0.25;entryDx=0;entryDy=0;" parent="1" source="HZ-TQ83FuogPrPlQnaqr-127" target="HZ-TQ83FuogPrPlQnaqr-153" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-127" value="Advanced Linear Algebra" style="swimlane;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="-1334.75" y="1720" width="346.5" height="280" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-128" value="<span>Linear Algebra Done Right<br><b>Sheldon Axler</b></span>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-127" vertex="1">
<mxGeometry x="18" y="40" width="172" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-129" value="<span>Linear Algebra<br><b>Serge Lang</b></span>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-127" vertex="1">
<mxGeometry x="210" y="40" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-130" value="Finite-Dimensional Vector Spaces<br><b>Paul R. Halmos</b><br>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-127" vertex="1">
<mxGeometry x="18" y="120" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-133" value="Linear Algebra Done Wrong<br><b>Sergei Treil</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-127" vertex="1">
<mxGeometry x="194.75" y="120" width="135.25" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-137" value="Linear Algebra<br><b>Georgi E. Shilov &amp; Richard A. Silverman</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-127" vertex="1">
<mxGeometry x="72.25" y="200" width="202" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-161" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.25;exitY=1;exitDx=0;exitDy=0;" parent="1" source="HZ-TQ83FuogPrPlQnaqr-138" target="HZ-TQ83FuogPrPlQnaqr-153" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-138" value="Introduction to Complex Analysis" style="swimlane;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="-746.5" y="1720" width="428" height="200" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-139" value="<span>Complex Analysis<br><b>John M. Howie</b></span>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-138" vertex="1">
<mxGeometry x="16.5" y="40" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-140" value="<span>Complex Analysis with Applications<br><b>Dennis G. Zill</b></span>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-138" vertex="1">
<mxGeometry x="258" y="120" width="152" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-141" value="<span>Complex Variables and Applications<br><b>James Ward Brown, Ruel Churchill</b></span>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-138" vertex="1">
<mxGeometry x="18" y="120" width="220" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-142" value="<span>Complex Variables<br><b>Mark J. Ablowitz</b></span>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-138" vertex="1">
<mxGeometry x="156" y="40" width="112" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-143" value="<span>Visual Complex Analysis<br><b>Tristan Needham</b></span>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-138" vertex="1">
<mxGeometry x="287.5" y="40" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-160" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" source="HZ-TQ83FuogPrPlQnaqr-147" target="XHwMdBdWKg2Phqc04OuS-1" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-147" value="Introduction to Functional Analysis" style="swimlane;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="-926.5" y="2440" width="325" height="120" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-148" value="Introductory Functional Analysis with Applications<br><b>Erwin Kreyszig</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-147" vertex="1">
<mxGeometry x="13.5" y="40" width="145" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-150" value="<div>Principles of Functional Analysis</div><div><b>Martin Schechter</b></div>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-147" vertex="1">
<mxGeometry x="169" y="40" width="141" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-159" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" source="HZ-TQ83FuogPrPlQnaqr-153" target="HZ-TQ83FuogPrPlQnaqr-147" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="TdLw2zF5TJnS2Xj7bHxv-1" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" parent="1" source="HZ-TQ83FuogPrPlQnaqr-153" target="XHwMdBdWKg2Phqc04OuS-133" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="TdLw2zF5TJnS2Xj7bHxv-2" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.75;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" parent="1" source="HZ-TQ83FuogPrPlQnaqr-153" target="XHwMdBdWKg2Phqc04OuS-188" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-153" value="Introduction to Mathematical Analysis" style="swimlane;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="-932.5" y="2040" width="337" height="280" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-154" value="Principles of Mathematical Analysis<br><b>Walter Rudin</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-153" vertex="1">
<mxGeometry x="19" y="40" width="162" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-155" value="Mathematical Analysis<br><b>Tom Apostol</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-153" vertex="1">
<mxGeometry x="18.5" y="120" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-156" value="Methods of Real Analysis<br><b>Richard R. Goldberg</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-153" vertex="1">
<mxGeometry x="154" y="120" width="164" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-157" value="The Elements of Real Analysis<br><b>Robert G. Bartle</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-153" vertex="1">
<mxGeometry x="191.5" y="40" width="133" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-158" value="Advanced Calculus of Several Variables<br><b>C. H. Edwards Jr.</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-153" vertex="1">
<mxGeometry x="18" y="200" width="140" height="60" as="geometry" />
</mxCell>
<mxCell id="HZ-TQ83FuogPrPlQnaqr-159" value="Calculus and Analysis in Euclidean Space<br><b>Jerry Shurman</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="HZ-TQ83FuogPrPlQnaqr-153" vertex="1">
<mxGeometry x="168" y="200" width="152" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-1" value="Advanced Mathematical Analysis" style="swimlane;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="-919.75" y="2680" width="311.5" height="200" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-2" value="Real Analysis<br><b>H.L. Royden, P.M. Fitzpatrick</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-1" vertex="1">
<mxGeometry x="170" y="120" width="129.75" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-3" value="Real Analysis<br><b>Gerald B. Folland</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-1" vertex="1">
<mxGeometry x="20.5" y="120" width="129.5" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-4" value="Real Analysis<br><b>Elias M. Stein, Rami Shakarch</b>i" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-1" vertex="1">
<mxGeometry x="20.5" y="40" width="135" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-5" value="Real and Complex Analysis<br><b>Walter Rudin</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-1" vertex="1">
<mxGeometry x="169.75" y="40" width="130" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-20" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" source="XHwMdBdWKg2Phqc04OuS-8" target="XHwMdBdWKg2Phqc04OuS-15" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-36" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.75;exitDx=0;exitDy=0;entryX=0;entryY=0.25;entryDx=0;entryDy=0;" parent="1" source="XHwMdBdWKg2Phqc04OuS-8" target="XHwMdBdWKg2Phqc04OuS-24" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="-1380" y="1910" />
<mxPoint x="-1380" y="2380" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-62" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.75;exitY=0;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;" parent="1" source="XHwMdBdWKg2Phqc04OuS-8" target="XHwMdBdWKg2Phqc04OuS-54" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="-1579" y="1660" />
<mxPoint x="610" y="1660" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-8" value="Motivation for Category Theory" style="swimlane;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="-1870" y="1760" width="388" height="200" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-9" value="<span>Conceptual Mathematics<br><b>F. William Lawvere, Stephen H. Schanuel</b></span>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-8" vertex="1">
<mxGeometry x="110" y="40" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-10" value="<span>Sets for Mathematics<br><b>F.W. Lawvere, R. Rosebrugh</b></span>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-8" vertex="1">
<mxGeometry x="12" y="120" width="130" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-11" value="<span>Arrows Structures and Functors: The Categorical Imperative<br><b>Michael A. Arbib</b></span>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-8" vertex="1">
<mxGeometry x="160" y="120" width="215" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-15" value="Introduction to Category Theory" style="swimlane;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="-1846" y="2080" width="340" height="250" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-16" value="<span>Category Theory<br><b>Steve Awodey</b></span>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-15" vertex="1">
<mxGeometry x="22" y="40" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-17" value="<span>Basic Category Theory<br><b>Tom Leinster</b></span>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-15" vertex="1">
<mxGeometry x="22" y="110" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-18" value="<span>Abstract and Concrete Categories The Joy of Cats<br><b>Jiri Adamek</b></span>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-15" vertex="1">
<mxGeometry x="160" y="110" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-19" value="<span>Category Theory: A Gentle Introduction<br><b>Peter Smith</b></span>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-15" vertex="1">
<mxGeometry x="90" y="180" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-21" value="Category Theory in Context<br><b>Emily Riehl</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-15" vertex="1">
<mxGeometry x="160" y="40" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-76" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" source="XHwMdBdWKg2Phqc04OuS-24" target="XHwMdBdWKg2Phqc04OuS-73" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-24" value="Advanced Abstract Algebra" style="swimlane;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="-1328" y="2270" width="333" height="440" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-25" value="<span>Algebra<br><b>Thomas Hungerford</b></span>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-24" vertex="1">
<mxGeometry x="23" y="40" width="134" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-26" value="<span>Abstract Algebra<br><b>David S. Dummit, Richard M. Foote</b></span>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-24" vertex="1">
<mxGeometry x="170" y="40" width="138" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-27" value="<span>Advanced Modern Algebra<br><b>Joseph J. Rotman</b></span>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-24" vertex="1">
<mxGeometry x="21" y="120" width="138" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-28" value="<span>Algebra<br><b>Serge Lang</b></span>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-24" vertex="1">
<mxGeometry x="21" y="280" width="134" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-29" value="<span>Algebra: A Graduate Course<br><b>I. Martin Isaacs</b></span>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-24" vertex="1">
<mxGeometry x="168" y="120" width="140" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-30" value="<span>Algebra: Chapter 0<br><b>Paolo Aluffi</b></span>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-24" vertex="1">
<mxGeometry x="171.5" y="280" width="135" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-31" value="Algebra<br><b>Paul M. Cohn</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-24" vertex="1">
<mxGeometry x="21" y="200" width="139" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-32" value="A Course in Algebra <b>E.B. Vinberg</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-24" vertex="1">
<mxGeometry x="173" y="200" width="135" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-33" value="Introduction to Commutative Algebra<br><b>M. F. Atiyah &amp; I. G. MacDonald</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-24" vertex="1">
<mxGeometry x="72" y="360" width="190" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-54" value="Universal Algebra" style="swimlane;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="440" y="1000" width="340" height="250" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-55" value="An Invitation to General Algebra and Universal Constructions <br><b>George M. Bergman</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-54" vertex="1">
<mxGeometry x="145" y="40" width="180" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-56" value="A Course in Universal Algebra<br><b>Stanley Burris, H.P. Sankappanavar</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-54" vertex="1">
<mxGeometry x="145" y="110" width="180" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-57" value="Universal Algebra<br><b>G. Gratzer</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-54" vertex="1">
<mxGeometry x="15" y="110" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-58" value="Universal Algebra<br><b>P.M. Cohn</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-54" vertex="1">
<mxGeometry x="15" y="40" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-59" value="Universal Algebra<br><b>Clifford Bergman</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-54" vertex="1">
<mxGeometry x="15" y="180" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-60" value="Post-Modern Algebra<br><b>Jonathan D. H. Smith, Anna B. Romanowska</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-54" vertex="1">
<mxGeometry x="145" y="180" width="180" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-64" value="Introduction to Lattice Theory" style="swimlane;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="890" y="1020" width="340" height="120" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-65" value="Introduction to Lattices and Order<br><b>B.A. Davey</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-64" vertex="1">
<mxGeometry x="145" y="40" width="180" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-68" value="Lattices and Ordered Sets<br><b>Steven Roman</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-64" vertex="1">
<mxGeometry x="15" y="40" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-73" value="Algebraic Number Theory" style="swimlane;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="-1311.5" y="2840" width="300" height="200" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-74" value="<div>An Introduction to the Theory of Numbers</div><div><b>Ivan Niven, Herbert S. Zuckerman, Hugh L. Montgomery</b></div>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-73" vertex="1">
<mxGeometry x="17" y="120" width="260" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-75" value="<div>Number Fields</div><div><b>Daniel A. Marcus</b></div>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-73" vertex="1">
<mxGeometry x="90" y="40" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-93" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" source="XHwMdBdWKg2Phqc04OuS-78" target="XHwMdBdWKg2Phqc04OuS-84" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-131" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" parent="1" source="XHwMdBdWKg2Phqc04OuS-78" target="XHwMdBdWKg2Phqc04OuS-125" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-78" value="Introduction to Probability Theory" style="swimlane;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="160" y="1720" width="440" height="200" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-79" value="A First Course in Probability Theory<br><b>Sheldon Ross</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-78" vertex="1">
<mxGeometry x="225" y="40" width="188" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-80" value="A Natural Introduction to Probability<br><b>R. Meester</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-78" vertex="1">
<mxGeometry x="22" y="120" width="188" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-81" value="Inroduction to Probability<br><b>Dimitri Berstekas, John N. Tsitsiklis</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-78" vertex="1">
<mxGeometry x="22" y="40" width="188" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-82" value="Introduction to Probability<br><b>Joseph K. Blitzstein, Jessica Hwang</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-78" vertex="1">
<mxGeometry x="225" y="120" width="188" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-102" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" source="XHwMdBdWKg2Phqc04OuS-84" target="XHwMdBdWKg2Phqc04OuS-94" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-84" value="Introduction to Mathematical Statistics" style="swimlane;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="110" y="2040" width="540" height="280" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-85" value="An Introduction to Mathematical Statistics and Its Applications<br><b>Richard Larsen, Morris Marx</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-84" vertex="1">
<mxGeometry x="280" y="38" width="238" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-88" value="Modern Mathematical Statistics with Applications<br><b>Jay L. Devore, Kenneth N. Berk</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-84" vertex="1">
<mxGeometry x="280" y="200" width="238" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-89" value="A Modern Introduction to Probability and Statistics: Understanding Why and How<br><b>F.M. Dekking, C. Kraaikamp, H.P. Lopuhaä, L.E. Meester</b><br>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-84" vertex="1">
<mxGeometry x="26" y="195" width="234" height="70" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-90" value="Introduction to Probability and Mathematical Statistics<br><b>Lee J. Bain, Max Engelhardt</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-84" vertex="1">
<mxGeometry x="26" y="38" width="218" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-86" value="<div>Introduction to Mathematical Statistics</div><div><b>Robert V. Hogg, Joseph W. McKean, Allen T. Craig</b></div>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-84" vertex="1">
<mxGeometry x="280" y="120" width="238" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-87" value="<div>Mathematical Statistics with Applications</div><div><b>Dennis D. Wackerly, William Mendenhall, Richard L. Scheaffer</b></div>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-84" vertex="1">
<mxGeometry x="26" y="120" width="238" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-108" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" source="XHwMdBdWKg2Phqc04OuS-94" target="XHwMdBdWKg2Phqc04OuS-103" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-122" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" parent="1" source="XHwMdBdWKg2Phqc04OuS-94" target="XHwMdBdWKg2Phqc04OuS-116" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-94" value="Advanced Probability Theory" style="swimlane;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="150" y="2440" width="460" height="280" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-95" value="An Introduction to Probability and Statistics<br><b>V. K. Rohatgi, A. K. Md. E. Saleh</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-94" vertex="1">
<mxGeometry x="20.5" y="40" width="205.5" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-96" value="A First Look at Rigorous Probability Theory<br><b>Jeffrey S. Rosenthal</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-94" vertex="1">
<mxGeometry x="250" y="40" width="190" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-97" value="A User's Guide to Measure Theoretic Probability<br><b>David Pollard</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-94" vertex="1">
<mxGeometry x="20.5" y="120" width="190" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-98" value="Probability <br><b>A. N. Shiryayev</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-94" vertex="1">
<mxGeometry x="239.75" y="200" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-99" value="Probability and Measure<br><b>Patrick Billingsley</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-94" vertex="1">
<mxGeometry x="100.25" y="200" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-100" value="An Introduction to Probability Theory and Its Applications<br><b>William Feller</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-94" vertex="1">
<mxGeometry x="271" y="120" width="170" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-103" value="Advanced Mathematical Statistics" style="swimlane;startSize=23;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="187.5" y="2840" width="385" height="270" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-104" value="Statistical Inference<br><b>George Casella, Roger L. Berger</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-103" vertex="1">
<mxGeometry x="24.5" y="40" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-105" value="Mathematical Statistics: Basic Ideas and Selected Topics<br><b>Kjell A. Doksum, Peter J. Bickel</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-103" vertex="1">
<mxGeometry x="160.5" y="40" width="199.5" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-106" value="Robust Statistics <b>Frank&nbsp; R. H., Elvezio M. R., Peter J. R., Werner A. S.</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-103" vertex="1">
<mxGeometry x="170" y="120" width="193" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-107" value="Theory of Statistics<br><b>Mark J. Schervish</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-103" vertex="1">
<mxGeometry x="24.5" y="120" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-91" value="All of Statistics<br><b>Larry Wasserman</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-103" vertex="1">
<mxGeometry x="24.5" y="190" width="130" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-92" value="All of Nonparametric Statistics<br><b>Larry Wasserman</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-103" vertex="1">
<mxGeometry x="175" y="190" width="188" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-115" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;" parent="1" source="XHwMdBdWKg2Phqc04OuS-109" target="XHwMdBdWKg2Phqc04OuS-84" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-109" value="Introduction to Statistics" style="swimlane;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="1" vertex="1">
<mxGeometry x="800" y="2049.9964705882353" width="305" height="260" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-110" value="<div>OpenIntro Statistics</div><div><b>David M. Diez, Christopher D. Barr, Mine Çetinkaya-Rundel</b></div>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="XHwMdBdWKg2Phqc04OuS-109" vertex="1">
<mxGeometry x="52.5" y="180" width="200" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-111" value="<div>Introductory Statistics</div><div><b>Sheldon M. Ross</b></div>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="XHwMdBdWKg2Phqc04OuS-109" vertex="1">
<mxGeometry x="15" y="110" width="135" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-112" value="<div>Introductory Statistics</div><div><b>Neil A. Weiss</b></div>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="XHwMdBdWKg2Phqc04OuS-109" vertex="1">
<mxGeometry x="160" y="110" width="130" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-113" value="<div>Elementary Statistics</div><div><b>Allan G. Bluman</b></div>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="XHwMdBdWKg2Phqc04OuS-109" vertex="1">
<mxGeometry x="15" y="40" width="135" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-114" value="<div>Introductory Statistics</div><div><b>Prem S. Mann</b></div>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="XHwMdBdWKg2Phqc04OuS-109" vertex="1">
<mxGeometry x="160" y="40" width="130" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-116" value="Philosophy of Probability and Statistics" style="swimlane;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="1" vertex="1">
<mxGeometry x="760" y="2428.75" width="330" height="302.5" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-117" value="<div>Interpreting Probability: Controversies and Developments in the early twentieth century</div><div><b>David Howie</b></div>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="XHwMdBdWKg2Phqc04OuS-116" vertex="1">
<mxGeometry x="36.5" y="175" width="250" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-118" value="<div>An Introduction to Probability and Inductive Logic</div><div><b>Ian Hacking</b></div>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="XHwMdBdWKg2Phqc04OuS-116" vertex="1">
<mxGeometry x="20" y="35" width="150" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-119" value="<div>The Foundations of Statistics</div><div><b>Leonard J. Savage</b></div>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="XHwMdBdWKg2Phqc04OuS-116" vertex="1">
<mxGeometry x="180" y="35" width="130" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-120" value="<div>Probability Theory: The Logic of Science</div><div><b>E. T. Jaynes</b></div>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="XHwMdBdWKg2Phqc04OuS-116" vertex="1">
<mxGeometry x="20" y="105" width="150" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-121" value="<div>Reasoning About Uncertainty</div><div><b>Joseph Y. Halpern</b></div>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="XHwMdBdWKg2Phqc04OuS-116" vertex="1">
<mxGeometry x="180" y="105" width="130" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-123" value="Bayesian Theory<br><b>Jose M. Bernardo</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="XHwMdBdWKg2Phqc04OuS-116" vertex="1">
<mxGeometry x="20" y="245" width="130" height="45" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-124" value="Theory of Probability<br><b>Bruno de Finetti</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="XHwMdBdWKg2Phqc04OuS-116" vertex="1">
<mxGeometry x="160" y="245" width="150" height="45" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-125" value="Introduction to Game Theory" style="swimlane;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="800" y="1685" width="289" height="270" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-126" value="<div>Strategy</div><div><b>Joel Watson</b></div>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-125" vertex="1">
<mxGeometry x="156" y="34.94117647058829" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-127" value="<div>Game Theory</div><div><b>Steven Tadelis</b></div>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-125" vertex="1">
<mxGeometry x="16" y="34.94117647058829" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-128" value="<div>Game Theory: A Critical Introduction</div><div><b>Shaun P. Hargreaves Heap, Yanis Varoufakis</b></div>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-125" vertex="1">
<mxGeometry x="21" y="114.94117647058829" width="250" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-129" value="<div>Game Theory Evolving: A Problem-Centered Introduction to Modeling Strategic Interaction</div><div><b>Herbert Gintis</b></div>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-125" vertex="1">
<mxGeometry x="16" y="194.9411764705883" width="260" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-132" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" source="XHwMdBdWKg2Phqc04OuS-133" target="XHwMdBdWKg2Phqc04OuS-139" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-133" value="Introduction to Optimization Theory" style="swimlane;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="-460" y="2041" width="430" height="277" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-134" value="A First Course in Optimization Theory<br><b>Rangarajan K. Sundaram</b><br>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-133" vertex="1">
<mxGeometry x="19" y="40" width="181" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-135" value="Introduction to Linear Optimization<br><b>Dimitris Bertsimas. John N. Tsitsiklis</b><br>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-133" vertex="1">
<mxGeometry x="210" y="40" width="201.5" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-136" value="Applied Optimization<br><b>Ross Baldick</b><br>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-133" vertex="1">
<mxGeometry x="18" y="118.5" width="164" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-137" value="An Introduction to Optimization<br><b>Edwin K.P. Chong, Stanislaw H. Zak</b><br>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-133" vertex="1">
<mxGeometry x="100" y="198.5" width="221" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-138" value="Practical Optimization<br><b>Philip E. Gill, Walter Murray, Margaret H. Wright</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-133" vertex="1">
<mxGeometry x="231.5" y="118.5" width="180" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-139" value="Convex Optimization" style="swimlane;fillColor=#dae8fc;strokeColor=#6c8ebf;startSize=23;" parent="1" vertex="1">
<mxGeometry x="-443" y="2400.5" width="396" height="196" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-140" value="Convex Optimization Theory<br><b>Dimitri P. Bertsekas</b><br>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-139" vertex="1">
<mxGeometry x="19" y="40" width="162" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-141" value="Convex Optimization<br><b>Stephen Boyd, Lieven Vandenberghe</b><br>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-139" vertex="1">
<mxGeometry x="200" y="40" width="171" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-142" value="Convex Analysis and Nonlinear Optimization<br><b>Jonathan M. Borwein, Adrian S. Lewis</b><br>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-139" vertex="1">
<mxGeometry x="18" y="118.5" width="164" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-143" value="Foundations of Optimization<br><b>Osman Güler</b><br>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-139" vertex="1">
<mxGeometry x="204" y="118.5" width="164" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-161" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;" parent="1" source="XHwMdBdWKg2Phqc04OuS-162" target="XHwMdBdWKg2Phqc04OuS-168" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-162" value="Algebraic Topology Motivation" style="swimlane;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="-2300" y="1400" width="302" height="267" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-163" value="Invitation to Combinatorial Topology<br><b>Maurice Frechet and Ky Fan</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-162" vertex="1">
<mxGeometry x="26" y="40" width="254" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-164" value="Basic Concepts of Algebraic Topology<br><b>Fred H. Croom</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-162" vertex="1">
<mxGeometry x="26" y="114.5" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="XHwMdBdWKg2Phqc04OuS-165" value="Basic Topology<br><b>M.A. Armstrong</b>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="XHwMdBdWKg2Phqc04OuS-162" vertex="1">
<mxGeometry x="158" y="114.5" width="120" height="60" as="geometry" />