-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathCalculusIII.aux
More file actions
2537 lines (2537 loc) · 210 KB
/
CalculusIII.aux
File metadata and controls
2537 lines (2537 loc) · 210 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
\relax
\providecommand\hyper@newdestlabel[2]{}
\providecommand\pbs@newkey[2]{}
\providecommand\pbs@seq@push@cx[2]{}
\providecommand\pbs@at@end@dvi@check{}
\pbs@at@end@dvi@check
\providecommand\mix@newkey[2]{}
\providecommand\HyperFirstAtBeginDocument{\AtBeginDocument}
\HyperFirstAtBeginDocument{\ifx\hyper@anchor\@undefined
\global\let\oldcontentsline\contentsline
\gdef\contentsline#1#2#3#4{\oldcontentsline{#1}{#2}{#3}}
\global\let\oldnewlabel\newlabel
\gdef\newlabel#1#2{\newlabelxx{#1}#2}
\gdef\newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}}
\AtEndDocument{\ifx\hyper@anchor\@undefined
\let\contentsline\oldcontentsline
\let\newlabel\oldnewlabel
\fi}
\fi}
\global\let\hyper@last\relax
\gdef\HyperFirstAtBeginDocument#1{#1}
\providecommand*\HyPL@Entry[1]{}
\pbs@newkey{pbs@last@page}{1}
\HyPL@Entry{0<</S/r>>}
\pbs@newkey{pbs@last@page}{2}
\pbs@newkey{pbs@last@page}{3}
\@writefile{toc}{\thispagestyle {empty}}
\@writefile{toc}{\contentsline {chapter}{Table of Contents}{iii}{Doc-Start}}
\pbs@newkey{pbs@last@page}{4}
\pbs@newkey{pbs@last@page}{5}
\@writefile{toc}{\contentsline {chapter}{Preface}{v}{section*.2}}
\pbs@newkey{pbs@last@page}{6}
\pbs@newkey{pbs@last@page}{7}
\pbs@newkey{pbs@last@page}{8}
\pbs@newkey{pbs@last@page}{9}
\HyPL@Entry{8<</S/D /St 497>>}
\@writefile{toc}{\contentsline {chapter}{\numberline {9}Curves in the Plane}{497}{chapter.9}}
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\newlabel{chapter:planar_curves}{{9}{497}{Curves in the Plane}{chapter.9}{}}
\@writefile{toc}{\contentsline {section}{\numberline {9.1}Conic Sections}{497}{section.9.1}}
\newlabel{sec:conic_sections}{{9.1}{497}{Conic Sections}{section.9.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {9.1.1}{\ignorespaces Conic Sections\relax }}{497}{figure.caption.3}}
\providecommand*\caption@xref[2]{\@setref\relax\@undefined{#1}}
\newlabel{fig:nondeg_conic}{{9.1.1}{497}{Conic Sections\relax }{figure.caption.3}{}}
\pbs@newkey{pbs@last@page}{10}
\@writefile{lof}{\contentsline {figure}{\numberline {9.1.2}{\ignorespaces Illustrating the definition of the parabola and establishing an algebraic formula.\relax }}{498}{figure.caption.4}}
\newlabel{fig:parabola_def}{{9.1.2}{498}{Illustrating the definition of the parabola and establishing an algebraic formula.\relax }{figure.caption.4}{}}
\newlabel{def:parabola}{{9.1.1}{498}{Conic Sections}{definitioncounter.9.1.1}{}}
\pbs@newkey{pbs@last@page}{11}
\newlabel{idea:parabola}{{9.1.1}{499}{Conic Sections}{keyideacounter.9.1.1}{}}
\pgfsyspdfmark {pgfid3}{4474142}{16028803}
\newlabel{ex_conic1}{{9.1.1}{499}{Conic Sections}{examplecounter.9.1.1}{}}
\pgfsyspdfmark {pgfid4}{9979166}{15864963}
\pbs@newkey{pbs@last@page}{12}
\@writefile{lof}{\contentsline {figure}{\numberline {9.1.3}{\ignorespaces The parabola described in Example \ref {ex_conic1}.\relax }}{500}{figure.caption.5}}
\newlabel{fig:conic1}{{9.1.3}{500}{The parabola described in Example \ref {ex_conic1}.\relax }{figure.caption.5}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {9.1.4}{\ignorespaces The parabola described in Example \ref {ex_conic2}. The distances from a point on the parabola to the focus and directrix is given.\relax }}{500}{figure.caption.6}}
\newlabel{fig:conic2}{{9.1.4}{500}{The parabola described in Example \ref {ex_conic2}. The distances from a point on the parabola to the focus and directrix is given.\relax }{figure.caption.6}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {9.1.5}{\ignorespaces Illustrating the parabola's reflective property.\relax }}{500}{figure.caption.7}}
\newlabel{fig:conic_reflect}{{9.1.5}{500}{Illustrating the parabola's reflective property.\relax }{figure.caption.7}{}}
\newlabel{eex_conic1}{{9.1.1}{500}{Conic Sections}{examplecounter.9.1.1}{}}
\pgfsyspdfmark {pgfid5}{25520017}{43383906}
\pgfsyspdfmark {pgfid6}{14288487}{41974882}
\newlabel{ex_conic2}{{9.1.2}{500}{Conic Sections}{examplecounter.9.1.2}{}}
\newlabel{eex_conic2}{{9.1.1}{500}{Conic Sections}{examplecounter.9.1.2}{}}
\pgfsyspdfmark {pgfid7}{35102417}{20682651}
\pbs@newkey{pbs@last@page}{13}
\@writefile{lof}{\contentsline {figure}{\numberline {9.1.6}{\ignorespaces Illustrating the construction of an ellipse with pins, pencil and string.\relax }}{501}{figure.caption.8}}
\newlabel{fig:ellipse_def}{{9.1.6}{501}{Illustrating the construction of an ellipse with pins, pencil and string.\relax }{figure.caption.8}{}}
\newlabel{thm:parabola_reflect}{{9.1.1}{501}{Conic Sections}{theoremcounter.9.1.1}{}}
\newlabel{def:ellipse}{{9.1.2}{501}{Conic Sections}{definitioncounter.9.1.2}{}}
\pbs@newkey{pbs@last@page}{14}
\@writefile{lof}{\contentsline {figure}{\numberline {9.1.7}{\ignorespaces Labeling the significant features of an ellipse.\relax }}{502}{figure.caption.9}}
\newlabel{fig:ellipse_label}{{9.1.7}{502}{Labeling the significant features of an ellipse.\relax }{figure.caption.9}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {9.1.8}{\ignorespaces The ellipse used in Example \ref {ex_conic3}.\relax }}{502}{figure.caption.10}}
\newlabel{fig:conic3}{{9.1.8}{502}{The ellipse used in Example \ref {ex_conic3}.\relax }{figure.caption.10}{}}
\newlabel{idea:ellipse}{{9.1.2}{502}{Conic Sections}{keyideacounter.9.1.2}{}}
\pgfsyspdfmark {pgfid11}{14288487}{23904363}
\newlabel{ex_conic3}{{9.1.3}{502}{Conic Sections}{examplecounter.9.1.3}{}}
\newlabel{eex_conic3}{{9.1.2}{502}{Conic Sections}{examplecounter.9.1.3}{}}
\pgfsyspdfmark {pgfid12}{14698791}{16568156}
\pgfsyspdfmark {pgfid13}{14288487}{15159132}
\newlabel{ex_conic4}{{9.1.4}{502}{Conic Sections}{examplecounter.9.1.4}{}}
\pgfsyspdfmark {pgfid14}{19793511}{14995292}
\pbs@newkey{pbs@last@page}{15}
\@writefile{lof}{\contentsline {figure}{\numberline {9.1.9}{\ignorespaces Graphing the ellipse in Example \ref {ex_conic4}.\relax }}{503}{figure.caption.11}}
\newlabel{fig:conic4}{{9.1.9}{503}{Graphing the ellipse in Example \ref {ex_conic4}.\relax }{figure.caption.11}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {9.1.10}{\ignorespaces Understanding the eccentricity of an ellipse.\relax }}{503}{figure.caption.12}}
\newlabel{fig:ellipse_ecc}{{9.1.10}{503}{Understanding the eccentricity of an ellipse.\relax }{figure.caption.12}{}}
\newlabel{eex_conic4}{{9.1.2}{503}{Conic Sections}{figure.caption.10}{}}
\pgfsyspdfmark {pgfid15}{6574792}{29832495}
\newlabel{def:eccentricity_ellipse}{{9.1.3}{503}{Conic Sections}{definitioncounter.9.1.3}{}}
\pbs@newkey{pbs@last@page}{16}
\@writefile{lof}{\contentsline {figure}{\numberline {9.1.11}{\ignorespaces Illustrating the reflective property of an ellipse.\relax }}{504}{figure.caption.13}}
\newlabel{fig:ellipse_reflect}{{9.1.11}{504}{Illustrating the reflective property of an ellipse.\relax }{figure.caption.13}{}}
\newlabel{thm:ellipse_reflect}{{9.1.2}{504}{Conic Sections}{theoremcounter.9.1.2}{}}
\newlabel{def:hyperbola}{{9.1.4}{504}{Conic Sections}{definitioncounter.9.1.4}{}}
\pbs@newkey{pbs@last@page}{17}
\@writefile{lof}{\contentsline {figure}{\numberline {9.1.12}{\ignorespaces Labeling the significant features of a hyperbola.\relax }}{505}{figure.caption.14}}
\newlabel{fig:hyperbola_def}{{9.1.12}{505}{Labeling the significant features of a hyperbola.\relax }{figure.caption.14}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {9.1.13}{\ignorespaces Graphing the hyperbola $\frac {x^2}9-\frac {y^2}1 = 1$ along with its asymptotes, $y=\pm x/3$.\relax }}{505}{figure.caption.15}}
\newlabel{fig:hyperbola_asy1}{{9.1.13}{505}{Graphing the hyperbola $\frac {x^2}9-\frac {y^2}1 = 1$ along with its asymptotes, $y=\pm x/3$.\relax }{figure.caption.15}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {9.1.14}{\ignorespaces Using the asymptotes of a hyperbola as a graphing aid.\relax }}{505}{figure.caption.16}}
\newlabel{fig:hyperbola_asy2}{{9.1.14}{505}{Using the asymptotes of a hyperbola as a graphing aid.\relax }{figure.caption.16}{}}
\newlabel{idea:hyperbola}{{9.1.3}{505}{Conic Sections}{keyideacounter.9.1.3}{}}
\pbs@newkey{pbs@last@page}{18}
\@writefile{lof}{\contentsline {figure}{\numberline {9.1.15}{\ignorespaces Graphing the hyperbola in Example \ref {ex_conic5}.\relax }}{506}{figure.caption.17}}
\newlabel{fig:conic5}{{9.1.15}{506}{Graphing the hyperbola in Example \ref {ex_conic5}.\relax }{figure.caption.17}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {9.1.16}{\ignorespaces Graphing the hyperbola in Example \ref {ex_conic6}.\relax }}{506}{figure.caption.18}}
\newlabel{fig:conic6}{{9.1.16}{506}{Graphing the hyperbola in Example \ref {ex_conic6}.\relax }{figure.caption.18}{}}
\pgfsyspdfmark {pgfid20}{14288487}{42990927}
\newlabel{ex_conic5}{{9.1.5}{506}{Conic Sections}{examplecounter.9.1.5}{}}
\newlabel{eex_conic5}{{9.1.3}{506}{Conic Sections}{examplecounter.9.1.5}{}}
\pgfsyspdfmark {pgfid21}{32581558}{35151594}
\pgfsyspdfmark {pgfid22}{14288487}{33742570}
\newlabel{ex_conic6}{{9.1.6}{506}{Conic Sections}{examplecounter.9.1.6}{}}
\newlabel{eex_conic6}{{9.1.3}{506}{Conic Sections}{examplecounter.9.1.6}{}}
\pgfsyspdfmark {pgfid23}{16459217}{16319901}
\pbs@newkey{pbs@last@page}{19}
\@writefile{lof}{\contentsline {figure}{\numberline {9.1.17}{\ignorespaces Understanding the eccentricity of a hyperbola.\relax }}{507}{figure.caption.19}}
\newlabel{fig:hyperbola_ecc}{{9.1.17}{507}{Understanding the eccentricity of a hyperbola.\relax }{figure.caption.19}{}}
\newlabel{def:hyperbola_eccentricity}{{9.1.5}{507}{Conic Sections}{definitioncounter.9.1.5}{}}
\newlabel{thm:reflective_hyperbola}{{9.1.3}{507}{Conic Sections}{theoremcounter.9.1.3}{}}
\pbs@newkey{pbs@last@page}{20}
\@writefile{lof}{\contentsline {figure}{\numberline {9.1.19}{\ignorespaces Illustrating the reflective property of a hyperbola.\relax }}{508}{figure.caption.21}}
\newlabel{fig:hyperbola_reflect}{{9.1.19}{508}{Illustrating the reflective property of a hyperbola.\relax }{figure.caption.21}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {9.1.18}{\ignorespaces Using hyperbolas in location detection.\relax }}{508}{figure.caption.20}}
\newlabel{fig:hyperbola_locate}{{9.1.18}{508}{Using hyperbolas in location detection.\relax }{figure.caption.20}{}}
\pbs@newkey{pbs@last@page}{21}
\pbs@newkey{pbs@last@page}{22}
\pbs@newkey{pbs@last@page}{23}
\@writefile{toc}{\contentsline {section}{\numberline {9.2}Parametric Equations}{511}{section.9.2}}
\newlabel{sec:param_eqs}{{9.2}{511}{Parametric Equations}{section.9.2}{}}
\newlabel{def:param_eq}{{9.2.1}{511}{Parametric Equations}{definitioncounter.9.2.1}{}}
\pgfsyspdfmark {pgfid30}{4474142}{15945564}
\newlabel{ex_pareq1}{{9.2.1}{511}{Parametric Equations}{examplecounter.9.2.1}{}}
\pgfsyspdfmark {pgfid31}{9979166}{15781724}
\pbs@newkey{pbs@last@page}{24}
\@writefile{lof}{\contentsline {figure}{\numberline {9.2.1}{\ignorespaces A table of values of the parametric equations in Example \ref {ex_pareq1} along with a sketch of their graph.\relax }}{512}{figure.caption.22}}
\newlabel{fig:pareq1}{{9.2.1}{512}{A table of values of the parametric equations in Example \ref {ex_pareq1} along with a sketch of their graph.\relax }{figure.caption.22}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {9.2.2}{\ignorespaces A table of values of the parametric equations in Example \ref {ex_pareq2} along with a sketch of their graph.\relax }}{512}{figure.caption.23}}
\newlabel{fig:pareq2}{{9.2.2}{512}{A table of values of the parametric equations in Example \ref {ex_pareq2} along with a sketch of their graph.\relax }{figure.caption.23}{}}
\newlabel{eex_pareq1}{{9.2.1}{512}{Parametric Equations}{examplecounter.9.2.1}{}}
\pgfsyspdfmark {pgfid32}{30454203}{40379632}
\pgfsyspdfmark {pgfid33}{14288487}{34179177}
\newlabel{ex_pareq2}{{9.2.2}{512}{Parametric Equations}{examplecounter.9.2.2}{}}
\newlabel{eex_pareq2}{{9.2.1}{512}{Parametric Equations}{examplecounter.9.2.2}{}}
\pgfsyspdfmark {pgfid34}{21033789}{21323167}
\pbs@newkey{pbs@last@page}{25}
\@writefile{lof}{\contentsline {figure}{\numberline {9.2.3}{\ignorespaces Illustrating how to shift graphs in Example \ref {ex_pareq3}.\relax }}{513}{figure.caption.24}}
\newlabel{fig:pareq3}{{9.2.3}{513}{Illustrating how to shift graphs in Example \ref {ex_pareq3}.\relax }{figure.caption.24}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {9.2.4}{\ignorespaces A graph of the parametric equations from Example \ref {ex_pareq4}.\relax }}{513}{figure.caption.25}}
\newlabel{fig:pareq4}{{9.2.4}{513}{A graph of the parametric equations from Example \ref {ex_pareq4}.\relax }{figure.caption.25}{}}
\pgfsyspdfmark {pgfid35}{4474142}{41366323}
\newlabel{ex_pareq3}{{9.2.3}{513}{Parametric Equations}{examplecounter.9.2.3}{}}
\newlabel{eex_pareq3}{{9.2.1}{513}{Parametric Equations}{examplecounter.9.2.3}{}}
\pgfsyspdfmark {pgfid36}{12649139}{30978867}
\pgfsyspdfmark {pgfid37}{4474142}{25637683}
\newlabel{ex_pareq4}{{9.2.4}{513}{Parametric Equations}{examplecounter.9.2.4}{}}
\pgfsyspdfmark {pgfid38}{9979166}{25473843}
\pbs@newkey{pbs@last@page}{26}
\newlabel{eex_pareq4}{{9.2.1}{514}{Parametric Equations}{examplecounter.9.2.4}{}}
\pgfsyspdfmark {pgfid39}{25912957}{44257299}
\pgfsyspdfmark {pgfid40}{14288487}{35770387}
\newlabel{ex_pareq5}{{9.2.5}{514}{Parametric Equations}{examplecounter.9.2.5}{}}
\newlabel{eex_pareq5}{{9.2.1}{514}{Parametric Equations}{examplecounter.9.2.5}{}}
\pgfsyspdfmark {pgfid41}{26488943}{26005340}
\pgfsyspdfmark {pgfid42}{14288487}{23023452}
\newlabel{ex_pareq6}{{9.2.6}{514}{Parametric Equations}{examplecounter.9.2.6}{}}
\pgfsyspdfmark {pgfid43}{19793511}{22859612}
\pbs@newkey{pbs@last@page}{27}
\@writefile{lof}{\contentsline {figure}{\numberline {9.2.5}{\ignorespaces Graphing projectile motion in Example \ref {ex_pareq6}.\relax }}{515}{figure.caption.26}}
\newlabel{fig:pareq6}{{9.2.5}{515}{Graphing projectile motion in Example \ref {ex_pareq6}.\relax }{figure.caption.26}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {9.2.6}{\ignorespaces Graphing parametric and rectangular equations for a graph in Example \ref {ex_pareq7}.\relax }}{515}{figure.caption.27}}
\newlabel{fig:pareq7}{{9.2.6}{515}{Graphing parametric and rectangular equations for a graph in Example \ref {ex_pareq7}.\relax }{figure.caption.27}{}}
\newlabel{eex_pareq6}{{9.2.1}{515}{Parametric Equations}{examplecounter.9.2.6}{}}
\pgfsyspdfmark {pgfid44}{10970098}{41893023}
\pgfsyspdfmark {pgfid45}{4474142}{35704708}
\newlabel{ex_pareq7}{{9.2.7}{515}{Parametric Equations}{examplecounter.9.2.7}{}}
\pgfsyspdfmark {pgfid46}{9979166}{35540868}
\pbs@newkey{pbs@last@page}{28}
\@writefile{lof}{\contentsline {figure}{\numberline {9.2.7}{\ignorespaces Graphing the parametric equations $x=4\qopname \relax o{cos}t+3$, $y=2\qopname \relax o{sin}t+1$ in Example \ref {ex_pareq8}.\relax }}{516}{figure.caption.28}}
\newlabel{fig:pareq8}{{9.2.7}{516}{Graphing the parametric equations $x=4\cos t+3$, $y=2\sin t+1$ in Example \ref {ex_pareq8}.\relax }{figure.caption.28}{}}
\newlabel{eex_pareq7}{{9.2.1}{516}{Parametric Equations}{figure.caption.27}{}}
\pgfsyspdfmark {pgfid47}{32237373}{40151317}
\pgfsyspdfmark {pgfid48}{14288487}{38216709}
\newlabel{ex_pareq8}{{9.2.8}{516}{Parametric Equations}{examplecounter.9.2.8}{}}
\newlabel{eex_pareq8}{{9.2.1}{516}{Parametric Equations}{examplecounter.9.2.8}{}}
\pgfsyspdfmark {pgfid49}{30194292}{17880171}
\pbs@newkey{pbs@last@page}{29}
\@writefile{lof}{\contentsline {figure}{\numberline {9.2.8}{\ignorespaces A gallery of interesting planar curves.\relax }}{517}{figure.caption.29}}
\newlabel{fig:pareq_special}{{9.2.8}{517}{A gallery of interesting planar curves.\relax }{figure.caption.29}{}}
\newlabel{idea:par_ellipse_hyperbola}{{9.2.1}{517}{Parametric Equations}{keyideacounter.9.2.1}{}}
\newlabel{def:smooth}{{9.2.2}{517}{Parametric Equations}{definitioncounter.9.2.2}{}}
\pbs@newkey{pbs@last@page}{30}
\@writefile{lof}{\contentsline {figure}{\numberline {9.2.9}{\ignorespaces Graphing the curve in Example \ref {ex_pareq9}; note it is not smooth at $(1,4)$.\relax }}{518}{figure.caption.30}}
\newlabel{fig:pareq9}{{9.2.9}{518}{Graphing the curve in Example \ref {ex_pareq9}; note it is not smooth at $(1,4)$.\relax }{figure.caption.30}{}}
\pgfsyspdfmark {pgfid52}{14288487}{44512051}
\newlabel{ex_pareq9}{{9.2.9}{518}{Parametric Equations}{examplecounter.9.2.9}{}}
\newlabel{eex_pareq9}{{9.2.2}{518}{Parametric Equations}{examplecounter.9.2.9}{}}
\pgfsyspdfmark {pgfid53}{17251998}{33122212}
\pbs@newkey{pbs@last@page}{31}
\pbs@newkey{pbs@last@page}{32}
\pbs@newkey{pbs@last@page}{33}
\@writefile{toc}{\contentsline {section}{\numberline {9.3}Calculus and Parametric Equations}{521}{section.9.3}}
\newlabel{sec:par_calc}{{9.3}{521}{Calculus and Parametric Equations}{section.9.3}{}}
\newlabel{idea:dydxpar}{{9.3.1}{521}{Calculus and Parametric Equations}{keyideacounter.9.3.1}{}}
\newlabel{def:tangent_par}{{9.3.1}{521}{Calculus and Parametric Equations}{definitioncounter.9.3.1}{}}
\pbs@newkey{pbs@last@page}{34}
\@writefile{lof}{\contentsline {figure}{\numberline {9.3.1}{\ignorespaces Graphing tangent and normal lines in Example \ref {ex_parcalc1}.\relax }}{522}{figure.caption.31}}
\newlabel{fig:parcalc1}{{9.3.1}{522}{Graphing tangent and normal lines in Example \ref {ex_parcalc1}.\relax }{figure.caption.31}{}}
\pgfsyspdfmark {pgfid56}{14288487}{38948012}
\newlabel{ex_parcalc1}{{9.3.1}{522}{Calculus and Parametric Equations}{examplecounter.9.3.1}{}}
\pgfsyspdfmark {pgfid57}{19793511}{38784172}
\pbs@newkey{pbs@last@page}{35}
\@writefile{lof}{\contentsline {figure}{\numberline {9.3.2}{\ignorespaces Illustrating how a circle's normal lines pass through its center.\relax }}{523}{figure.caption.32}}
\newlabel{fig:parcalc2}{{9.3.2}{523}{Illustrating how a circle's normal lines pass through its center.\relax }{figure.caption.32}{}}
\newlabel{eex_parcalc1}{{9.3.1}{523}{Calculus and Parametric Equations}{figure.caption.31}{}}
\pgfsyspdfmark {pgfid58}{4736286}{39450782}
\pgfsyspdfmark {pgfid59}{4474142}{38041758}
\newlabel{ex_parcalc2}{{9.3.2}{523}{Calculus and Parametric Equations}{examplecounter.9.3.2}{}}
\newlabel{eex_parcalc2}{{9.3.1}{523}{Calculus and Parametric Equations}{Item.135}{}}
\pgfsyspdfmark {pgfid60}{4736286}{14995292}
\pbs@newkey{pbs@last@page}{36}
\@writefile{lof}{\contentsline {figure}{\numberline {9.3.3}{\ignorespaces A graph of an astroid.\relax }}{524}{figure.caption.33}}
\newlabel{fig:parcalc3}{{9.3.3}{524}{A graph of an astroid.\relax }{figure.caption.33}{}}
\pgfsyspdfmark {pgfid61}{14288487}{46871347}
\newlabel{ex_parcalc3}{{9.3.3}{524}{Calculus and Parametric Equations}{examplecounter.9.3.3}{}}
\newlabel{eex_parcalc3}{{9.3.1}{524}{Calculus and Parametric Equations}{examplecounter.9.3.3}{}}
\pgfsyspdfmark {pgfid62}{22254623}{27548776}
\pbs@newkey{pbs@last@page}{37}
\@writefile{lof}{\contentsline {figure}{\numberline {9.3.4}{\ignorespaces Graphing the parametric equations in Example \ref {ex_parcalc4} to demonstrate concavity.\relax }}{525}{figure.caption.34}}
\newlabel{fig:parcalc4}{{9.3.4}{525}{Graphing the parametric equations in Example \ref {ex_parcalc4} to demonstrate concavity.\relax }{figure.caption.34}{}}
\newlabel{idea:second_der_par}{{9.3.2}{525}{Calculus and Parametric Equations}{keyideacounter.9.3.2}{}}
\pgfsyspdfmark {pgfid64}{4474142}{34954383}
\newlabel{ex_parcalc4}{{9.3.4}{525}{Calculus and Parametric Equations}{examplecounter.9.3.4}{}}
\pgfsyspdfmark {pgfid65}{9979166}{34790543}
\pbs@newkey{pbs@last@page}{38}
\@writefile{lof}{\contentsline {figure}{\numberline {9.3.5}{\ignorespaces In (a), a graph of $\frac {d^2y}{dx^2}$, showing where it is approximately 0. In (b), graph of the parametric equations in Example \ref {ex_parcalc5} along with the points of inflection.\relax }}{526}{figure.caption.35}}
\newlabel{fig:parcalc5}{{9.3.5}{526}{In (a), a graph of $\frac {d^2y}{dx^2}$, showing where it is approximately 0. In (b), graph of the parametric equations in Example \ref {ex_parcalc5} along with the points of inflection.\relax }{figure.caption.35}{}}
\newlabel{eex_parcalc4}{{9.3.2}{526}{Calculus and Parametric Equations}{figure.caption.34}{}}
\pgfsyspdfmark {pgfid67}{27928657}{40598937}
\pgfsyspdfmark {pgfid68}{14288487}{39189913}
\newlabel{ex_parcalc5}{{9.3.5}{526}{Calculus and Parametric Equations}{examplecounter.9.3.5}{}}
\newlabel{eex_parcalc5}{{9.3.2}{526}{Calculus and Parametric Equations}{examplecounter.9.3.5}{}}
\pgfsyspdfmark {pgfid69}{19391483}{21536851}
\pbs@newkey{pbs@last@page}{39}
\newlabel{thm:arc_length_parametric}{{9.3.1}{527}{Calculus and Parametric Equations}{theoremcounter.9.3.1}{}}
\pbs@newkey{pbs@last@page}{40}
\@writefile{lof}{\contentsline {figure}{\numberline {9.3.6}{\ignorespaces A graph of the parametric equations in Example \ref {ex_parcalc7}, where the arc length of the teardrop is calculated.\relax }}{528}{figure.caption.36}}
\newlabel{fig:parcalc7}{{9.3.6}{528}{A graph of the parametric equations in Example \ref {ex_parcalc7}, where the arc length of the teardrop is calculated.\relax }{figure.caption.36}{}}
\pgfsyspdfmark {pgfid71}{14288487}{46871347}
\newlabel{ex_parcalc6}{{9.3.6}{528}{Calculus and Parametric Equations}{examplecounter.9.3.6}{}}
\newlabel{eex_parcalc6}{{9.3.1}{528}{Calculus and Parametric Equations}{examplecounter.9.3.6}{}}
\pgfsyspdfmark {pgfid72}{23759704}{32573324}
\pgfsyspdfmark {pgfid73}{14288487}{31164300}
\newlabel{ex_parcalc7}{{9.3.7}{528}{Calculus and Parametric Equations}{examplecounter.9.3.7}{}}
\newlabel{eex_parcalc7}{{9.3.1}{528}{Calculus and Parametric Equations}{examplecounter.9.3.7}{}}
\pgfsyspdfmark {pgfid74}{24053563}{16733761}
\pbs@newkey{pbs@last@page}{41}
\@writefile{lof}{\contentsline {figure}{\numberline {9.3.7}{\ignorespaces Rotating a teardrop shape about the $x$-axis in Example \ref {ex_parcalc8}.\relax }}{529}{figure.caption.37}}
\newlabel{fig:parcalc8}{{9.3.7}{529}{Rotating a teardrop shape about the $x$-axis in Example \ref {ex_parcalc8}.\relax }{figure.caption.37}{}}
\newlabel{thm:surface_area_parametric}{{9.3.2}{529}{Calculus and Parametric Equations}{theoremcounter.9.3.2}{}}
\pgfsyspdfmark {pgfid76}{4474142}{27140332}
\newlabel{ex_parcalc8}{{9.3.8}{529}{Calculus and Parametric Equations}{examplecounter.9.3.8}{}}
\pgfsyspdfmark {pgfid77}{9979166}{26976492}
\pbs@newkey{pbs@last@page}{42}
\newlabel{eex_parcalc8}{{9.3.2}{530}{Calculus and Parametric Equations}{examplecounter.9.3.8}{}}
\pgfsyspdfmark {pgfid78}{17196923}{45134643}
\pbs@newkey{pbs@last@page}{43}
\newlabel{ex:09_03_ex_05}{{5}{531}{Calculus and Parametric Equations}{Item.142}{}}
\newlabel{ex:09_03_ex_12}{{12}{531}{Calculus and Parametric Equations}{Item.149}{}}
\pbs@newkey{pbs@last@page}{44}
\pbs@newkey{pbs@last@page}{45}
\@writefile{lof}{\contentsline {figure}{\numberline {9.4.1}{\ignorespaces Illustrating polar coordinates.\relax }}{533}{figure.caption.38}}
\newlabel{fig:polar_intro1}{{9.4.1}{533}{Illustrating polar coordinates.\relax }{figure.caption.38}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {9.4.2}{\ignorespaces Plotting polar points in Example \ref {ex_polar1}.\relax }}{533}{figure.caption.39}}
\newlabel{fig:polar1}{{9.4.2}{533}{Plotting polar points in Example \ref {ex_polar1}.\relax }{figure.caption.39}{}}
\@writefile{toc}{\contentsline {section}{\numberline {9.4}Introduction to Polar Coordinates}{533}{section.9.4}}
\newlabel{sec:polar}{{9.4}{533}{Introduction to Polar Coordinates}{section.9.4}{}}
\pgfsyspdfmark {pgfid79}{4474142}{27297043}
\newlabel{ex_polar1}{{9.4.1}{533}{Introduction to Polar Coordinates}{examplecounter.9.4.1}{}}
\newlabel{eex_polar1}{{9.4}{533}{Introduction to Polar Coordinates}{examplecounter.9.4.1}{}}
\pgfsyspdfmark {pgfid80}{25707806}{14208860}
\pbs@newkey{pbs@last@page}{46}
\@writefile{lof}{\contentsline {figure}{\numberline {9.4.3}{\ignorespaces Converting between rectangular and polar coordinates.\relax }}{534}{figure.caption.40}}
\newlabel{fig:polar_intro2}{{9.4.3}{534}{Converting between rectangular and polar coordinates.\relax }{figure.caption.40}{}}
\newlabel{idea:polarconvert}{{9.4.1}{534}{Introduction to Polar Coordinates}{keyideacounter.9.4.1}{}}
\pgfsyspdfmark {pgfid84}{14288487}{22081350}
\newlabel{ex_polar2}{{9.4.2}{534}{Introduction to Polar Coordinates}{examplecounter.9.4.2}{}}
\pgfsyspdfmark {pgfid85}{19793511}{21917510}
\pbs@newkey{pbs@last@page}{47}
\@writefile{lof}{\contentsline {figure}{\numberline {9.4.4}{\ignorespaces Plotting rectangular and polar points in Example \ref {ex_polar2}.\relax }}{535}{figure.caption.41}}
\newlabel{fig:polar2}{{9.4.4}{535}{Plotting rectangular and polar points in Example \ref {ex_polar2}.\relax }{figure.caption.41}{}}
\newlabel{eex_polar2}{{9.4.1}{535}{Introduction to Polar Coordinates}{Item.191}{}}
\pgfsyspdfmark {pgfid86}{4736286}{13422428}
\pbs@newkey{pbs@last@page}{48}
\@writefile{lof}{\contentsline {figure}{\numberline {9.4.5}{\ignorespaces Plotting standard polar plots.\relax }}{536}{figure.caption.42}}
\newlabel{fig:polar3}{{9.4.5}{536}{Plotting standard polar plots.\relax }{figure.caption.42}{}}
\pgfsyspdfmark {pgfid87}{14288487}{39768555}
\newlabel{ex_polar3}{{9.4.3}{536}{Introduction to Polar Coordinates}{examplecounter.9.4.3}{}}
\newlabel{eex_polar3}{{9.4.1}{536}{Introduction to Polar Coordinates}{Item.195}{}}
\pgfsyspdfmark {pgfid88}{14550631}{18939904}
\pbs@newkey{pbs@last@page}{49}
\@writefile{lof}{\contentsline {figure}{\numberline {9.4.6}{\ignorespaces Graphing a polar function in Example \ref {ex_polar4} by plotting points.\relax }}{537}{figure.caption.43}}
\newlabel{fig:polar4}{{9.4.6}{537}{Graphing a polar function in Example \ref {ex_polar4} by plotting points.\relax }{figure.caption.43}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {9.4.7}{\ignorespaces Using technology to graph a polar function.\relax }}{537}{figure.caption.44}}
\newlabel{fig:polar4b}{{9.4.7}{537}{Using technology to graph a polar function.\relax }{figure.caption.44}{}}
\pgfsyspdfmark {pgfid89}{4474142}{43725619}
\newlabel{ex_polar4}{{9.4.4}{537}{Introduction to Polar Coordinates}{examplecounter.9.4.4}{}}
\newlabel{eex_polar4}{{9.4.1}{537}{Introduction to Polar Coordinates}{examplecounter.9.4.4}{}}
\pgfsyspdfmark {pgfid90}{6002952}{31765299}
\pgfsyspdfmark {pgfid91}{4474142}{20919091}
\newlabel{ex_polar5}{{9.4.5}{537}{Introduction to Polar Coordinates}{examplecounter.9.4.5}{}}
\pgfsyspdfmark {pgfid92}{9979166}{20755251}
\pbs@newkey{pbs@last@page}{50}
\@writefile{lof}{\contentsline {figure}{\numberline {9.4.9}{\ignorespaces Polar plots from Example \ref {ex_polar5}.\relax }}{538}{figure.caption.46}}
\newlabel{fig:polar5}{{9.4.9}{538}{Polar plots from Example \ref {ex_polar5}.\relax }{figure.caption.46}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {9.4.8}{\ignorespaces Tables of points for plotting a polar curve.\relax }}{538}{figure.caption.45}}
\newlabel{fig:polar5table}{{9.4.8}{538}{Tables of points for plotting a polar curve.\relax }{figure.caption.45}{}}
\newlabel{eex_polar5}{{9.4.1}{538}{Introduction to Polar Coordinates}{figure.caption.45}{}}
\pgfsyspdfmark {pgfid93}{32098149}{35197017}
\pgfsyspdfmark {pgfid94}{14288487}{29739959}
\newlabel{ex_polar6}{{9.4.6}{538}{Introduction to Polar Coordinates}{examplecounter.9.4.6}{}}
\pgfsyspdfmark {pgfid95}{19793511}{29576119}
\pbs@newkey{pbs@last@page}{51}
\@writefile{lof}{\contentsline {figure}{\numberline {9.4.10}{\ignorespaces Graphing $xy=1$ from Example \ref {ex_polar6}.\relax }}{539}{figure.caption.47}}
\newlabel{fig:polar6}{{9.4.10}{539}{Graphing $xy=1$ from Example \ref {ex_polar6}.\relax }{figure.caption.47}{}}
\pgfsyspdfmark {pgfid96}{6374686}{19861956}
\pbs@newkey{pbs@last@page}{52}
\newlabel{eex_polar6}{{9.4.1}{540}{Introduction to Polar Coordinates}{figure.caption.47}{}}
\pgfsyspdfmark {pgfid97}{14550631}{39877609}
\pbs@newkey{pbs@last@page}{53}
\pbs@newkey{pbs@last@page}{54}
\@writefile{lof}{\contentsline {figure}{\numberline {9.4.11}{\ignorespaces Graphs to help determine the points of intersection of the polar functions given in Example \ref {ex_polar7}.\relax }}{542}{figure.caption.48}}
\newlabel{fig:polar7}{{9.4.11}{542}{Graphs to help determine the points of intersection of the polar functions given in Example \ref {ex_polar7}.\relax }{figure.caption.48}{}}
\pgfsyspdfmark {pgfid98}{14288487}{42122120}
\newlabel{ex_polar7}{{9.4.7}{542}{Introduction to Polar Coordinates}{examplecounter.9.4.7}{}}
\pgfsyspdfmark {pgfid99}{19793511}{41958280}
\pbs@newkey{pbs@last@page}{55}
\newlabel{eex_polar7}{{9.4.1}{543}{Introduction to Polar Coordinates}{examplecounter.9.4.7}{}}
\pgfsyspdfmark {pgfid100}{19474764}{43561779}
\pbs@newkey{pbs@last@page}{56}
\pbs@newkey{pbs@last@page}{57}
\pbs@newkey{pbs@last@page}{58}
\@writefile{toc}{\contentsline {section}{\numberline {9.5}Calculus and Polar Functions}{546}{section.9.5}}
\newlabel{sec:polarcalc}{{9.5}{546}{Calculus and Polar Functions}{section.9.5}{}}
\newlabel{idea:dydxpol}{{9.5.1}{546}{Calculus and Polar Functions}{keyideacounter.9.5.1}{}}
\pgfsyspdfmark {pgfid104}{14288487}{18915613}
\newlabel{ex_polcalc1}{{9.5.1}{546}{Calculus and Polar Functions}{examplecounter.9.5.1}{}}
\pgfsyspdfmark {pgfid105}{19793511}{18751773}
\pbs@newkey{pbs@last@page}{59}
\@writefile{lof}{\contentsline {figure}{\numberline {9.5.1}{\ignorespaces The lima\c con in Example \ref {ex_polcalc1} with its tangent line at ${"θ}={"π}/4$ and points of vertical and horizontal tangency.\relax }}{547}{figure.caption.49}}
\newlabel{fig:polcalc1}{{9.5.1}{547}{The lima\c con in Example \ref {ex_polcalc1} with its tangent line at $\theta =\pi /4$ and points of vertical and horizontal tangency.\relax }{figure.caption.49}{}}
\pgfsyspdfmark {pgfid106}{6522846}{31303546}
\pbs@newkey{pbs@last@page}{60}
\@writefile{lof}{\contentsline {figure}{\numberline {9.5.2}{\ignorespaces Graphing the tangent lines at the pole in Example \ref {ex_polcalc2}.\relax }}{548}{figure.caption.50}}
\newlabel{fig:polcalc2}{{9.5.2}{548}{Graphing the tangent lines at the pole in Example \ref {ex_polcalc2}.\relax }{figure.caption.50}{}}
\newlabel{eex_polcalc1}{{9.5.1}{548}{Calculus and Polar Functions}{figure.caption.49}{}}
\pgfsyspdfmark {pgfid107}{14550631}{26239271}
\pgfsyspdfmark {pgfid108}{14288487}{15945564}
\newlabel{ex_polcalc2}{{9.5.2}{548}{Calculus and Polar Functions}{examplecounter.9.5.2}{}}
\pgfsyspdfmark {pgfid109}{19793511}{15781724}
\pbs@newkey{pbs@last@page}{61}
\@writefile{lof}{\contentsline {figure}{\numberline {9.5.3}{\ignorespaces Computing the area of a polar region.\relax }}{549}{figure.caption.51}}
\newlabel{fig:polararea}{{9.5.3}{549}{Computing the area of a polar region.\relax }{figure.caption.51}{}}
\newlabel{eex_polcalc2}{{9.5.1}{549}{Calculus and Polar Functions}{figure.caption.50}{}}
\pgfsyspdfmark {pgfid110}{8225032}{38321259}
\pbs@newkey{pbs@last@page}{62}
\@writefile{lof}{\contentsline {figure}{\numberline {9.5.4}{\ignorespaces Finding the area of the shaded region of a cardioid in Example \ref {ex_polcalc4}.\relax }}{550}{figure.caption.52}}
\newlabel{fig:polcalc4}{{9.5.4}{550}{Finding the area of the shaded region of a cardioid in Example \ref {ex_polcalc4}.\relax }{figure.caption.52}{}}
\newlabel{thm:polar_area}{{9.5.1}{550}{Calculus and Polar Functions}{theoremcounter.9.5.1}{}}
\pgfsyspdfmark {pgfid113}{14288487}{32452442}
\newlabel{ex_polcalc3}{{9.5.3}{550}{Calculus and Polar Functions}{examplecounter.9.5.3}{}}
\newlabel{eex_polcalc3}{{9.5.1}{550}{Calculus and Polar Functions}{examplecounter.9.5.3}{}}
\pgfsyspdfmark {pgfid114}{29272017}{16327588}
\pgfsyspdfmark {pgfid115}{14288487}{14372700}
\newlabel{ex_polcalc4}{{9.5.4}{550}{Calculus and Polar Functions}{examplecounter.9.5.4}{}}
\pgfsyspdfmark {pgfid116}{19793511}{14208860}
\pbs@newkey{pbs@last@page}{63}
\@writefile{lof}{\contentsline {figure}{\numberline {9.5.5}{\ignorespaces Illustrating area bound between two polar curves.\relax }}{551}{figure.caption.53}}
\newlabel{fig:polarea3}{{9.5.5}{551}{Illustrating area bound between two polar curves.\relax }{figure.caption.53}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {9.5.6}{\ignorespaces Finding the area between polar curves in Example \ref {ex_polcalc5}.\relax }}{551}{figure.caption.54}}
\newlabel{fig:polcalc5}{{9.5.6}{551}{Finding the area between polar curves in Example \ref {ex_polcalc5}.\relax }{figure.caption.54}{}}
\newlabel{eex_polcalc4}{{9.5.1}{551}{Calculus and Polar Functions}{figure.caption.52}{}}
\pgfsyspdfmark {pgfid117}{5719326}{36802413}
\newlabel{idea:area_between_polar}{{9.5.2}{551}{Calculus and Polar Functions}{keyideacounter.9.5.2}{}}
\pgfsyspdfmark {pgfid119}{4474142}{16125153}
\newlabel{ex_polcalc5}{{9.5.5}{551}{Calculus and Polar Functions}{examplecounter.9.5.5}{}}
\pgfsyspdfmark {pgfid120}{9979166}{15961313}
\pbs@newkey{pbs@last@page}{64}
\@writefile{lof}{\contentsline {figure}{\numberline {9.5.7}{\ignorespaces Graphing the region bounded by the functions in Example \ref {ex_polcalc6}.\relax }}{552}{figure.caption.55}}
\newlabel{fig:polcalc6}{{9.5.7}{552}{Graphing the region bounded by the functions in Example \ref {ex_polcalc6}.\relax }{figure.caption.55}{}}
\newlabel{eex_polcalc5}{{9.5.2}{552}{Calculus and Polar Functions}{figure.caption.54}{}}
\pgfsyspdfmark {pgfid121}{33203217}{31923218}
\pgfsyspdfmark {pgfid122}{14288487}{30480920}
\newlabel{ex_polcalc6}{{9.5.6}{552}{Calculus and Polar Functions}{examplecounter.9.5.6}{}}
\pgfsyspdfmark {pgfid123}{19793511}{30317080}
\pbs@newkey{pbs@last@page}{65}
\newlabel{eex_polcalc6}{{9.5.2}{553}{Calculus and Polar Functions}{examplecounter.9.5.6}{}}
\pgfsyspdfmark {pgfid124}{19622188}{44218640}
\newlabel{eq:polar_arclength}{{9.1}{553}{Calculus and Polar Functions}{equation.9.5.1}{}}
\newlabel{thm:polar_arclength}{{9.5.2}{553}{Calculus and Polar Functions}{theoremcounter.9.5.2}{}}
\pgfsyspdfmark {pgfid126}{4474142}{17647999}
\newlabel{ex_polcalc7}{{9.5.7}{553}{Calculus and Polar Functions}{examplecounter.9.5.7}{}}
\pgfsyspdfmark {pgfid127}{9979166}{17484159}
\pbs@newkey{pbs@last@page}{66}
\@writefile{lof}{\contentsline {figure}{\numberline {9.5.8}{\ignorespaces The lima\c con in Example \ref {ex_polcalc7} whose arc length is measured.\relax }}{554}{figure.caption.56}}
\newlabel{fig:polcalc7}{{9.5.8}{554}{The lima\c con in Example \ref {ex_polcalc7} whose arc length is measured.\relax }{figure.caption.56}{}}
\newlabel{eex_polcalc7}{{9.5.2}{554}{Calculus and Polar Functions}{examplecounter.9.5.7}{}}
\pgfsyspdfmark {pgfid128}{22648977}{35879328}
\newlabel{thm:surface_area_polar}{{9.5.3}{554}{Calculus and Polar Functions}{theoremcounter.9.5.3}{}}
\pbs@newkey{pbs@last@page}{67}
\@writefile{lof}{\contentsline {figure}{\numberline {9.5.9}{\ignorespaces Finding the surface area of a rose--curve petal that is revolved around its central axis.\relax }}{555}{figure.caption.57}}
\newlabel{fig:polcalc8}{{9.5.9}{555}{Finding the surface area of a rose--curve petal that is revolved around its central axis.\relax }{figure.caption.57}{}}
\pgfsyspdfmark {pgfid130}{4474142}{46871347}
\newlabel{ex_polcalc8}{{9.5.8}{555}{Calculus and Polar Functions}{examplecounter.9.5.8}{}}
\newlabel{eex_polcalc8}{{9.5.3}{555}{Calculus and Polar Functions}{examplecounter.9.5.8}{}}
\pgfsyspdfmark {pgfid131}{23260083}{36387871}
\pbs@newkey{pbs@last@page}{68}
\pbs@newkey{pbs@last@page}{69}
\pbs@newkey{pbs@last@page}{70}
\pbs@newkey{pbs@last@page}{71}
\@writefile{toc}{\contentsline {chapter}{\numberline {10}Vectors}{559}{chapter.10}}
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\newlabel{chapter:vectors}{{10}{559}{Vectors}{chapter.10}{}}
\@writefile{toc}{\contentsline {section}{\numberline {10.1}Introduction to Cartesian Coordinates in Space}{559}{section.10.1}}
\newlabel{sec:space_coord}{{10.1}{559}{Introduction to Cartesian Coordinates in Space}{section.10.1}{}}
\pbs@newkey{pbs@last@page}{72}
\@writefile{lof}{\contentsline {figure}{\numberline {10.1.1}{\ignorespaces Plotting the point $P=(2,1,3)$ in space.\relax }}{560}{figure.caption.58}}
\newlabel{fig:cartcoord1}{{10.1.1}{560}{Plotting the point $P=(2,1,3)$ in space.\relax }{figure.caption.58}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {10.1.2}{\ignorespaces Plotting the point $P=(2,1,3)$ in space with a perspective used in this text.\relax }}{560}{figure.caption.59}}
\newlabel{fig:cartcoord2}{{10.1.2}{560}{Plotting the point $P=(2,1,3)$ in space with a perspective used in this text.\relax }{figure.caption.59}{}}
\newlabel{def:space_distance}{{10.1.1}{560}{Introduction to Cartesian Coordinates in Space}{definitioncounter.10.1.1}{}}
\pgfsyspdfmark {pgfid133}{14288487}{14372700}
\newlabel{ex_space1}{{10.1.1}{560}{Introduction to Cartesian Coordinates in Space}{examplecounter.10.1.1}{}}
\pgfsyspdfmark {pgfid134}{19793511}{14208860}
\pbs@newkey{pbs@last@page}{73}
\@writefile{lof}{\contentsline {figure}{\numberline {10.1.3}{\ignorespaces Plotting points $P$ and $Q$ in Example \ref {ex_space1}.\relax }}{561}{figure.caption.60}}
\newlabel{fig:space1}{{10.1.3}{561}{Plotting points $P$ and $Q$ in Example \ref {ex_space1}.\relax }{figure.caption.60}{}}
\newlabel{eex_space1}{{10.1.1}{561}{Introduction to Cartesian Coordinates in Space}{figure.caption.59}{}}
\pgfsyspdfmark {pgfid135}{5719326}{41087921}
\newlabel{idea:sphere}{{10.1.1}{561}{Introduction to Cartesian Coordinates in Space}{keyideacounter.10.1.1}{}}
\pgfsyspdfmark {pgfid137}{4474142}{23297496}
\newlabel{ex_space2}{{10.1.2}{561}{Introduction to Cartesian Coordinates in Space}{examplecounter.10.1.2}{}}
\newlabel{eex_space2}{{10.1.1}{561}{Introduction to Cartesian Coordinates in Space}{examplecounter.10.1.2}{}}
\pgfsyspdfmark {pgfid138}{20171662}{14995292}
\pbs@newkey{pbs@last@page}{74}
\@writefile{lof}{\contentsline {figure}{\numberline {10.1.5}{\ignorespaces The plane $x=2$.\relax }}{562}{figure.caption.62}}
\newlabel{fig:space2}{{10.1.5}{562}{The plane $x=2$.\relax }{figure.caption.62}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {10.1.6}{\ignorespaces Sketching the boundaries of a region in Example \ref {ex_space3}.\relax }}{562}{figure.caption.63}}
\newlabel{fig:space3}{{10.1.6}{562}{Sketching the boundaries of a region in Example \ref {ex_space3}.\relax }{figure.caption.63}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {10.1.4}{\ignorespaces The coordinate planes.\relax }}{562}{figure.caption.61}}
\newlabel{fig:coordplanes}{{10.1.4}{562}{The coordinate planes.\relax }{figure.caption.61}{}}
\pgfsyspdfmark {pgfid139}{14288487}{26387219}
\newlabel{ex_space3}{{10.1.3}{562}{Introduction to Cartesian Coordinates in Space}{examplecounter.10.1.3}{}}
\newlabel{eex_space3}{{10.1.1}{562}{Introduction to Cartesian Coordinates in Space}{examplecounter.10.1.3}{}}
\pgfsyspdfmark {pgfid140}{24817083}{21432107}
\pbs@newkey{pbs@last@page}{75}
\@writefile{lof}{\contentsline {figure}{\numberline {10.1.8}{\ignorespaces Sketching $x^2+y^2=1$.\relax }}{563}{figure.caption.65}}
\newlabel{fig:spacecylinder1}{{10.1.8}{563}{Sketching $x^2+y^2=1$.\relax }{figure.caption.65}{}}
\newlabel{def:cylinder}{{10.1.2}{563}{Introduction to Cartesian Coordinates in Space}{definitioncounter.10.1.2}{}}
\pgfsyspdfmark {pgfid142}{4474142}{30302019}
\newlabel{ex_space4}{{10.1.4}{563}{Introduction to Cartesian Coordinates in Space}{examplecounter.10.1.4}{}}
\pgfsyspdfmark {pgfid143}{9979166}{30138179}
\@writefile{lof}{\contentsline {figure}{\numberline {10.1.7}{\ignorespaces Sketching the cylinder defined by $z=y^2$.\relax }}{563}{figure.caption.64}}
\newlabel{fig:space4a}{{10.1.7}{563}{Sketching the cylinder defined by $z=y^2$.\relax }{figure.caption.64}{}}
\pbs@newkey{pbs@last@page}{76}
\@writefile{lof}{\contentsline {figure}{\numberline {10.1.10}{\ignorespaces Introducing surfaces of revolution.\relax }}{564}{figure.caption.67}}
\newlabel{fig:surf_rev_intro}{{10.1.10}{564}{Introducing surfaces of revolution.\relax }{figure.caption.67}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {10.1.9}{\ignorespaces Sketching the cylinder defined by $x=\qopname \relax o{sin}z$.\relax }}{564}{figure.caption.66}}
\newlabel{fig:space4b}{{10.1.9}{564}{Sketching the cylinder defined by $x=\sin z$.\relax }{figure.caption.66}{}}
\newlabel{eex_space4}{{10.1.2}{564}{Introduction to Cartesian Coordinates in Space}{figure.caption.66}{}}
\pgfsyspdfmark {pgfid144}{15533671}{34873549}
\newlabel{idea:surf_of_revol}{{10.1.2}{564}{Introduction to Cartesian Coordinates in Space}{keyideacounter.10.1.2}{}}
\pbs@newkey{pbs@last@page}{77}
\@writefile{lof}{\contentsline {figure}{\numberline {10.1.11}{\ignorespaces Revolving $y=\qopname \relax o{sin}z$ about the $z$-axis in Example \ref {ex_surfrev1}.\relax }}{565}{figure.caption.68}}
\newlabel{fig:surfrev1}{{10.1.11}{565}{Revolving $y=\sin z$ about the $z$-axis in Example \ref {ex_surfrev1}.\relax }{figure.caption.68}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {10.1.12}{\ignorespaces Revolving $z=\qopname \relax o{sin}x$ about the $z$-axis in Example \ref {ex_surfrev2}.\relax }}{565}{figure.caption.69}}
\newlabel{fig:surfrev2}{{10.1.12}{565}{Revolving $z=\sin x$ about the $z$-axis in Example \ref {ex_surfrev2}.\relax }{figure.caption.69}{}}
\pgfsyspdfmark {pgfid146}{4474142}{46084915}
\newlabel{ex_surfrev1}{{10.1.5}{565}{Introduction to Cartesian Coordinates in Space}{examplecounter.10.1.5}{}}
\newlabel{eex_surfrev1}{{10.1.2}{565}{Introduction to Cartesian Coordinates in Space}{examplecounter.10.1.5}{}}
\pgfsyspdfmark {pgfid147}{23925822}{39629619}
\newlabel{idea:surf_of_revol2}{{10.1.3}{565}{Introduction to Cartesian Coordinates in Space}{keyideacounter.10.1.3}{}}
\pgfsyspdfmark {pgfid149}{4474142}{20330197}
\newlabel{ex_surfrev2}{{10.1.6}{565}{Introduction to Cartesian Coordinates in Space}{examplecounter.10.1.6}{}}
\newlabel{eex_surfrev2}{{10.1.3}{565}{Introduction to Cartesian Coordinates in Space}{examplecounter.10.1.6}{}}
\pgfsyspdfmark {pgfid150}{18874952}{17020629}
\pbs@newkey{pbs@last@page}{78}
\@writefile{lof}{\contentsline {figure}{\numberline {10.1.13}{\ignorespaces The elliptic paraboloid $z=x^2/4+y^2$.\relax }}{566}{figure.caption.70}}
\newlabel{fig:quadric1}{{10.1.13}{566}{The elliptic paraboloid $z=x^2/4+y^2$.\relax }{figure.caption.70}{}}
\newlabel{def:quadric}{{10.1.3}{566}{Introduction to Cartesian Coordinates in Space}{definitioncounter.10.1.3}{}}
\pbs@newkey{pbs@last@page}{79}
\pbs@newkey{pbs@last@page}{80}
\pbs@newkey{pbs@last@page}{81}
\pbs@newkey{pbs@last@page}{82}
\@writefile{lof}{\contentsline {figure}{\numberline {10.1.14}{\ignorespaces Sketching an elliptic paraboloid.\relax }}{570}{figure.caption.71}}
\newlabel{fig:space5a}{{10.1.14}{570}{Sketching an elliptic paraboloid.\relax }{figure.caption.71}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {10.1.15}{\ignorespaces Sketching an ellipsoid.\relax }}{570}{figure.caption.72}}
\newlabel{fig:space5b}{{10.1.15}{570}{Sketching an ellipsoid.\relax }{figure.caption.72}{}}
\pgfsyspdfmark {pgfid152}{14288487}{46871347}
\newlabel{ex_space5}{{10.1.7}{570}{Introduction to Cartesian Coordinates in Space}{examplecounter.10.1.7}{}}
\pgfsyspdfmark {pgfid153}{19793511}{46707507}
\pbs@newkey{pbs@last@page}{83}
\@writefile{lof}{\contentsline {figure}{\numberline {10.1.16}{\ignorespaces Sketching a hyperbolic paraboloid.\relax }}{571}{figure.caption.73}}
\newlabel{fig:space5c}{{10.1.16}{571}{Sketching a hyperbolic paraboloid.\relax }{figure.caption.73}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {10.1.17}{\ignorespaces A possible equation of this quadric surface is found in Example \ref {ex_space6}.\relax }}{571}{figure.caption.74}}
\newlabel{fig:space6}{{10.1.17}{571}{A possible equation of this quadric surface is found in Example \ref {ex_space6}.\relax }{figure.caption.74}{}}
\newlabel{eex_space5}{{10.1.3}{571}{Introduction to Cartesian Coordinates in Space}{figure.caption.72}{}}
\pgfsyspdfmark {pgfid154}{4736286}{41857843}
\pgfsyspdfmark {pgfid155}{4474142}{40448819}
\newlabel{ex_space6}{{10.1.8}{571}{Introduction to Cartesian Coordinates in Space}{examplecounter.10.1.8}{}}
\newlabel{eex_space6}{{10.1.3}{571}{Introduction to Cartesian Coordinates in Space}{examplecounter.10.1.8}{}}
\pgfsyspdfmark {pgfid156}{20806264}{21426400}
\pbs@newkey{pbs@last@page}{84}
\pbs@newkey{pbs@last@page}{85}
\pbs@newkey{pbs@last@page}{86}
\@writefile{lof}{\contentsline {figure}{\numberline {10.2.1}{\ignorespaces Drawing the same vector with different initial points.\relax }}{574}{figure.caption.75}}
\newlabel{fig:vectintro1}{{10.2.1}{574}{Drawing the same vector with different initial points.\relax }{figure.caption.75}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {10.2.2}{\ignorespaces Illustrating how equal vectors have the same displacement.\relax }}{574}{figure.caption.76}}
\newlabel{fig:vectintro2}{{10.2.2}{574}{Illustrating how equal vectors have the same displacement.\relax }{figure.caption.76}{}}
\@writefile{toc}{\contentsline {section}{\numberline {10.2}An Introduction to Vectors}{574}{section.10.2}}
\newlabel{sec:vector_intro}{{10.2}{574}{An Introduction to Vectors}{section.10.2}{}}
\newlabel{def:vector}{{10.2.1}{574}{An Introduction to Vectors}{definitioncounter.10.2.1}{}}
\pbs@newkey{pbs@last@page}{87}
\newlabel{def:vector_component}{{10.2.2}{575}{An Introduction to Vectors}{definitioncounter.10.2.2}{}}
\pgfsyspdfmark {pgfid159}{4474142}{21487636}
\newlabel{ex_vect1}{{10.2.1}{575}{An Introduction to Vectors}{examplecounter.10.2.1}{}}
\pgfsyspdfmark {pgfid160}{9979166}{21323796}
\pbs@newkey{pbs@last@page}{88}
\@writefile{lof}{\contentsline {figure}{\numberline {10.2.3}{\ignorespaces Graphing vectors in Example \ref {ex_vect1}.\relax }}{576}{figure.caption.77}}
\newlabel{fig:vect1}{{10.2.3}{576}{Graphing vectors in Example \ref {ex_vect1}.\relax }{figure.caption.77}{}}
\newlabel{eex_vect1}{{10.2.2}{576}{An Introduction to Vectors}{Item.371}{}}
\pgfsyspdfmark {pgfid161}{14550631}{28619571}
\pbs@newkey{pbs@last@page}{89}
\@writefile{lof}{\contentsline {figure}{\numberline {10.2.4}{\ignorespaces Graphing the sum of vectors in Example \ref {ex_vect2}.\relax }}{577}{figure.caption.78}}
\newlabel{fig:vect2}{{10.2.4}{577}{Graphing the sum of vectors in Example \ref {ex_vect2}.\relax }{figure.caption.78}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {10.2.5}{\ignorespaces Illustrating how to add vectors using the Head to Tail Rule and Parallelogram Law.\relax }}{577}{figure.caption.79}}
\newlabel{fig:vect2b}{{10.2.5}{577}{Illustrating how to add vectors using the Head to Tail Rule and Parallelogram Law.\relax }{figure.caption.79}{}}
\newlabel{def:vector_algebra}{{10.2.3}{577}{An Introduction to Vectors}{definitioncounter.10.2.3}{}}
\pgfsyspdfmark {pgfid163}{4474142}{25634689}
\newlabel{ex_vect2}{{10.2.2}{577}{An Introduction to Vectors}{examplecounter.10.2.2}{}}
\newlabel{eex_vect2}{{10.2.3}{577}{An Introduction to Vectors}{examplecounter.10.2.2}{}}
\pgfsyspdfmark {pgfid164}{15346632}{18606219}
\pbs@newkey{pbs@last@page}{90}
\@writefile{lof}{\contentsline {figure}{\numberline {10.2.6}{\ignorespaces Illustrating how to subtract vectors graphically.\relax }}{578}{figure.caption.80}}
\newlabel{fig:vect4}{{10.2.6}{578}{Illustrating how to subtract vectors graphically.\relax }{figure.caption.80}{}}
\pgfsyspdfmark {pgfid165}{14288487}{30086821}
\newlabel{ex_vect4}{{10.2.3}{578}{An Introduction to Vectors}{examplecounter.10.2.3}{}}
\newlabel{eex_vect4}{{10.2.3}{578}{An Introduction to Vectors}{examplecounter.10.2.3}{}}
\pgfsyspdfmark {pgfid166}{18578257}{19036695}
\pgfsyspdfmark {pgfid167}{14288487}{17627671}
\newlabel{ex_vect3}{{10.2.4}{578}{An Introduction to Vectors}{examplecounter.10.2.4}{}}
\pgfsyspdfmark {pgfid168}{19793511}{17463831}
\pbs@newkey{pbs@last@page}{91}
\@writefile{lof}{\contentsline {figure}{\numberline {10.2.7}{\ignorespaces Graphing vectors $\mathaccentV {vec}17Ev$ and $2\mathaccentV {vec}17Ev$ in Example \ref {ex_vect3}.\relax }}{579}{figure.caption.81}}
\newlabel{fig:vect3}{{10.2.7}{579}{Graphing vectors $\vec v$ and $2\vec v$ in Example \ref {ex_vect3}.\relax }{figure.caption.81}{}}
\newlabel{eex_vect3}{{10.2.3}{579}{An Introduction to Vectors}{Item.381}{}}
\pgfsyspdfmark {pgfid169}{4736286}{30688943}
\pbs@newkey{pbs@last@page}{92}
\newlabel{thm:vector_properties}{{10.2.1}{580}{An Introduction to Vectors}{theoremcounter.10.2.1}{}}
\newlabel{thm:norm_prop}{{8}{580}{An Introduction to Vectors}{Item.389}{}}
\newlabel{thm:zero_norm}{{9}{580}{An Introduction to Vectors}{Item.390}{}}
\newlabel{def:unit_vector}{{10.2.4}{580}{An Introduction to Vectors}{definitioncounter.10.2.4}{}}
\pbs@newkey{pbs@last@page}{93}
\@writefile{lof}{\contentsline {figure}{\numberline {10.2.8}{\ignorespaces Graphing vectors in Example \ref {ex_vect5}. All vectors shown have their initial point at the origin.\relax }}{581}{figure.caption.82}}
\newlabel{fig:vect5}{{10.2.8}{581}{Graphing vectors in Example \ref {ex_vect5}. All vectors shown have their initial point at the origin.\relax }{figure.caption.82}{}}
\pgfsyspdfmark {pgfid172}{4474142}{43968846}
\newlabel{ex_vect5}{{10.2.5}{581}{An Introduction to Vectors}{examplecounter.10.2.5}{}}
\newlabel{eex_vect5}{{10.2.4}{581}{An Introduction to Vectors}{Item.396}{}}
\pgfsyspdfmark {pgfid173}{4736286}{26069474}
\pbs@newkey{pbs@last@page}{94}
\newlabel{note:parallel}{{10.2.1}{582}{An Introduction to Vectors}{examplecounter.10.2.6}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {10.2.9}{\ignorespaces A diagram of a weight hanging from 2 chains in Example \ref {ex_vect6}.\relax }}{582}{figure.caption.83}}
\newlabel{fig:vect6}{{10.2.9}{582}{A diagram of a weight hanging from 2 chains in Example \ref {ex_vect6}.\relax }{figure.caption.83}{}}
\newlabel{def:parallel_vectors}{{10.2.5}{582}{An Introduction to Vectors}{definitioncounter.10.2.5}{}}
\newlabel{idea:unit_vectors}{{10.2.1}{582}{An Introduction to Vectors}{keyideacounter.10.2.1}{}}
\pgfsyspdfmark {pgfid176}{14288487}{18324579}
\newlabel{ex_vect6}{{10.2.6}{582}{An Introduction to Vectors}{examplecounter.10.2.6}{}}
\pgfsyspdfmark {pgfid177}{19793511}{18160739}
\pbs@newkey{pbs@last@page}{95}
\@writefile{lof}{\contentsline {figure}{\numberline {10.2.10}{\ignorespaces A diagram of the force vectors from Example \ref {ex_vect6}.\relax }}{583}{figure.caption.84}}
\newlabel{fig:vect6b}{{10.2.10}{583}{A diagram of the force vectors from Example \ref {ex_vect6}.\relax }{figure.caption.84}{}}
\newlabel{eex_vect6}{{10.2.1}{583}{An Introduction to Vectors}{figure.caption.83}{}}
\pgfsyspdfmark {pgfid178}{17123912}{18141020}
\pbs@newkey{pbs@last@page}{96}
\@writefile{lof}{\contentsline {figure}{\numberline {10.2.11}{\ignorespaces A figure of a weight being pushed by the wind in Example \ref {ex_vect8}.\relax }}{584}{figure.caption.85}}
\newlabel{fig:vect8}{{10.2.11}{584}{A figure of a weight being pushed by the wind in Example \ref {ex_vect8}.\relax }{figure.caption.85}{}}
\newlabel{def:standard_unit}{{10.2.6}{584}{An Introduction to Vectors}{definitioncounter.10.2.6}{}}
\pgfsyspdfmark {pgfid180}{14288487}{38032585}
\newlabel{ex_vect7}{{10.2.7}{584}{An Introduction to Vectors}{examplecounter.10.2.7}{}}
\newlabel{eex_vect7}{{10.2.6}{584}{An Introduction to Vectors}{Item.407}{}}
\pgfsyspdfmark {pgfid181}{18417297}{18981396}
\pgfsyspdfmark {pgfid182}{14288487}{17518428}
\newlabel{ex_vect8}{{10.2.8}{584}{An Introduction to Vectors}{examplecounter.10.2.8}{}}
\pgfsyspdfmark {pgfid183}{19793511}{17354588}
\pbs@newkey{pbs@last@page}{97}
\newlabel{eq:vect8}{{10.1}{585}{An Introduction to Vectors}{equation.10.2.1}{}}
\newlabel{eex_vect8}{{10.2.6}{585}{An Introduction to Vectors}{equation.10.2.1}{}}
\pgfsyspdfmark {pgfid184}{14927717}{19219104}
\pbs@newkey{pbs@last@page}{98}
\pbs@newkey{pbs@last@page}{99}
\pbs@newkey{pbs@last@page}{100}
\@writefile{toc}{\contentsline {section}{\numberline {10.3}The Dot Product}{588}{section.10.3}}
\newlabel{sec:dot_product}{{10.3}{588}{The Dot Product}{section.10.3}{}}
\newlabel{def:dot_product}{{10.3.1}{588}{The Dot Product}{definitioncounter.10.3.1}{}}
\pgfsyspdfmark {pgfid186}{14288487}{28684898}
\newlabel{ex_dotp1}{{10.3.1}{588}{The Dot Product}{examplecounter.10.3.1}{}}
\newlabel{eex_dotp1}{{10.3.1}{588}{The Dot Product}{Item.455}{}}
\pgfsyspdfmark {pgfid187}{14550631}{16568156}
\pbs@newkey{pbs@last@page}{101}
\@writefile{lof}{\contentsline {figure}{\numberline {10.3.1}{\ignorespaces Illustrating the angle formed by two vectors with the same initial point.\relax }}{589}{figure.caption.86}}
\newlabel{fig:dotpangle}{{10.3.1}{589}{Illustrating the angle formed by two vectors with the same initial point.\relax }{figure.caption.86}{}}
\newlabel{thm:dot_product_properties}{{10.3.1}{589}{The Dot Product}{theoremcounter.10.3.1}{}}
\pbs@newkey{pbs@last@page}{102}
\@writefile{lof}{\contentsline {figure}{\numberline {10.3.3}{\ignorespaces Vectors used in Example \ref {ex_dotp2}.\relax }}{590}{figure.caption.88}}
\newlabel{fig:dotp2}{{10.3.3}{590}{Vectors used in Example \ref {ex_dotp2}.\relax }{figure.caption.88}{}}
\newlabel{thm:dot_product}{{10.3.2}{590}{The Dot Product}{theoremcounter.10.3.2}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {10.3.2}{\ignorespaces Illustrating the relationship between the angle between vectors and the sign of their dot product.\relax }}{590}{figure.caption.87}}
\newlabel{fig:dotpsign}{{10.3.2}{590}{Illustrating the relationship between the angle between vectors and the sign of their dot product.\relax }{figure.caption.87}{}}
\pgfsyspdfmark {pgfid190}{14288487}{15945564}
\newlabel{ex_dotp2}{{10.3.2}{590}{The Dot Product}{examplecounter.10.3.2}{}}
\pgfsyspdfmark {pgfid191}{19793511}{15781724}
\pbs@newkey{pbs@last@page}{103}
\@writefile{lof}{\contentsline {figure}{\numberline {10.3.4}{\ignorespaces Vectors used in Example \ref {ex_dotp3}.\relax }}{591}{figure.caption.89}}
\newlabel{fig:dotp3}{{10.3.4}{591}{Vectors used in Example \ref {ex_dotp3}.\relax }{figure.caption.89}{}}
\newlabel{eex_dotp2}{{10.3.2}{591}{The Dot Product}{figure.caption.88}{}}
\pgfsyspdfmark {pgfid192}{5719326}{29127949}
\pgfsyspdfmark {pgfid193}{4474142}{23786765}
\newlabel{ex_dotp3}{{10.3.3}{591}{The Dot Product}{examplecounter.10.3.3}{}}
\pgfsyspdfmark {pgfid194}{9979166}{23622925}
\pbs@newkey{pbs@last@page}{104}
\newlabel{eex_dotp3}{{10.3.2}{592}{The Dot Product}{Item.463}{}}
\pgfsyspdfmark {pgfid195}{23548817}{30970554}
\newlabel{def:orthogonal}{{10.3.2}{592}{The Dot Product}{definitioncounter.10.3.2}{}}
\pgfsyspdfmark {pgfid197}{14288487}{19935852}
\newlabel{ex_dotp8}{{10.3.4}{592}{The Dot Product}{examplecounter.10.3.4}{}}
\pgfsyspdfmark {pgfid198}{19793511}{19772012}
\pbs@newkey{pbs@last@page}{105}
\@writefile{lof}{\contentsline {figure}{\numberline {10.3.5}{\ignorespaces Developing the construction of the \emph {orthogonal projection}.\relax }}{593}{figure.caption.90}}
\newlabel{fig:dotpproj}{{10.3.5}{593}{Developing the construction of the \emph {orthogonal projection}.\relax }{figure.caption.90}{}}
\newlabel{eex_dotp8}{{10.3.2}{593}{The Dot Product}{Item.467}{}}
\pgfsyspdfmark {pgfid199}{4736286}{25848986}
\newlabel{eq:proj1}{{10.2}{593}{The Dot Product}{equation.10.3.2}{}}
\pbs@newkey{pbs@last@page}{106}
\newlabel{def:orthogonal_projection}{{10.3.3}{594}{The Dot Product}{definitioncounter.10.3.3}{}}
\pgfsyspdfmark {pgfid201}{14288487}{21969993}
\newlabel{ex_dotp4}{{10.3.5}{594}{The Dot Product}{examplecounter.10.3.5}{}}
\pgfsyspdfmark {pgfid202}{19793511}{21806153}
\pbs@newkey{pbs@last@page}{107}
\@writefile{lof}{\contentsline {figure}{\numberline {10.3.6}{\ignorespaces Graphing the vectors used in Example \ref {ex_dotp4}.\relax }}{595}{figure.caption.91}}
\newlabel{fig:dotp4}{{10.3.6}{595}{Graphing the vectors used in Example \ref {ex_dotp4}.\relax }{figure.caption.91}{}}
\newlabel{eex_dotp4}{{10.3.3}{595}{The Dot Product}{Item.471}{}}
\pgfsyspdfmark {pgfid203}{4736286}{27271541}
\pbs@newkey{pbs@last@page}{108}
\@writefile{lof}{\contentsline {figure}{\numberline {10.3.7}{\ignorespaces Illustrating the orthogonal projection.\relax }}{596}{figure.caption.92}}
\newlabel{fig:dotpprojc}{{10.3.7}{596}{Illustrating the orthogonal projection.\relax }{figure.caption.92}{}}
\newlabel{eq:orthogproj}{{10.3}{596}{The Dot Product}{equation.10.3.3}{}}
\newlabel{idea:orthog_proj}{{10.3.1}{596}{The Dot Product}{keyideacounter.10.3.1}{}}
\pgfsyspdfmark {pgfid205}{14288487}{21186278}
\newlabel{ex_dotp5}{{10.3.6}{596}{The Dot Product}{examplecounter.10.3.6}{}}
\pgfsyspdfmark {pgfid206}{19793511}{21022438}
\pbs@newkey{pbs@last@page}{109}
\@writefile{lof}{\contentsline {figure}{\numberline {10.3.8}{\ignorespaces Sketching the ramp and box in Example \ref {ex_dotp6}. Note: \textit {The vectors are not drawn to scale.}\relax }}{597}{figure.caption.93}}
\newlabel{fig:dotp6}{{10.3.8}{597}{Sketching the ramp and box in Example \ref {ex_dotp6}. Note: \textit {The vectors are not drawn to scale.}\relax }{figure.caption.93}{}}
\newlabel{eex_dotp5}{{10.3.1}{597}{The Dot Product}{Item.475}{}}
\pgfsyspdfmark {pgfid207}{4736286}{25678470}
\pgfsyspdfmark {pgfid208}{4474142}{22696582}
\newlabel{ex_dotp6}{{10.3.7}{597}{The Dot Product}{examplecounter.10.3.7}{}}
\pgfsyspdfmark {pgfid209}{9979166}{22532742}
\pbs@newkey{pbs@last@page}{110}
\@writefile{lof}{\contentsline {figure}{\numberline {10.3.9}{\ignorespaces Finding work when the force and direction of travel are given as vectors.\relax }}{598}{figure.caption.94}}
\newlabel{fig:dotpwork}{{10.3.9}{598}{Finding work when the force and direction of travel are given as vectors.\relax }{figure.caption.94}{}}
\newlabel{eex_dotp6}{{10.3.1}{598}{The Dot Product}{Item.479}{}}
\pgfsyspdfmark {pgfid210}{14550631}{22478550}
\pbs@newkey{pbs@last@page}{111}
\@writefile{lof}{\contentsline {figure}{\numberline {10.3.10}{\ignorespaces Computing work when sliding a box up a ramp in Example \ref {ex_dotp7}.\relax }}{599}{figure.caption.95}}
\newlabel{fig:dotp7}{{10.3.10}{599}{Computing work when sliding a box up a ramp in Example \ref {ex_dotp7}.\relax }{figure.caption.95}{}}
\newlabel{def:work}{{10.3.4}{599}{The Dot Product}{definitioncounter.10.3.4}{}}
\pgfsyspdfmark {pgfid212}{4474142}{27699546}
\newlabel{ex_dotp7}{{10.3.8}{599}{The Dot Product}{examplecounter.10.3.8}{}}
\newlabel{eex_dotp7}{{10.3.4}{599}{The Dot Product}{examplecounter.10.3.8}{}}
\pgfsyspdfmark {pgfid213}{11841672}{18213718}
\pbs@newkey{pbs@last@page}{112}
\newlabel{ex:10_03_ex_21}{{21}{600}{The Dot Product}{Item.500}{}}
\newlabel{ex:10_03_ex_24}{{26}{600}{The Dot Product}{Item.505}{}}
\pbs@newkey{pbs@last@page}{113}
\@writefile{toc}{\contentsline {section}{\numberline {10.4}The Cross Product}{601}{section.10.4}}
\newlabel{sec:cross_product}{{10.4}{601}{The Cross Product}{section.10.4}{}}
\newlabel{def:cross_product}{{10.4.1}{601}{The Cross Product}{definitioncounter.10.4.1}{}}
\pgfsyspdfmark {pgfid215}{4474142}{24851042}
\newlabel{ex_crossp1}{{10.4.1}{601}{The Cross Product}{examplecounter.10.4.1}{}}
\newlabel{eex_crossp1}{{10.4.1}{601}{The Cross Product}{examplecounter.10.4.1}{}}
\pgfsyspdfmark {pgfid216}{25288742}{13422428}
\pbs@newkey{pbs@last@page}{114}
\pgfsyspdfmark {pgfid220}{14288487}{23459463}
\newlabel{ex_crossp2}{{10.4.2}{602}{The Cross Product}{examplecounter.10.4.2}{}}
\pgfsyspdfmark {pgfid221}{19793511}{23295623}
\pbs@newkey{pbs@last@page}{115}
\newlabel{eex_crossp2}{{10.4.1}{603}{The Cross Product}{examplecounter.10.4.2}{}}
\pgfsyspdfmark {pgfid222}{15072712}{36828515}
\newlabel{thm:cross_prod_prop}{{10.4.1}{603}{The Cross Product}{theoremcounter.10.4.1}{}}
\pbs@newkey{pbs@last@page}{116}
\newlabel{note:crossp}{{10.4.2}{604}{The Cross Product}{examplecounter.10.4.3}{}}
\newlabel{thm:cross_product}{{10.4.2}{604}{The Cross Product}{theoremcounter.10.4.2}{}}
\pgfsyspdfmark {pgfid225}{14288487}{15945564}
\newlabel{ex_crossp3}{{10.4.3}{604}{The Cross Product}{examplecounter.10.4.3}{}}
\pgfsyspdfmark {pgfid226}{19793511}{15781724}
\pbs@newkey{pbs@last@page}{117}
\@writefile{lof}{\contentsline {figure}{\numberline {10.4.1}{\ignorespaces Illustrating the Right Hand Rule of the cross product.\relax }}{605}{figure.caption.96}}
\newlabel{fig:crossp_rhr}{{10.4.1}{605}{Illustrating the Right Hand Rule of the cross product.\relax }{figure.caption.96}{}}
\newlabel{eex_crossp3}{{10.4.2}{605}{The Cross Product}{examplecounter.10.4.3}{}}
\pgfsyspdfmark {pgfid227}{17049032}{32296796}
\pbs@newkey{pbs@last@page}{118}
\@writefile{lof}{\contentsline {figure}{\numberline {10.4.2}{\ignorespaces Using the cross product to find the area of a parallelogram.\relax }}{606}{figure.caption.97}}
\newlabel{fig:crossp_parallelogram}{{10.4.2}{606}{Using the cross product to find the area of a parallelogram.\relax }{figure.caption.97}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {10.4.3}{\ignorespaces Sketching the parallelograms in Example \ref {ex_crossp4}.\relax }}{606}{figure.caption.98}}
\newlabel{fig:crossp4}{{10.4.3}{606}{Sketching the parallelograms in Example \ref {ex_crossp4}.\relax }{figure.caption.98}{}}
\newlabel{eq:crossp1}{{10.4}{606}{The Cross Product}{equation.10.4.4}{}}
\pgfsyspdfmark {pgfid228}{14288487}{36160816}
\newlabel{ex_crossp4}{{10.4.4}{606}{The Cross Product}{examplecounter.10.4.4}{}}
\newlabel{eex_crossp4}{{10.4.2}{606}{The Cross Product}{Item.533}{}}
\pgfsyspdfmark {pgfid229}{14550631}{16568156}
\pbs@newkey{pbs@last@page}{119}
\@writefile{lof}{\contentsline {figure}{\numberline {10.4.4}{\ignorespaces Finding the area of a triangle in Example \ref {ex_crossp5}.\relax }}{607}{figure.caption.99}}
\newlabel{fig:crossp5}{{10.4.4}{607}{Finding the area of a triangle in Example \ref {ex_crossp5}.\relax }{figure.caption.99}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {10.4.5}{\ignorespaces A parallelepiped is the three dimensional analogue to the parallelogram.\relax }}{607}{figure.caption.100}}
\newlabel{fig:crossp_parallelepiped}{{10.4.5}{607}{A parallelepiped is the three dimensional analogue to the parallelogram.\relax }{figure.caption.100}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {10.4.6}{\ignorespaces A parallelepiped in Example \ref {ex_crossp6}.\relax }}{607}{figure.caption.101}}
\newlabel{fig:crossp6}{{10.4.6}{607}{A parallelepiped in Example \ref {ex_crossp6}.\relax }{figure.caption.101}{}}
\pgfsyspdfmark {pgfid230}{4474142}{46871347}
\newlabel{ex_crossp5}{{10.4.5}{607}{The Cross Product}{examplecounter.10.4.5}{}}
\newlabel{eex_crossp5}{{10.4.2}{607}{The Cross Product}{figure.caption.98}{}}
\pgfsyspdfmark {pgfid231}{19587592}{34124716}
\newlabel{eq:crossp2}{{10.5}{607}{The Cross Product}{equation.10.4.5}{}}
\pgfsyspdfmark {pgfid232}{4474142}{21005158}
\newlabel{ex_crossp6}{{10.4.6}{607}{The Cross Product}{examplecounter.10.4.6}{}}
\newlabel{eex_crossp6}{{10.4.2}{607}{The Cross Product}{examplecounter.10.4.6}{}}
\pgfsyspdfmark {pgfid233}{18829298}{14995292}
\pbs@newkey{pbs@last@page}{120}
\@writefile{lof}{\contentsline {figure}{\numberline {10.4.7}{\ignorespaces Showing a force being applied to a lever in Example \ref {ex_crossp7}.\relax }}{608}{figure.caption.102}}
\newlabel{fig:crossp7}{{10.4.7}{608}{Showing a force being applied to a lever in Example \ref {ex_crossp7}.\relax }{figure.caption.102}{}}
\newlabel{eq:crossp3}{{10.6}{608}{The Cross Product}{equation.10.4.6}{}}
\pgfsyspdfmark {pgfid234}{14288487}{33758520}
\newlabel{ex_crossp7}{{10.4.7}{608}{The Cross Product}{examplecounter.10.4.7}{}}
\pgfsyspdfmark {pgfid235}{19793511}{33594680}
\pbs@newkey{pbs@last@page}{121}
\newlabel{eex_crossp7}{{10.4.2}{609}{The Cross Product}{Item.537}{}}
\pgfsyspdfmark {pgfid236}{4736286}{24293252}
\pbs@newkey{pbs@last@page}{122}
\pbs@newkey{pbs@last@page}{123}
\pbs@newkey{pbs@last@page}{124}
\@writefile{lof}{\contentsline {figure}{\numberline {10.5.2}{\ignorespaces Defining a line in space.\relax }}{612}{figure.caption.104}}
\newlabel{fig:lines_intro}{{10.5.2}{612}{Defining a line in space.\relax }{figure.caption.104}{}}
\@writefile{toc}{\contentsline {section}{\numberline {10.5}Lines}{612}{section.10.5}}
\newlabel{sec:lines}{{10.5}{612}{Lines}{section.10.5}{}}
\newlabel{eq:lines1}{{10.7}{612}{Lines}{equation.10.5.7}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {10.5.1}{\ignorespaces Understanding the vector equation of a line.\relax }}{612}{figure.caption.103}}
\newlabel{fig:lines_eq}{{10.5.1}{612}{Understanding the vector equation of a line.\relax }{figure.caption.103}{}}
\pbs@newkey{pbs@last@page}{125}
\pbs@newkey{pbs@last@page}{126}
\@writefile{lof}{\contentsline {figure}{\numberline {10.5.3}{\ignorespaces Graphing a line in Example \ref {ex_lines1}.\relax }}{614}{figure.caption.105}}
\newlabel{fig:lines1}{{10.5.3}{614}{Graphing a line in Example \ref {ex_lines1}.\relax }{figure.caption.105}{}}
\newlabel{def:lines}{{10.5.1}{614}{Lines}{definitioncounter.10.5.1}{}}
\pgfsyspdfmark {pgfid239}{14288487}{32683463}
\newlabel{ex_lines1}{{10.5.1}{614}{Lines}{examplecounter.10.5.1}{}}
\pgfsyspdfmark {pgfid240}{19793511}{32519623}
\pbs@newkey{pbs@last@page}{127}
\@writefile{lof}{\contentsline {figure}{\numberline {10.5.4}{\ignorespaces A graph of the line in Example \ref {ex_lines6}.\relax }}{615}{figure.caption.106}}
\newlabel{fig:lines6}{{10.5.4}{615}{A graph of the line in Example \ref {ex_lines6}.\relax }{figure.caption.106}{}}
\newlabel{eex_lines1}{{10.5.1}{615}{Lines}{figure.caption.105}{}}
\pgfsyspdfmark {pgfid241}{6410632}{40906596}
\pgfsyspdfmark {pgfid242}{4474142}{39480654}
\newlabel{ex_lines6}{{10.5.2}{615}{Lines}{examplecounter.10.5.2}{}}
\newlabel{eex_lines6}{{10.5.1}{615}{Lines}{examplecounter.10.5.2}{}}
\pgfsyspdfmark {pgfid243}{8118792}{24518327}
\pbs@newkey{pbs@last@page}{128}
\@writefile{lof}{\contentsline {figure}{\numberline {10.5.5}{\ignorespaces Sketching the lines from Example \ref {ex_lines2}.\relax }}{616}{figure.caption.107}}
\newlabel{fig:lines2}{{10.5.5}{616}{Sketching the lines from Example \ref {ex_lines2}.\relax }{figure.caption.107}{}}
\pgfsyspdfmark {pgfid244}{14288487}{45298483}
\newlabel{ex_lines2}{{10.5.3}{616}{Lines}{examplecounter.10.5.3}{}}
\newlabel{eex_lines2}{{10.5.1}{616}{Lines}{figure.caption.106}{}}
\pgfsyspdfmark {pgfid245}{33015059}{20824023}
\pgfsyspdfmark {pgfid246}{14288487}{19414999}
\newlabel{ex_lines3}{{10.5.4}{616}{Lines}{examplecounter.10.5.4}{}}
\pgfsyspdfmark {pgfid247}{19793511}{19251159}
\pbs@newkey{pbs@last@page}{129}
\@writefile{lof}{\contentsline {figure}{\numberline {10.5.6}{\ignorespaces Graphing the lines in Example \ref {ex_lines3}.\relax }}{617}{figure.caption.108}}
\newlabel{fig:lines3}{{10.5.6}{617}{Graphing the lines in Example \ref {ex_lines3}.\relax }{figure.caption.108}{}}
\newlabel{eex_lines3}{{10.5.1}{617}{Lines}{figure.caption.107}{}}
\pgfsyspdfmark {pgfid248}{6914632}{13422428}
\pbs@newkey{pbs@last@page}{130}
\@writefile{lof}{\contentsline {figure}{\numberline {10.5.7}{\ignorespaces Establishing the distance from a point to a line.\relax }}{618}{figure.caption.109}}
\newlabel{fig:lines_dist1}{{10.5.7}{618}{Establishing the distance from a point to a line.\relax }{figure.caption.109}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {10.5.8}{\ignorespaces Establishing the distance between lines.\relax }}{618}{figure.caption.110}}
\newlabel{fig:lines_dist2}{{10.5.8}{618}{Establishing the distance between lines.\relax }{figure.caption.110}{}}
\newlabel{eq:lines2}{{10.8}{618}{Lines}{equation.10.5.8}{}}
\pbs@newkey{pbs@last@page}{131}
\newlabel{idea:line_distance}{{10.5.1}{619}{Lines}{keyideacounter.10.5.1}{}}
\pgfsyspdfmark {pgfid250}{4474142}{33916391}
\newlabel{ex_lines4}{{10.5.5}{619}{Lines}{examplecounter.10.5.5}{}}
\newlabel{eex_lines4}{{10.5.1}{619}{Lines}{examplecounter.10.5.5}{}}
\pgfsyspdfmark {pgfid251}{20591151}{21600430}
\pgfsyspdfmark {pgfid252}{4474142}{20191406}
\newlabel{ex_lines5}{{10.5.6}{619}{Lines}{examplecounter.10.5.6}{}}
\pgfsyspdfmark {pgfid253}{9979166}{20027566}
\pbs@newkey{pbs@last@page}{132}
\newlabel{eex_lines5}{{10.5.1}{620}{Lines}{examplecounter.10.5.6}{}}
\pgfsyspdfmark {pgfid254}{26913297}{36399480}
\pbs@newkey{pbs@last@page}{133}
\newlabel{10_05_ex_30}{{30}{621}{Lines}{Item.616}{}}
\pbs@newkey{pbs@last@page}{134}
\pbs@newkey{pbs@last@page}{135}
\@writefile{lof}{\contentsline {figure}{\numberline {10.6.1}{\ignorespaces Illustrating defining a plane with a sheet of cardboard and a nail.\relax }}{623}{figure.caption.111}}
\newlabel{fig:planes_intro}{{10.6.1}{623}{Illustrating defining a plane with a sheet of cardboard and a nail.\relax }{figure.caption.111}{}}
\@writefile{toc}{\contentsline {section}{\numberline {10.6}Planes}{623}{section.10.6}}
\newlabel{sec:planes}{{10.6}{623}{Planes}{section.10.6}{}}
\newlabel{eq:planes1}{{10.9}{623}{Planes}{equation.10.6.9}{}}
\newlabel{eq:planes2}{{10.10}{623}{Planes}{equation.10.6.10}{}}
\newlabel{eq:planes3}{{10.11}{623}{Planes}{equation.10.6.11}{}}
\pbs@newkey{pbs@last@page}{136}
\@writefile{lof}{\contentsline {figure}{\numberline {10.6.2}{\ignorespaces Sketching the plane in Example \ref {ex_planes1}.\relax }}{624}{figure.caption.112}}
\newlabel{fig:planes1}{{10.6.2}{624}{Sketching the plane in Example \ref {ex_planes1}.\relax }{figure.caption.112}{}}
\newlabel{def:planes}{{10.6.1}{624}{Planes}{definitioncounter.10.6.1}{}}
\pgfsyspdfmark {pgfid256}{14288487}{29966573}
\newlabel{ex_planes1}{{10.6.1}{624}{Planes}{examplecounter.10.6.1}{}}
\newlabel{eex_planes1}{{10.6.1}{624}{Planes}{examplecounter.10.6.1}{}}
\pgfsyspdfmark {pgfid257}{25039163}{19745728}
\pgfsyspdfmark {pgfid258}{14288487}{14372700}
\newlabel{ex_planes2}{{10.6.2}{624}{Planes}{examplecounter.10.6.2}{}}
\pgfsyspdfmark {pgfid259}{19793511}{14208860}
\pbs@newkey{pbs@last@page}{137}
\@writefile{lof}{\contentsline {figure}{\numberline {10.6.3}{\ignorespaces Sketching the plane in Example \ref {ex_planes2}.\relax }}{625}{figure.caption.113}}
\newlabel{fig:planes2}{{10.6.3}{625}{Sketching the plane in Example \ref {ex_planes2}.\relax }{figure.caption.113}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {10.6.4}{\ignorespaces The line and plane in Example \ref {ex_planes3}.\relax }}{625}{figure.caption.114}}
\newlabel{fig:planes3}{{10.6.4}{625}{The line and plane in Example \ref {ex_planes3}.\relax }{figure.caption.114}{}}
\newlabel{eex_planes2}{{10.6.1}{625}{Planes}{figure.caption.112}{}}
\pgfsyspdfmark {pgfid260}{6956338}{23206821}
\pgfsyspdfmark {pgfid261}{4474142}{21797797}
\newlabel{ex_planes3}{{10.6.3}{625}{Planes}{examplecounter.10.6.3}{}}
\newlabel{eex_planes3}{{10.6.1}{625}{Planes}{examplecounter.10.6.3}{}}
\pgfsyspdfmark {pgfid262}{17948018}{13422428}
\pbs@newkey{pbs@last@page}{138}
\@writefile{lof}{\contentsline {figure}{\numberline {10.6.5}{\ignorespaces Graphing the planes and their line of intersection in Example \ref {ex_planes4}.\relax }}{626}{figure.caption.115}}
\newlabel{fig:planes4}{{10.6.5}{626}{Graphing the planes and their line of intersection in Example \ref {ex_planes4}.\relax }{figure.caption.115}{}}
\pgfsyspdfmark {pgfid263}{14288487}{46871347}
\newlabel{ex_planes4}{{10.6.4}{626}{Planes}{examplecounter.10.6.4}{}}
\newlabel{eex_planes4}{{10.6.1}{626}{Planes}{figure.caption.114}{}}
\pgfsyspdfmark {pgfid264}{27856123}{19713884}
\pgfsyspdfmark {pgfid265}{14288487}{18304860}
\newlabel{ex_planes5}{{10.6.5}{626}{Planes}{examplecounter.10.6.5}{}}
\pgfsyspdfmark {pgfid266}{19793511}{18141020}
\pbs@newkey{pbs@last@page}{139}
\@writefile{lof}{\contentsline {figure}{\numberline {10.6.6}{\ignorespaces Illustrating the intersection of a line and a plane in Example \ref {ex_planes5}.\relax }}{627}{figure.caption.116}}
\newlabel{fig:planes5}{{10.6.6}{627}{Illustrating the intersection of a line and a plane in Example \ref {ex_planes5}.\relax }{figure.caption.116}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {10.6.7}{\ignorespaces Illustrating finding the distance from a point to a plane.\relax }}{627}{figure.caption.117}}
\newlabel{fig:planes_dist}{{10.6.7}{627}{Illustrating finding the distance from a point to a plane.\relax }{figure.caption.117}{}}
\newlabel{eex_planes5}{{10.6.1}{627}{Planes}{figure.caption.115}{}}
\pgfsyspdfmark {pgfid267}{18352498}{28315645}
\newlabel{eq:plane_dist}{{10.12}{627}{Planes}{equation.10.6.12}{}}
\pbs@newkey{pbs@last@page}{140}
\newlabel{idea:planes_dist}{{10.6.1}{628}{Planes}{keyideacounter.10.6.1}{}}
\pgfsyspdfmark {pgfid269}{14288487}{38378091}
\newlabel{ex_planes6}{{10.6.6}{628}{Planes}{examplecounter.10.6.6}{}}
\newlabel{eex_planes6}{{10.6.1}{628}{Planes}{examplecounter.10.6.6}{}}
\pgfsyspdfmark {pgfid270}{15533671}{25218908}
\pbs@newkey{pbs@last@page}{141}
\pbs@newkey{pbs@last@page}{142}
\pbs@newkey{pbs@last@page}{143}
\@writefile{lof}{\contentsline {figure}{\numberline {11.1.1}{\ignorespaces Sketching the graph of a vector--valued function.\relax }}{631}{figure.caption.118}}
\newlabel{fig:vvfintro1}{{11.1.1}{631}{Sketching the graph of a vector--valued function.\relax }{figure.caption.118}{}}
\@writefile{toc}{\thispagestyle {empty}}
\@writefile{toc}{\enlargethispage {7\baselineskip }}
\@writefile{toc}{\contentsline {chapter}{\numberline {11}Vector Valued Functions}{631}{chapter.11}}
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\newlabel{chap:vvf}{{11}{631}{Vector Valued Functions}{chapter.11}{}}
\@writefile{toc}{\contentsline {section}{\numberline {11.1}Vector--Valued Functions}{631}{section.11.1}}
\newlabel{sec:vvf}{{11.1}{631}{Vector--Valued Functions}{section.11.1}{}}
\newlabel{def:vvf}{{11.1.1}{631}{Vector--Valued Functions}{definitioncounter.11.1.1}{}}
\pbs@newkey{pbs@last@page}{144}
\@writefile{lof}{\contentsline {figure}{\numberline {11.1.2}{\ignorespaces Sketching the vector--valued function of Example \ref {ex_vvf1}.\relax }}{632}{figure.caption.119}}
\newlabel{fig:vvf1}{{11.1.2}{632}{Sketching the vector--valued function of Example \ref {ex_vvf1}.\relax }{figure.caption.119}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {11.1.3}{\ignorespaces The graph of $\mathaccentV {vec}17Er(t)$ in Example \ref {ex_vvf2}.\relax }}{632}{figure.caption.120}}
\newlabel{fig:vvf2}{{11.1.3}{632}{The graph of $\vec r(t)$ in Example \ref {ex_vvf2}.\relax }{figure.caption.120}{}}
\pgfsyspdfmark {pgfid272}{14288487}{46871347}
\newlabel{ex_vvf1}{{11.1.1}{632}{Vector--Valued Functions}{examplecounter.11.1.1}{}}
\newlabel{eex_vvf1}{{11.1.1}{632}{Vector--Valued Functions}{examplecounter.11.1.1}{}}
\pgfsyspdfmark {pgfid273}{27313621}{41123124}
\pgfsyspdfmark {pgfid274}{14288487}{39544354}
\newlabel{ex_vvf2}{{11.1.2}{632}{Vector--Valued Functions}{examplecounter.11.1.2}{}}
\newlabel{eex_vvf2}{{11.1.1}{632}{Vector--Valued Functions}{examplecounter.11.1.2}{}}
\pgfsyspdfmark {pgfid275}{27312763}{32132881}
\newlabel{def:vvf_algebra}{{11.1.2}{632}{Vector--Valued Functions}{definitioncounter.11.1.2}{}}
\pgfsyspdfmark {pgfid277}{14288487}{15945564}
\newlabel{ex_vvf3}{{11.1.3}{632}{Vector--Valued Functions}{examplecounter.11.1.3}{}}
\pgfsyspdfmark {pgfid278}{19793511}{15781724}
\pbs@newkey{pbs@last@page}{145}
\@writefile{lof}{\contentsline {figure}{\numberline {11.1.4}{\ignorespaces Graphing the functions in Example \ref {ex_vvf3}.\relax }}{633}{figure.caption.122}}
\newlabel{fig:vvf3}{{11.1.4}{633}{Graphing the functions in Example \ref {ex_vvf3}.\relax }{figure.caption.122}{}}
\newlabel{eex_vvf3}{{11.1.2}{633}{Vector--Valued Functions}{figure.caption.120}{}}
\pgfsyspdfmark {pgfid279}{22323878}{33057071}
\pgfsyspdfmark {pgfid280}{4474142}{31577774}
\newlabel{ex_vvf4}{{11.1.4}{633}{Vector--Valued Functions}{examplecounter.11.1.4}{}}
\pgfsyspdfmark {pgfid281}{9979166}{31413934}
\@writefile{lof}{\contentsline {figure}{\numberline {11.1.5}{\ignorespaces Tracing a cycloid.\relax }}{633}{figure.caption.121}}
\newlabel{fig:vvf4}{{11.1.5}{633}{Tracing a cycloid.\relax }{figure.caption.121}{}}
\pbs@newkey{pbs@last@page}{146}
\@writefile{lof}{\contentsline {figure}{\numberline {11.1.6}{\ignorespaces The cycloid in Example \ref {ex_vvf4}.\relax }}{634}{figure.caption.123}}
\newlabel{fig:vvfa}{{11.1.6}{634}{The cycloid in Example \ref {ex_vvf4}.\relax }{figure.caption.123}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {11.1.7}{\ignorespaces Graphing the displacement of a position function in Example \ref {ex_vvf5}.\relax }}{634}{figure.caption.124}}
\newlabel{fig:vvf5}{{11.1.7}{634}{Graphing the displacement of a position function in Example \ref {ex_vvf5}.\relax }{figure.caption.124}{}}
\newlabel{eex_vvf4}{{11.1.2}{634}{Vector--Valued Functions}{figure.caption.122}{}}
\pgfsyspdfmark {pgfid282}{33562478}{44271891}
\newlabel{def:displacement}{{11.1.3}{634}{Vector--Valued Functions}{definitioncounter.11.1.3}{}}
\pgfsyspdfmark {pgfid284}{14288487}{26545088}
\newlabel{ex_vvf5}{{11.1.5}{634}{Vector--Valued Functions}{examplecounter.11.1.5}{}}
\newlabel{eex_vvf5}{{11.1.3}{634}{Vector--Valued Functions}{examplecounter.11.1.5}{}}
\pgfsyspdfmark {pgfid285}{22751697}{19003772}
\pbs@newkey{pbs@last@page}{147}
\newlabel{def:av_rate_of_change_vect}{{11.1.4}{635}{Vector--Valued Functions}{definitioncounter.11.1.4}{}}
\pgfsyspdfmark {pgfid287}{4474142}{35789692}
\newlabel{ex_vvf6}{{11.1.6}{635}{Vector--Valued Functions}{examplecounter.11.1.6}{}}
\newlabel{eex_vvf6}{{11.1.4}{635}{Vector--Valued Functions}{examplecounter.11.1.6}{}}
\pgfsyspdfmark {pgfid288}{21557763}{19976813}
\pbs@newkey{pbs@last@page}{148}
\pbs@newkey{pbs@last@page}{149}
\@writefile{toc}{\contentsline {section}{\numberline {11.2}Calculus and Vector--Valued Functions}{637}{section.11.2}}
\newlabel{sec:vvf_calc}{{11.2}{637}{Calculus and Vector--Valued Functions}{section.11.2}{}}
\newlabel{def:vvf_limit}{{11.2.1}{637}{Calculus and Vector--Valued Functions}{definitioncounter.11.2.1}{}}
\newlabel{thm:vvf_limit}{{11.2.1}{637}{Calculus and Vector--Valued Functions}{theoremcounter.11.2.1}{}}
\pbs@newkey{pbs@last@page}{150}
\pgfsyspdfmark {pgfid291}{14288487}{46084915}
\newlabel{ex_vvflimit1}{{11.2.1}{638}{Calculus and Vector--Valued Functions}{examplecounter.11.2.1}{}}
\newlabel{eex_vvflimit1}{{11.2.1}{638}{Calculus and Vector--Valued Functions}{examplecounter.11.2.1}{}}
\pgfsyspdfmark {pgfid292}{15533671}{39966991}
\newlabel{def:vvf_continuity}{{11.2.2}{638}{Calculus and Vector--Valued Functions}{definitioncounter.11.2.2}{}}
\newlabel{thm:vvf_continuity}{{11.2.2}{638}{Calculus and Vector--Valued Functions}{theoremcounter.11.2.2}{}}
\pgfsyspdfmark {pgfid295}{14288487}{21356682}
\newlabel{ex_vvflimit2}{{11.2.2}{638}{Calculus and Vector--Valued Functions}{examplecounter.11.2.2}{}}
\newlabel{eex_vvflimit2}{{11.2.2}{638}{Calculus and Vector--Valued Functions}{examplecounter.11.2.2}{}}
\pgfsyspdfmark {pgfid296}{20118303}{13422428}
\pbs@newkey{pbs@last@page}{151}
\@writefile{lof}{\contentsline {figure}{\numberline {11.2.1}{\ignorespaces Illustrating displacement, leading to an understanding of the derivative of vector--valued functions.\relax }}{639}{figure.caption.125}}
\newlabel{fig:vvfderiv_intro}{{11.2.1}{639}{Illustrating displacement, leading to an understanding of the derivative of vector--valued functions.\relax }{figure.caption.125}{}}
\newlabel{def:vvf_derivative}{{11.2.3}{639}{Calculus and Vector--Valued Functions}{definitioncounter.11.2.3}{}}
\pbs@newkey{pbs@last@page}{152}
\@writefile{lof}{\contentsline {figure}{\numberline {11.2.2}{\ignorespaces Graphing the derivative of a vector--valued function in Example \ref {ex_vvflimit3}.\relax }}{640}{figure.caption.126}}
\newlabel{fig:vvflimit3}{{11.2.2}{640}{Graphing the derivative of a vector--valued function in Example \ref {ex_vvflimit3}.\relax }{figure.caption.126}{}}
\newlabel{thm:vvf_deriv}{{11.2.3}{640}{Calculus and Vector--Valued Functions}{theoremcounter.11.2.3}{}}
\pgfsyspdfmark {pgfid299}{14288487}{32641602}
\newlabel{ex_vvflimit3}{{11.2.3}{640}{Calculus and Vector--Valued Functions}{examplecounter.11.2.3}{}}
\newlabel{eex_vvflimit3}{{11.2.3}{640}{Calculus and Vector--Valued Functions}{Item.700}{}}
\pgfsyspdfmark {pgfid300}{14550631}{15045186}
\pbs@newkey{pbs@last@page}{153}
\@writefile{lof}{\contentsline {figure}{\numberline {11.2.3}{\ignorespaces Viewing a vector--valued function, and its derivative at one point, from two different perspectives.\relax }}{641}{figure.caption.127}}
\newlabel{fig:vvflimit4}{{11.2.3}{641}{Viewing a vector--valued function, and its derivative at one point, from two different perspectives.\relax }{figure.caption.127}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {11.2.4}{\ignorespaces Graphing a curve in space with its tangent line.\relax }}{641}{figure.caption.128}}
\newlabel{fig:vvfderiv1}{{11.2.4}{641}{Graphing a curve in space with its tangent line.\relax }{figure.caption.128}{}}
\pgfsyspdfmark {pgfid301}{4474142}{46871347}
\newlabel{ex_vvflimit4}{{11.2.4}{641}{Calculus and Vector--Valued Functions}{examplecounter.11.2.4}{}}
\newlabel{eex_vvflimit4}{{11.2.3}{641}{Calculus and Vector--Valued Functions}{examplecounter.11.2.4}{}}
\pgfsyspdfmark {pgfid302}{7288776}{41098871}
\newlabel{def:vector_tangent}{{11.2.4}{641}{Calculus and Vector--Valued Functions}{definitioncounter.11.2.4}{}}
\pgfsyspdfmark {pgfid304}{4474142}{23334289}
\newlabel{ex_vvfderiv1}{{11.2.5}{641}{Calculus and Vector--Valued Functions}{examplecounter.11.2.5}{}}
\newlabel{eex_vvfderiv1}{{11.2.4}{641}{Calculus and Vector--Valued Functions}{examplecounter.11.2.5}{}}
\pgfsyspdfmark {pgfid305}{24282918}{14208860}
\pbs@newkey{pbs@last@page}{154}
\@writefile{lof}{\contentsline {figure}{\numberline {11.2.5}{\ignorespaces Graphing $\mathaccentV {vec}17Er(t)$ and its tangent line in Example \ref {ex_vvfderiv3}.\relax }}{642}{figure.caption.129}}
\newlabel{fig:vvfderiv3}{{11.2.5}{642}{Graphing $\vec r(t)$ and its tangent line in Example \ref {ex_vvfderiv3}.\relax }{figure.caption.129}{}}
\pgfsyspdfmark {pgfid306}{14288487}{45543930}
\newlabel{ex_vvfderiv3}{{11.2.6}{642}{Calculus and Vector--Valued Functions}{examplecounter.11.2.6}{}}
\newlabel{eex_vvfderiv3}{{11.2.4}{642}{Calculus and Vector--Valued Functions}{examplecounter.11.2.6}{}}
\pgfsyspdfmark {pgfid307}{22347217}{29418936}
\newlabel{def:vector_smooth}{{11.2.5}{642}{Calculus and Vector--Valued Functions}{definitioncounter.11.2.5}{}}
\pbs@newkey{pbs@last@page}{155}
\@writefile{lof}{\contentsline {figure}{\numberline {11.2.6}{\ignorespaces Graphing $\mathaccentV {vec}17Er(t)$ and $\mathaccentV {vec}17Eu(t)$ in Example \ref {ex_vvfderiv2}.\relax }}{643}{figure.caption.130}}
\newlabel{fig:vvfderiv2a}{{11.2.6}{643}{Graphing $\vec r(t)$ and $\vec u(t)$ in Example \ref {ex_vvfderiv2}.\relax }{figure.caption.130}{}}
\newlabel{thm:vvf_deriv_prop}{{11.2.4}{643}{Calculus and Vector--Valued Functions}{theoremcounter.11.2.4}{}}
\pgfsyspdfmark {pgfid310}{4474142}{29848405}
\newlabel{ex_vvfderiv2}{{11.2.7}{643}{Calculus and Vector--Valued Functions}{examplecounter.11.2.7}{}}
\pgfsyspdfmark {pgfid311}{9979166}{29684565}
\pbs@newkey{pbs@last@page}{156}
\@writefile{lof}{\contentsline {figure}{\numberline {11.2.7}{\ignorespaces Graphing some of the derivatives of $\mathaccentV {vec}17Eu(t)$ in Example \ref {ex_vvfderiv2}.\relax }}{644}{figure.caption.131}}
\newlabel{fig:vvfderiv2b}{{11.2.7}{644}{Graphing some of the derivatives of $\vec u(t)$ in Example \ref {ex_vvfderiv2}.\relax }{figure.caption.131}{}}
\newlabel{eex_vvfderiv2}{{11.2.4}{644}{Calculus and Vector--Valued Functions}{figure.caption.130}{}}
\pgfsyspdfmark {pgfid312}{14550631}{16568156}
\pbs@newkey{pbs@last@page}{157}
\newlabel{thm:vects_of_constant_length}{{11.2.5}{645}{Calculus and Vector--Valued Functions}{theoremcounter.11.2.5}{}}
\pbs@newkey{pbs@last@page}{158}
\newlabel{def:vvf_integral}{{11.2.6}{646}{Calculus and Vector--Valued Functions}{definitioncounter.11.2.6}{}}
\newlabel{thm:vvf_integration}{{11.2.6}{646}{Calculus and Vector--Valued Functions}{theoremcounter.11.2.6}{}}
\pbs@newkey{pbs@last@page}{159}
\pgfsyspdfmark {pgfid316}{4474142}{46871347}
\newlabel{ex_vvfint1}{{11.2.8}{647}{Calculus and Vector--Valued Functions}{examplecounter.11.2.8}{}}
\newlabel{eex_vvfint1}{{11.2.6}{647}{Calculus and Vector--Valued Functions}{examplecounter.11.2.8}{}}