(*********************************************************************** Mathematica-Compatible Notebook This notebook can be used on any computer system with Mathematica 4.0, MathReader 4.0, or any compatible application. The data for the notebook starts with the line containing stars above. To get the notebook into a Mathematica-compatible application, do one of the following: * Save the data starting with the line of stars above into a file with a name ending in .nb, then open the file inside the application; * Copy the data starting with the line of stars above to the clipboard, then use the Paste menu command inside the application. Data for notebooks contains only printable 7-bit ASCII and can be sent directly in email or through ftp in text mode. Newlines can be CR, LF or CRLF (Unix, Macintosh or MS-DOS style). NOTE: If you modify the data for this notebook not in a Mathematica- compatible application, you must delete the line below containing the word CacheID, otherwise Mathematica-compatible applications may try to use invalid cache data. For more information on notebooks and Mathematica-compatible applications, contact Wolfram Research: web: http://www.wolfram.com email: info@wolfram.com phone: +1-217-398-0700 (U.S.) Notebook reader applications are available free of charge from Wolfram Research. ***********************************************************************) (*CacheID: 232*) (*NotebookFileLineBreakTest NotebookFileLineBreakTest*) (*NotebookOptionsPosition[ 175657, 3415]*) (*NotebookOutlinePosition[ 176431, 3442]*) (* CellTagsIndexPosition[ 176387, 3438]*) (*WindowFrame->Normal*) Notebook[{ Cell[CellGroupData[{ Cell["\<\ Using Riemann Sums to Estimate Areas, Volumes, and Lengths of Arc\ \>", "Title", PageWidth->PaperWidth], Cell[TextData[StyleBox["Chapter 4, Sections 3 through 5, and\nChapter 5, \ Sections 1 and 3", FontFamily->"Arial", FontSize->16, FontWeight->"Bold"]], "Text", PageWidth->PaperWidth], Cell[BoxData[{ \(\(Off[General::spell];\)\), "\[IndentingNewLine]", \(\(Off[General::spell1];\)\[IndentingNewLine]\), "\[IndentingNewLine]", \(\(Clear[areas];\)\), "\[IndentingNewLine]", \(\(areas := Block[{}, \[IndentingNewLine]h = \((b - a)\)/n; \n\[CapitalDelta]A[ i_] = f[a + i*h]*h; \n Print["\", \[CapitalDelta]A[ i]]; \nrateList = Table[{a + i\ h, \[CapitalDelta]A[i]\/h}, {i, 0, n - 1}]; \[IndentingNewLine]Print[\*"\"\\"", \ \[CapitalDelta]A[i]\/h]; \n p0 = ListPlot[rateList, PlotStyle \[Rule] {RGBColor[0, 0, 1], PointSize[0.015]}, AxesLabel \[Rule] {\*"\"\<\!\(x\_i\)\>\"", \*"\"\<\!\(\ \[CapitalDelta]A\_i\/\[CapitalDelta]x\)\>\""}]; \n areaSum[k_] := \((\[Sum]\+\(i = 0\)\%\(k - 1\)N[\[CapitalDelta]A[ i]])\); \n arealist = Table[{a + k*h, areaSum[k]}, {k, 0, n}]; \n p1 = ListPlot[arealist, PlotRange \[Rule] All, PlotStyle \[Rule] {RGBColor[1, 0, 0], PointSize[0.0175]}, AxesLabel \[Rule] {\*"\"\<\!\(x\_k\)\>\"", \ \*"\"\<\!\(A\_total\)(k)\>\""}]; \[IndentingNewLine]A\_approx[x_] = Fit[arealist, fitlist, x]; \[IndentingNewLine]Print["\", A\_approx[x]]; \[IndentingNewLine]p2 = Plot[A\_approx[x], {x, a, a + n\ h}, PlotRange \[Rule] All, PlotStyle \[Rule] {RGBColor[0, 0, 1]}, AxesLabel \[Rule] {"\", \*"\"\<\!\(A\_approx\)[x]\>\""}, DisplayFunction \[Rule] Identity]; \[IndentingNewLine]Show[{p2, p1}, AxesLabel \[Rule] {"\", \*"\"\<\!\(A\_approx\)[x] & \!\ \(A\_total\)(k)\>\""}, DisplayFunction \[Rule] $DisplayFunction]; \n msecant = Table[{a + k\ h, \(areaSum[k + 1] - areaSum[k]\)\/h}, {k, 0, n - 1}]; \n p4 = ListPlot[msecant, PlotStyle \[Rule] {RGBColor[1, 0, 0], PointSize[0.02]}, AxesLabel \[Rule] {\*"\"\<\!\(x\_k\)\>\"", \*"\"\<\!\(m\_secant\ \)\>\""}, DisplayFunction \[Rule] Identity]; \n Show[{p4, p0}, AxesLabel \[Rule] {\*"\"\<\!\(x\_k\)\>\"", \*"\"\<\!\(\ \[CapitalDelta]A\_i\/\[CapitalDelta]x\) & \!\(m\_secant\)\>\""}, DisplayFunction \[Rule] $DisplayFunction];];\)\[IndentingNewLine]\ \), "\[IndentingNewLine]", \(\(Clear[volumes];\)\), "\[IndentingNewLine]", \(\(volumes := Block[{}, \[IndentingNewLine]h = \((b - a)\)/n; \n\[CapitalDelta]V[ i_] = \[Pi]\ f[a + i*h]\^2*h; \n Print["\", \[CapitalDelta]V[ i]]; \nrateList = Table[{a + i\ h, \[CapitalDelta]V[i]\/h}, {i, 0, n - 1}]; \[IndentingNewLine]Print[\*"\"\\"", \ \[CapitalDelta]V[i]\/h]; \n p0 = ListPlot[rateList, PlotStyle \[Rule] {RGBColor[0, 0, 1], PointSize[0.015]}, AxesLabel \[Rule] {\*"\"\<\!\(x\_i\)\>\"", \*"\"\<\!\(\ \[CapitalDelta]V\_i\/\[CapitalDelta]x\)\>\""}]; \n volumeSum[ k_] := \((\[Sum]\+\(i = 0\)\%\(k - 1\)N[\[CapitalDelta]V[ i]])\); \n volumelist = Table[{a + k*h, volumeSum[k]}, {k, 0, n}]; \n p1 = ListPlot[volumelist, PlotRange \[Rule] All, PlotStyle \[Rule] {RGBColor[1, 0, 0], PointSize[0.0175]}, AxesLabel \[Rule] {\*"\"\<\!\(x\_k\)\>\"", \ \*"\"\<\!\(V\_total\)(k)\>\""}]; \[IndentingNewLine]V\_approx[x_] = Fit[volumelist, fitlist, x]; \[IndentingNewLine]Print["\", V\_approx[x]]; \[IndentingNewLine]p2 = Plot[V\_approx[x], {x, a, a + n\ h}, PlotRange \[Rule] All, PlotStyle \[Rule] {RGBColor[0, 0, 1]}, AxesLabel \[Rule] {"\", \*"\"\<\!\(V\_approx\)[x]\>\""}, DisplayFunction \[Rule] Identity]; \[IndentingNewLine]Show[{p2, p1}, AxesLabel \[Rule] {"\", \*"\"\<\!\(V\_approx\)[x] & \!\ \(V\_total\)(k)\>\""}, DisplayFunction \[Rule] $DisplayFunction]; \n msecant = Table[{a + k\ h, \(volumeSum[k + 1] - volumeSum[k]\)\/h}, {k, 0, n - 1}]; \n p4 = ListPlot[msecant, PlotStyle \[Rule] {RGBColor[1, 0, 0], PointSize[0.02]}, AxesLabel \[Rule] {\*"\"\<\!\(x\_k\)\>\"", \*"\"\<\!\(m\_secant\ \)\>\""}, DisplayFunction \[Rule] Identity]; \n Show[{p4, p0}, AxesLabel \[Rule] {\*"\"\<\!\(x\_k\)\>\"", \*"\"\<\!\(\ \[CapitalDelta]V\_i\/\[CapitalDelta]x\) & \!\(m\_secant\)\>\""}, DisplayFunction \[Rule] $DisplayFunction];];\)\[IndentingNewLine]\ \), "\[IndentingNewLine]", \(\(Clear[lengths];\)\), "\[IndentingNewLine]", \(\(lengths := Block[{}, \[IndentingNewLine]h = \((b - a)\)/n; \n\[CapitalDelta]L[ i_] = \@\(1 + \((\(f[a + i\ h + h] - f[a + i\ h]\)\/h)\)\^2\)* h; \nPrint["\", \ \[CapitalDelta]L[i]]; \n rateList = Table[{a + i\ h, \[CapitalDelta]L[i]\/h}, {i, 0, n - 1}]; \[IndentingNewLine]Print[\*"\"\\"", \ \[CapitalDelta]L[i]\/h]; \n p0 = ListPlot[rateList, PlotStyle \[Rule] {RGBColor[0, 0, 1], PointSize[0.015]}, AxesLabel \[Rule] {\*"\"\<\!\(x\_i\)\>\"", \*"\"\<\!\(\ \[CapitalDelta]L\_i\/\[CapitalDelta]x\)\>\""}]; \n lengthSum[ k_] := \((\[Sum]\+\(i = 0\)\%\(k - 1\)N[\[CapitalDelta]L[ i]])\); \n lengthlist = Table[{a + k*h, lengthSum[k]}, {k, 0, n}]; \n p1 = ListPlot[lengthlist, PlotRange \[Rule] All, PlotStyle \[Rule] {RGBColor[1, 0, 0], PointSize[0.0175]}, AxesLabel \[Rule] {\*"\"\<\!\(x\_k\)\>\"", \ \*"\"\<\!\(L\_total\)(k)\>\""}]; \[IndentingNewLine]L\_exact[ x_] = \[Integral]\_a\%x\(\@\( 1 + \(f\^\[Prime]\)[u]\^2\)\) \[DifferentialD]u // TrigToExp; \[IndentingNewLine]Print["\", L\_exact[x]]; \[IndentingNewLine]p2 = Plot[L\_exact[x], {x, a, a + n\ h}, PlotRange \[Rule] All, PlotStyle \[Rule] {RGBColor[0, 0, 1]}, AxesLabel \[Rule] {"\", \*"\"\<\!\(L\_exact\)[x]\>\""}, DisplayFunction \[Rule] Identity]; \[IndentingNewLine]Show[{p2, p1}, AxesLabel \[Rule] {"\", \*"\"\<\!\(L\_exact\)[x] & \ \!\(L\_total\)(k)\>\""}, DisplayFunction \[Rule] $DisplayFunction]; \n msecant = Table[{a + k\ h, \(lengthSum[k + 1] - lengthSum[k]\)\/h}, {k, 0, n - 1}]; \n p4 = ListPlot[msecant, PlotStyle \[Rule] {RGBColor[1, 0, 0], PointSize[0.02]}, AxesLabel \[Rule] {\*"\"\<\!\(x\_k\)\>\"", \*"\"\<\!\(m\_secant\ \)\>\""}, DisplayFunction \[Rule] Identity]; \n Show[{p4, p0}, AxesLabel \[Rule] {\*"\"\<\!\(x\_k\)\>\"", \*"\"\<\!\(\ \[CapitalDelta]L\_i\/\[CapitalDelta]x\) & \!\(m\_secant\)\>\""}, DisplayFunction \[Rule] $DisplayFunction];];\)\)}], "Input", Editable->False, PageWidth->PaperWidth, CellOpen->False, InitializationCell->True], Cell[CellGroupData[{ Cell["Introduction", "Section", PageWidth->PaperWidth], Cell[TextData[{ "OBJECTIVE: Use Riemann sums to approximate areas, volumes, and lengths of \ arc. Construct accumulation functions, and see how the accumulated quantities \ converge on the antiderivative in the limit. \n\nIn this module, we explore \ the use of Riemann sums to estimate areas, volumes of revolution, and the \ length of a curve. We first write an expression for ", Cell[BoxData[ FormBox[ SubscriptBox[ StyleBox[ RowBox[{"\[CapitalDelta]", StyleBox["Q", FontSlant->"Italic"]}]], "i"], TraditionalForm]]], ", where ", StyleBox["Q", FontSlant->"Italic"], " is the quantity of interest (area, volume, or arc length); then we look \ at ", Cell[BoxData[ FormBox[ FractionBox[ SubscriptBox[ StyleBox[ RowBox[{"\[CapitalDelta]", StyleBox["Q", FontSlant->"Italic"]}]], "i"], \(\[CapitalDelta]\ x\)], TraditionalForm]]], "as the rate at which ", StyleBox["Q", FontSlant->"Italic"], " accumulates with respect to increments in ", StyleBox["x", FontSlant->"Italic"], ";", " we form a list of accumulated quantities, ", Cell[BoxData[ \(TraditionalForm\`Q\_i\)]], "; and finally, we use the list of ", Cell[BoxData[ \(TraditionalForm\`Q\_i'\)]], "s to reconstruct ", Cell[BoxData[ FormBox[ FractionBox[ SubscriptBox[ StyleBox[ RowBox[{"\[CapitalDelta]", StyleBox["Q", FontSlant->"Italic"]}]], "i"], \(\[CapitalDelta]\ x\)], TraditionalForm]]], "." }], "Text", PageWidth->PaperWidth], Cell[CellGroupData[{ Cell["Technology Guidelines", "Subsection", PageWidth->PaperWidth, CellDingbat->"\[LightBulb]"], Cell[TextData[{ StyleBox["NOTE: If you have just finished a module, restart ", CellFrame->True, Background->None], StyleBox["Mathematica", CellFrame->True, FontSlant->"Italic", Background->None], StyleBox[" before executing a new module.\nTO OPEN CELLS, put your cursor \ on the right cell bracket and double click.", CellFrame->True, Background->None], "\nINITIALIZATION CELLS\n\tWhen asked if you want to \". . . automatically \ evaluate all the initialization cells in the \tnotebook . . . ,\" respond by \ pressing the \"Yes\" button.\nTO STOP AN EXECUTION\n\tSelect the ", StyleBox["Kernel", FontSlant->"Italic"], " pull-down menu and click on ", StyleBox["Abort Evaluation.\n", FontSlant->"Italic"], "ORDER OF EXECUTION\n\tExecute cells in the order given. Do not skip any \ Input cells within a given notebook.\nSAVING NOTEBOOKS\n\tYou can save \ anytime to any directory you choose, and it is wise to save often.\n\t \ However, before you do your final save, delete all your output by selecting \ the \n\t ", StyleBox["Delete All Output", FontSlant->"Italic"], " selection under the ", StyleBox["Kernel", FontSlant->"Italic"], " pull-down menu.\nEXPERIENCING MAJOR PROBLEMS\n\tSave if appropriate, and \ then shut down ", StyleBox["Mathematica", FontSlant->"Italic"], " and start it up again." }], "Text", PageWidth->PaperWidth] }, Closed]] }, Closed]], Cell[CellGroupData[{ Cell["Part I: Areas", "Section", PageWidth->PaperWidth], Cell[TextData[StyleBox["Chapter 4, Sections 3 and 4", FontWeight->"Bold"]], "Text", PageWidth->PaperWidth], Cell[GraphicsData["Metafile", "\<\ CF5dJ6E]HGAYHf4PEfU^I6mgLb15CDHPAVmbKF5d0@0006@00@0005P000000000oooooj`6000E1000 00000000000C;`00cA`00215CDH0004006@000/2000500000000000000000000?`/00>T>003;0000 3@4000X0000@0000000000000009000040000:`6000E10004P0000`000010000600000`000000002 DP0004`100010000a?ooo`0000000000000009010000000014004U@0J@1]06D0L`0P04h0I@1g0200 DP1_06d0H@1^0000000300000000000000000000000004=:DU=DDP0000000000I000004000010040 0P020000001B0d`4K`SZ2P00DP=<16l8jPY_2>X:@00N03l0AP1X0FP10`03000:@00?0040C51DX:K`SZ2T00000004H0J05X 0@<00`002T003`0104a@E34j000000000000000000000000000000000000^0/:00000`1_2>X:0000 000000000000000000000000000000000000000100000@0200X02P0:00X0000000000P0100000000 000000000:<100000000B0000000002@0@0000000000@G9YHF`00000000000000000000000000000 00000000000000000000000000000000000000410@410@410@4002D0000<00000P0005@0001D0000 30H003L3000V1P00NP<000400017X^50Aj;Q@0`6000g0`000@0004`00004000030H003D3002W1P00 V0<00500001h00006`0002D0000<00000@0005@0001D00009`H003L300111P00NP<000400017X^50 Aj;Q@2L6000g0`000@0004`00004000030H003D3002W1P00V0<00500000P00006`000280000<0000 ooooobH0000L00000`0000000004000010000000000U0000300000<0000U0000300000D0081G0000 90000=T1001O0`00hPD006<300020000f`5Q0n05H@`0000P0000U0000300000@0001G0000:0000X1002/00000`000>P1ZP3L0I00c`6Z03`000080000@00001P0003?0@00 T0000>L1002Y00009@0000`000070020:00000`0000300004`0000`0000200009@0000`000080020 9@0000`000040020EP0005@0003I0@00G`<00=d1001S0`003P000=X1H0?I0F43f@5Q0mX1HP?K0F<3 f`5S0md1H`?M0F83g@5Q0md1H0?M0El3g05O0m/1G`?J0El3EP0005@0003O0@00F@<00><1001M0`00 3P000=l1FP?O0E/3g`5L0ml1G@?P0Ed3h@5M0n81G@?R0Ed3h`5L0n<1F`?R0EX3h@5I0n01F@?O0EX3 EP0005@0003T0@00E0<00>P1001H0`003P000>D1E0?T0ED3i05F0nD1E`?V0EP3i`5H0nP1E`?X0EL3 j05F0nP1E@?X0E@3i`5D0nH1E0?U0E@3EP0005@0003Z0@00CP<00>h1001B0`003P000>X1C`?Z0E03 jP5A0nX1DP?[0E83k05B0nd1DP?]0E83kP5A0nh1D0?]0Dl3k05>0n/1CP?Z0Dl3EP0005@0003`0@00 B0<00?@1001<0`003P000?01B@?`0DX3l05;0o01C0?a0D`3lP5<0o<1C0?c0D`3m05;0o@1BP?c0DT3 lP580o41B0?`0DT3EP0005@0003e0@00@`<00?T100170`003P000?H1@`?e0D@3m@550oH1AP?g0DL3 n0570oT1AP?i0DH3n@550oT1A0?i0D<3n0530oL1@`?f0D<3EP0005@0003k0@00?@<00?l100110`00 3P000?/1?P?k0Cl3n`500o/1@@?l0D43o@510oh1@@?n0D43o`500ol1?`?n0Ch3o@4m0o`1?@?k0Ch3 EP0005@000010P00=`<000D2000k0`003P000042>0<10ST30@8j0`42>`<20S/30`8k0`@2>`<40S/3 1@8j0`D2>@<40SP30`8g0`82=`<10SP3EP0005@000060P000`003P0002h22`<^0P`3;P8=0bh23P<_0Ph3 <08>0c423P@810cX20P0_42CP;`0Th2k`9>0^h2C@;^0T`2kP9;0^h2EP0005@0001@0P00j08005@2003/0P00 3P000502j@9@0^X2D0;[0U02k09A0^`2DP;/0U<2k09C0^`2E0;[0U@2jP9C0^T2DP;X0U42j09@0^T2 EP0005@0001E0P00hP8005T2003V0P003P0005H2h`9E0^@2E@;U0UH2iP9G0^H2F0;V0UT2iP9I0^H2 F@;U0UT2i09I0^<2F0;R0UL2hP9F0^<2EP0005@0001K0P00g@8005l2003Q0P003P0005`2g@9K0]h2 F`;O0U`2h09M0^42GP;Q0Ul2h09O0^02G`;O0Ul2gP9O0]d2GP;M0Ud2g@9L0]d2EP0005@0001Q0P00 e`8006D2003K0P003P000642f09Q0]T2H@;J0V42f`9R0]/2H`;K0V@2f`9T0]/2I@;J0VD2f@9T0]P2 H`;G0V82e`9Q0]P2EP0005@0001V0P00d@8006X2003E0P003P0006L2dP9V0]<2IP;D0VL2e@9X0]D2 J@;E0VX2e@9Z0]D2JP;D0VX2d`9Z0]82J@;A0VP2d@9W0]82EP0005@0001/0P00c0800702003@0P00 3P0006`2c09/0/d2K0;>0V`2c`9]0]02KP;@0Vl2c`9_0/l2L0;>0W02c@9_0/`2KP;<0Vd2c09/0/`2 EP0005@0001b0P00aP8007H2003:0P003P000782a`9b0/P2LP;90W82bP9c0/X2M0;:0WD2bP9e0/X2 MP;90WH2b09e0/L2M0;60W<2aP9b0/L2EP0005@0001g0P00`@8007/200350P003P0007P2`@9g0/82 M`;30WP2a09i0/D2NP;50W/2a09k0/@2N`;30W/2`P9k0/42NP;10WT2`@9h0/42EP0005@0001m0P00 ^`800842002o0P003P0007d2^`9m0[`2O@:m0Wd2_P9n0[l2O`:o0X02_P:00[h2P@:m0X42_0:00[/2 O`:k0Wh2^`9m0[/2EP0005@000230P00]@8008L2002i0P003P0008<2]P:30[L2P`:h0X<2^@:40[T2 Q@:i0XH2^@:60[T2Q`:h0XL2]`:60[H2Q@:e0X@2]@:30[H2EP0005@000280P00/08008`2002d0P00 3P0008T2/0:80[42R0:b0XT2/`::0[@2R`:d0X`2/`:<0[<2S0:b0X`2/@:<0[02R`:`0XX2/0:90[02 EP0005@0002>0P00ZP800982002^0P003P0008h2ZP:>0Z/2SP:/0Xh2[@:?0Zh2T0:^0Y42[@:A0Zd2 TP:/0Y82Z`:A0ZX2T0:Z0Xl2ZP:>0ZX2EP0005@0002D0P00Y08009P2002X0P003P0009@2Y@:D0ZH2 U0:W0Y@2Z0:E0ZP2UP:X0YL2Z0:G0ZP2V0:W0YP2YP:G0ZD2UP:T0YD2Y0:D0ZD2EP0005@0002I0P00 W`8009d2002S0P003P0009X2W`:I0Z02V@:Q0YX2XP:K0Z<2W0:S0Yd2XP:M0Z82W@:Q0Yd2X0:M0Yl2 W0:O0Y/2W`:J0Yl2EP0005@0002O0P00V@800:<2002M0P003P0009l2V@:O0YX2W`:K0Yl2W0:P0Yd2 X@:M0Z82W0:R0Y`2X`:K0Z<2VP:R0YT2X@:I0Z02V@:O0YT2EP0005@0002U0P00T`800:T2002G0P00 3P000:D2U0:U0YD2Y@:F0ZD2U`:V0YL2Y`:G0ZP2U`:X0YL2Z@:F0ZT2U@:X0Y@2Y`:C0ZH2T`:U0Y@2 EP0005@0002Z0P00SP800:h2002B0P003P000:/2SP:Z0Xl2ZP:@0Z/2T@:/0Y82[@:B0Zh2T@:^0Y42 [P:@0Zh2S`:^0Xh2[@:>0Z`2SP:[0Xh2EP0005@0002`0P00R0800;@2002<0P003P000;02R0:`0XT2 /0::0[02R`:a0X`2/P:<0[<2R`:c0X/2]0::0[@2R@:c0XP2/P:80[42R0:`0XP2EP0005@0002e0P00 PP800;T200260P003P000;H2P`:e0X@2]@:50[H2QP:g0XH2^0:60[T2QP:i0XH2^@:50[T2Q0:i0X<2 ^0:20[L2PP:f0X<2EP0005@0002k0P00O@800;l200210P003P000;`2O@:k0Wh2^`9o0[`2P0:m0X42 _P:10[l2P0:o0X02_`9o0[l2OP:o0Wd2_P9m0[d2O@:l0Wd2EP0005@000310P00M`8000W02c`9`0]02K`;@0Vl2d09^0]02K@;@0V`2c`9/0/h2K0;=0V`2EP0005@0003B0P00 IP800=H2001Z0P003P000=82IP;B0VL2dP9X0]82J@;C0VX2e09Z0]D2J@;E0VT2eP9X0]H2I`;E0VH2 e09V0]<2IP;B0VH2EP0005@0003G0P00H0800=/2001T0P003P000=P2H@;G0V82e`9S0]P2I0;I0V@2 fP9T0]/2I0;K0V@2f`9S0]/2HP;K0V42fP9P0]T2H0;H0V42EP0005@0003M0P00F`800>42001O0P00 3P000=h2F`;M0U`2g@9M0]h2GP;O0Ul2h09O0^42GP;Q0Uh2h@9M0^42G0;Q0U/2h09K0]l2F`;N0U/2 EP0005@0003S0P00E@800>L2001I0P003P000><2E@;S0UH2h`9G0^<2F0;T0UT2i@9I0^H2F0;V0UP2 i`9G0^L2EP;V0UD2i@9E0^@2E@;S0UD2EP0005@0003X0P00C`800>`2001C0P003P000>T2D0;X0U42 j09B0^T2D`;Z0U<2j`9C0^`2D`;/0U<2k09B0^`2D@;/0U02j`9?0^X2C`;Y0U02EP0005@0003^0P00 BP800?82001>0P003P000>l2BP;^0T/2kP9<0^l2C@;`0Th2l@9>0_82C@;b0Td2lP9<0_82B`;b0TX2 l@9:0_02BP;_0TX2EP0005@0003d0P00A0800?P200180P003P000?@2A0;d0TD2m0960_@2A`;e0TP2 mP980_L2A`;g0TL2n0960_P2A@;g0T@2mP940_D2A0;d0T@2EP0005@0003i0P00?P800?d200120P00 3P000?X2?`;i0T02n@910_X2@P;k0T82o0920_d2@P;m0T82o@910_d2@0;m0Sl2o08n0_/2?P;j0Sl2 EP0005@0003o0P00>@8000<3000m0P003P000?l2>@;o0SX2o`8k0_l2?0800cd20@P820cT20@@;o0ST2EP0005@000050`00<`8000T3000g0P003P0000D3<`850c@2 1@0c423P<`0Ph3;`8>0bh2 3@<]0P`3;@8;0bh2EP0005@0000@0`00:08001@3000/0P003P000103:08@0bT2400Rd33`8^0`l2 ;`0S033@8`0``2;`<;0Rh32`8]0``2EP0005@0000b0`001P8003H3000:0P00 3P0003831P8b0`L2P<40S/3108k0`@2 >`<30S/30P8k0`42>P<00ST3008h0`42EP0005@0000m0`00nP400443003n0@003P0003h3n`4m0o`1 ?@?m0Ch3oP4o0oh1@0?n0D43oP510oh1@@?m0D43o0510o/1@0?j0Cl3nP4n0o/1EP0005@000130`00 m@4004L3003i0@003P0004<3m@530oH1@`?g0D<3n0540oT1A@?i0DH3n0560oP1A`?g0DL3mP560oD1 A@?e0D@3m@530oD1EP0005@000180`00k`4004`3003c0@003P0004T3l0580o41B0?b0DT3l`5:0o<1 B`?c0D`3l`5<0o<1C0?b0D`3l@5<0o01B`?_0DX3k`590o01EP0005@0001>0`00j@400583003]0@00 3P0004l3jP5>0n/1CP?/0Dl3k@5@0nd1D@?]0E83k@5B0nd1DP?/0E83j`5B0nX1D@?Y0E03j@5?0nX1 EP0005@0001D0`00i04005P3003X0@003P0005@3i05D0nD1E0?V0E@3i`5E0nP1EP?X0EL3i`5G0nL1 F0?V0EP3i@5G0n@1EP?T0ED3i05D0n@1EP0005@0001I0`00gP4005d3003R0@003P0005X3g`5I0n01 F@?Q0EX3hP5K0n81G0?R0Ed3hP5M0n81G@?Q0Ed3h05M0ml1G0?N0E/3gP5J0ml1EP0005@0001O0`00 f04006<3003L0@003P000603f@5O0mX1G`?K0F03g05Q0m`1HP?L0F<3g05S0m`1H`?K0F<3fP5S0mT1 HP?H0F43f05P0mT1EP0005@0001U0`00d`4006T3003G0@003P0006D3d`5U0m@1I@?E0FD3eP5V0mL1 I`?G0FP3eP5X0mH1J@?E0FT3e05X0m<1I`?C0FH3d`5U0m<1EP0005@0001Z0`00c@4006h3003A0@00 3P0006/3cP5Z0ll1JP?@0F/3d@5/0m41K@?A0Fh3d@5^0m41KP?@0Fh3c`5^0lh1K@?=0F`3c@5[0lh1 EP0005@0001`0`00a`4007@3003;0@003P000743b05`0lT1L0?:0G43b`5b0l/1L`?;0G@3b`5d0l/1 M0?:0G@3b@5d0lP1L`?70G83a`5a0lP1EP0005@0001f0`00`P4007X300360@003P0007H3`P5f0l<1 MP?40GH3a@5g0lH1N0?60GT3a@5i0lD1NP?40GX3``5i0l81N0?20GL3`P5f0l81EP0005@0001k0`00 _04007l300300@003P0007`3_@5k0kh1N`>o0G`3`05m0l01OP?00Gl3`05o0l01O`>o0Gl3_P5o0kd1 OP>l0Gd3_05l0kd1EP0005@000210`00]P4008D3002j0@003P000843]`610kP1P@>i0H43^P620kX1 P`>j0H@3^P640kX1Q@>i0HD3^0640kL1P`>f0H83]P610kL1EP0005@000270`00/@4008/3002e0@00 3P0008L3/@670k81Q`>c0HL3]0680kD1R@>e0HX3]06:0k@1R`>c0H/3/P6:0k41R@>a0HP3/@670k41 EP0005@0002<0`00Z`400903002_0@003P0008d3[06<0jd1S0>^0Hd3[`6>0jl1S`>_0I03[`6@0jl1 T0>^0I03[@6@0j`1S`>[0Hh3Z`6=0j`1EP0005@0002B0`00Y@4009H3002Y0@003P000983YP6B0jL1 TP>X0I83Z@6C0jT1U0>Y0ID3Z@6E0jT1UP>X0IH3Y`6E0jH1U0>U0I<3Y@6B0jH1EP0005@0002H0`00 X04009`3002T0@003P0009P3X06H0j41V0>R0IP3X`6I0j@1VP>T0I/3X`6K0j<1W0>R0I`3X@6K0j01 VP>P0IT3X06H0j01EP0005@0002M0`00VP400:43002N0@003P0009h3V`6M0i`1W@>M0Ih3WP6O0ih1 X0>N0J43WP6Q0ih1X@>M0J43W06Q0i/1X0>J0Il3VP6N0i/1EP0005@0002S0`00U0400:L3002H0@00 3P000:<3U@6S0iH1X`>G0J<3V06T0iP1Y@>H0JH3V06V0iP1Y`>G0JL3UP6V0iD1Y@>D0J@3U06S0iD1 EP0005@0002Y0`00S`400:d3002C0@003P000:T3S`6Y0i01Z@>A0JT3TP6Z0i<1Z`>C0J`3TP6/0i81 [@>A0Jd3T06/0hl1Z`>?0JX3S`6Y0hl1EP0005@0002^0`00R@400;83002=0@003P000:l3RP6^0h/1 [P><0Jl3S@6`0hd1/@>=0K83S@6b0hd1/P><0K83R`6b0hX1/@>90K03R@6_0hX1EP0005@0002d0`00 Q0400;P300280@003P000;@3Q06d0hD1]0>60K@3Q`6e0hP1]P>80KL3Q`6g0hL1^0>60KP3Q@6g0h@1 ]P>40KD3Q06d0h@1EP0005@0002j0`00OP400;h300220@003P000;X3OP6j0gl1^P>00KX3P@6k0h81 _0>20Kd3P@6m0h41_P>00Kh3O`6m0gh1_0=n0K/3OP6j0gh1EP0005@0002o0`00N0400<<3001l0@00 3P000<03N@6o0gX1_`=k0L03O0710g`1`P=l0L<3O0730g`1``=k0L<3NP730gT1`P=h0L43N0700gT1 EP0005@000350`00L`4000g01cP=_0Lh3KP7>0fd1c@=]0L`3K@7;0fd1EP0005@0003@0`00 I`400=@3001[0@003P000=43J07@0fT1d0=Z0M43J`7B0f/1d`=[0M@3J`7D0f/1e0=Z0M@3J@7D0fP1 d`=W0M83I`7A0fP1EP0005@0003F0`00HP400=X3001V0@003P000=H3HP7F0f<1eP=T0MH3I@7G0fH1 f0=V0MT3I@7I0fD1fP=T0MX3H`7I0f81f0=R0ML3HP7F0f81EP0005@0003K0`00G0400=l3001P0@00 3P000=`3G07K0ed1f`=N0M`3G`7M0f01gP=P0Ml3G`7O0el1g`=N0Ml3G@7O0e`1gP=L0Md3G07L0e`1 EP0005@0003Q0`00EP400>D3001J0@003P000>83E`7Q0eP1h@=I0N83FP7S0eX1i0=J0ND3FP7U0eX1 i@=I0ND3F07U0eL1i0=F0N<3EP7R0eL1EP0005@0003W0`00D@400>/3001E0@003P000>L3D@7W0e81 i`=C0NL3E07X0eD1j@=E0NX3E07Z0e@1j`=C0N/3DP7Z0e41j@=A0NP3D@7W0e41EP0005@0003/0`00 B`400?03001?0@003P000>d3B`7/0d`1k0==0Nd3CP7^0dl1k`=?0O03CP7`0dh1l0==0O03C07`0d/1 k`=;0Nh3B`7]0d/1EP0005@0003b0`00A@400?H300190@003P000?<3AP7b0dL1lP=80O<3B@7d0dT1 m@=90OH3B@7f0dT1mP=80OH3A`7f0dH1m@=50O@3A@7c0dH1EP0005@0003h0`00@0400?`300140@00 3P000?P3@07h0d41n0=20OP3@`7i0d@1nP=40O/3@`7k0d<1o0=20O`3@@7k0d01nP=00OT3@07h0d01 EP0005@0003m0`00>P400044000n0@003P000?h3>P7m0c/1o@`4113X100@j0Ol3>P7n0cX1EP0005@000031000=04000L4000h0@003P0000@4=@4313H1 0`@g0@@4>04513P11P@h0@L4>04713P11`@g0@L4=P4713D11P@d0@D4=04413D1EP0005@000091000 ;`4000d4000c0@003P0000T4;`4913012@@a0@T41000:@400184000]0@003P0000l4:@4>12X13P@[0@l4;04@12d1 4@@]0A84;04B12`14P@[0A84:P4B12T14@@Y0A04:@4?12T1EP0005@0000D10008`4001P4000W0@00 3P0001@4904D12D150@V0A@49`4E12L15P@W0AL49`4G12L160@V0AP49@4G12@15P@S0AD48`4D12@1 EP0005@0000J10007P4001h4000R0@003P0001X47P4J11l16P@P0AX48@4K128170@R0Ad48@4M1241 7P@P0Ah47`4M11h170@N0A/47P4J11h1EP0005@0000O1000604002<4000L0@003P000204604O11T1 7`@J0B046`4Q11`18P@L0B<46`4S11/18`@J0B<46@4S11P18P@H0B44604P11P1EP0005@0000U1000 4P4002T4000F0@003P0002D44`4U11@19@@E0BD45P4V11H19`@F0BP45P4X11H1:@@E0BT4504X11<1 9`@B0BH44P4U11<1EP0005@0000[10003@4002l4000A0@003P0002/43@4[10h1:`@?0B/4404/1141 ;@@A0Bh4404^1101;`@?0Bl43P4^10d1;@@=0B`43@4[10d1EP0005@0000`10001`4003@4000;0@00 3P0003441`4`10P1<0@90C442P4b10/1<`@;0C@42P4d10X1=0@90C@4204d10L1<`@70C841`4a10L1 EP0005@0000f10000@4003X400050@003P0003H40P4f10<1=P@40CH41@4g10D1>0@50CT41@4i10D1 >P@40CX40`4i1081>0@10CL40@4f1081EP0005@0000l1000o000040400000@003P0003`4o00l1?d0 ?0Cn03`4o`0m1001?P@00Cl4o`0o1?l0@0Cn0404o@0o1?`0?PCl03d4o00l1?`0EP0005@000111000 mP0004D4003j00003P000484mP111?L0@@Ch0484n@131?X0A0Cj04D4n@151?T0A@Ch04D4m`151?H0 A0Cf04<4mP121?H0EP0005@000171000l00004/4003d00003P0004L4l@171?80A`Cc04L4m0181?@0 B@Cd04X4m01:1?@0B`Cc04/4lP1:1?40B@C`04P4l0171?40EP0005@0001<1000j`000504003_0000 3P0004d4j`1<1>`0C0C]04d4kP1>1>l0C`C_0504kP1@1>h0D0C]0504k01@1>/0C`C[04h4j`1=1>/0 EP0005@0001B1000i@0005H4003Y00003P0005<4iP1B1>L0DPCX05<4j@1D1>T0E@CY05H4j@1F1>T0 EPCX05H4i`1F1>H0E@CU05@4i@1C1>H0EP0005@0001H1000g`0005`4003S00003P0005P4h01H1>40 F0CR05P4h`1I1><0FPCS05/4h`1K1><0G0CR05`4h@1K1>00FPCO05T4g`1H1>00EP0005@0001M1000 fP000644003N00003P0005h4fP1M1=/0G@CL05h4g@1O1=h0H0CN0644g@1Q1=d0H@CL0644f`1Q1=X0 H0CJ05l4fP1N1=X0EP0005@0001S1000e00006L4003H00003P0006@4e@1S1=H0H`CG06@4f01U1=P0 IPCH06L4f01W1=P0I`CG06L4eP1W1=D0IPCD06D4e01T1=D0EP0005@0001Y1000cP0006d4003B0000 3P0006T4c`1Y1=00J@CA06T4dP1Z1=80J`CB06`4dP1/1=80K@CA06d4d01/106X4cP1Y11;00 S`B_08l4[P2>1:d0S@B/08`4[02;1:d0EP0005@0002@1000Y`0009@4002[00003P000944Y`2@1:P0 T0BY0944ZP2B1:/0T`B[09@4ZP2D1:X0U0BY09@4Z02D1:L0T`BW0984Y`2A1:L0EP0005@0002F1000 X@0009X4002U00003P0009H4XP2F1:<0UPBT09H4Y@2G1:D0V0BU09T4Y@2I1:D0VPBT09X4X`2I1:80 V0BQ09L4X@2F1:80EP0005@0002L1000V`000:04002O00003P0009`4W02L19d0W0BN09`4W`2M19l0 WPBO09l4W`2O19l0X0BN0:04W@2O19`0WPBK09d4V`2L19`0EP0005@0002Q1000UP000:D4002J0000 3P000:84UP2Q19L0X@BH0:84V@2S19X0Y0BJ0:D4V@2U19T0Y@BH0:D4U`2U19H0Y0BF0:<4UP2R19H0 EP0005@0002W1000T0000:/4002D00003P000:L4T@2W1980Y`BC0:L4U02X19@0Z@BD0:X4U02Z19@0 Z`BC0:/4TP2Z1940Z@B@0:P4T02W1940EP0005@0002]1000RP000;44002>00003P000:d4R`2]18`0 [@B=0:d4SP2^18h0[`B>0;04SP2`18h0/@B=0;44S02`18/0[`B:0:h4RP2]18/0EP0005@0002b1000 Q@000;H4002900003P000;<4Q@2b18H0/PB70;<4R02d18T0]@B90;H4R02f18P0]PB70;H4QP2f18D0 ]@B50;@4Q@2c18D0EP0005@0002h1000O`000;`4002300003P000;P4P02h1840^0B20;P4P`2i18<0 ^PB30;/4P`2k18<0_0B20;`4P@2k1800^PAo0;T4O`2h1800EP0005@0002n1000N@000<84001m0000 3P000;h4NP2n17/0_PAl0;h4O@2o17d0`0Am0<44O@3117d0`PAl0<84N`3117X0`0Ai0;l4N@2n17X0 EP0005@000331000M000006D0M`0P0580K`1]0640 KP000?moogooOomoogooOomoogooOomoogooOomoogooO`00003oOomoogooOomoogooOomoogooOomo ogooOomoogooOomoogooOomoogooOomoogooOomoogooOomoogooOomoogooOomoogooOomoogooOomo ogooOomoogooOomoogooOomoogooOomoogooOomoogooOomoogooOomoogl00?moogooOomoogooOomo ogooOomoogooOomoogooOomoogooOomoogooOomoogooOomoogooOomoogooOomo0000000000000000 00000000000000000@410@410@410@009@0000`000030000E00005@0002H1000?0000:P4001D0000 0@0006d5SCm]1HdoO000060100010000C0000000000000000000000000000000D00006H0001]0000 E00005@0003C1000?0000>d4001D00000@0006d5SCm]1Hdol040060100010000C000000000000000 0000000000000000D00007P0002]0000E00005@000191@00?00006<5001D00000@0006d5SCm]1Hdo j0@0060100010000C0000000000000000000000000000000D00007P0002]0000DP0004`100040000 P?koo`00000000000000090100000000108045@0J@1]06D0L`0P04h0I@1g0200DP1_06d0H@1^0000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000010@410@410@41000U0000300000@0000X0000300000<0000U0000300000@0001D0000 E0000;T4000l0000c0@005@000010000K@F=?fd5SCm>0@00H0400040001<00000000000000000000 00000000001@0000:0000800001D0000E0000?04000l00000`D005@000010000K@F=?fd5SCnZ0P00 H0400040001<0000000000000000000000000000001@0000:@000800001B0000C04000<00020o_oo 0000000000000000T040000000840P0@D`1i06d0HP1_06`000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 000000410@410@410@4002D0000<00000`0002P0000<0000100002D0000<00000`0005<0001D0000 50D003`0000d1@00E0000040001]1HdoK@F=?iH3001P0@000@0004`0000000000000000000000000 00000500000mCdhPd`000580001<0@00100001000007000000000000002l0P00000000@20R9C07T0 L`1d06D0K@0000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000@410@410@410@009@0000`000040000 :00000`0000300009@0000`000010000:00000`000040000B`000400000`00001@00020000010000 0@000100002510001@000705001E0000Q@@000D0001`1@00E@000300000<00003`00P2D0000<0000 1`00P2D0000<00000000P2D0000<00000@000280000<0000ooooob80000<0000oooooe@0001D0000 L0D000H000241@00B@0000400017X^50Aj;Q@705000600000@0004`000040000Q@@000D000241@00 E@000500000P00006`000280000<0000ooooobD0000<00002000P2D0000<00001@00P2/0000H0000 a`4003T0002<0P00WP0000`0000@000000000000000U0000300000L0080U000030000000080Q0000 200001h0000H0000c04003d000280P00V@0002D0000<00000@0005@0001D0000c04003l0003W0@00 PP0000400017X^50Aj;Q@<`1000o00000@0004`000040000c04003d000270P00V@000500001i0000 700005@0001D0000j04003l000020P00PP0000400017X^50Aj;Q@>P1000o00000@0004`000040000 c04003d000270P00V@000500000P00006`000280000<0000ooooobH0000L00001000000000040000 10000000000U0000300000@0000U0000300000D0081G0000900008T3002W0`00S@<00?<300020000 R`>Y0h/3l@0jD3fP06D0M`0P0580K`1]0640 KP000000001000000000044000000000@P00000000130000000004@000000000A@00000000160000 000004L000000000B000000000190000000004X000000000B`000000001<0000000004d000000000 CP000000001?00000000050000000000D@000000001B0000000005<000000000E0000000001E0000 000005H000000000E`000000001H0000000005T000000000FP000000001K00000000000000000000 00000000000000000@410@410@410@009@0000`000030000E00005@000240`00W0<009h3002d0`00 0@0006d5SCm]1HdoC000060100010000C0000000000000000000000000000000D00007P0002]0000 DP0004`1000400008?ooo`00000000000000090100010000108045@0J@1]06D0L`0P04h0I@1g0200 DP1_06d0H@1^0000M@000000001f0000000007L000000000N000000000000000000007X000000000 N`000000001l0000000007d000000000OP000000001o00000000080000000000P@00000000220000 000008<000000000Q000000000250000000008H000000000Q`000000002800000000000000000000 RP000000002;0000000008`000000000S@000000002>0000000008l000000000T000000000000000 00000000000000000000000000010@410@410@41000U0000300000@0000X0000300000<0000U0000 300000@0001D0000E0000:03002[0`00Z@<00;@300010000K@F=?fd5SCon0000`0400040001<0000 000000000000000000000000001@0000J@000400001B0000C04000<0000@00001`00000000000000 _080000000040P8RD`1i07<0M01U06d000000000002/000000000:d000000000[P000000002_0000 00000;00002X0P00U`800000002G0P00Z@8009H2002Y0P00U@800:P2002D0P00Y`8009<2002V0P00 T`800:D2002D0P00Z`8008h2002Z0P00S`800:X2002@0P00Z`800942002/0P00TP800:d2002B0P00 [P800942002^0P00T@800:h2002@0P00000008l2002^0P00SP800:d2002>0P00[08008h2002[0P00 SP800;0200280P00/08008T2002`0P00RP800000000000000000000000000000000000410@410@41 0@4002D0000<00000`0002P0000<0000100002D0000<00000@0002P0000<00000`0004/000100000 <00000D0000P00000@000040000@0000N0<006D3002d0`00]@<007P3001U0`00]0<00;D3000`0000 300000l0080U0000300000L0080U000030000000080U000030000040000R000030000?oooolR0000 30000?oooomD0000E0000;@3001V0`00b0<00:T300010000Aj;Q@4NRhD2d0`00IP<00040001<0000 100007P3001U0`00b0<00;D3001@0000800001/0000R000030000?oooolU0000300000P0080U0000 300000D0080[0000600009X3003=0`00m`<001D4000<000040000000000000009@0000`000070020 9@0000`0000000208@0000P0000N0000600009l3003A0`00l`<000l4000U000030000080001D0000 E00009l3003A0`00_0<000h400010000Aj;Q@4NRhD2O0`00d@<00040001<0000100009l3003A0`00 lP<000l4001@0000J00001h0000U000030000040001D0000E0000;d3003A0`00e`<000h400010000 Aj;Q@4NRhD2m0`00d@<00040001<0000100009l3003A0`00lP<000l4001@0000800001/0000R0000 30000?oooolW0000600000<000000000_kno0000000U0000300000<0001=0000K0000000003i0000 O`0006@100000000n@000800001/00008@3`0000000000000020?`00000000000020?`0000000000 0000000000000000000000000000000000000000000U000030000000080X0000300000<0000E0000 300000@0000U0000300000D0081A0000f04000L0003A0@00P`0003T200070000d@40000000000000 6@0001D0001@0000=04008@1001D000000000200c01m0000J@0002P0000I00005@0000400@000000 000008T;00292`000P00008000000000l_;b00000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000OgmoOoooooogmoOg ooooogmoOgoooooomoOgmooooomoOgmoooooooOgmoOoooooOgmoOoooooogmoOgooooogmoOgoooooo moOgmooooomoOgmo5@0000`0000100009@0000`0000800209@0000`000050020:`0001P0001k0000 20400=l0001R0@003000010000000000000002D0000<00001`00P2D0000<00000000P24000080000 7P0001P00020000030400=/0001L0@009@0000`0000100008@0000P0000N000060000800000<0@00 fP0005`1000Q0000200001h0000H0000P00000`100360000G04001P0000<000000000140000<0000 200000/0000@0000AP000500000<000040000800000<0@002P00010000000000000000T0000@0000 `0400002000F0000300001P0000@000030000040000:000040000000000000002@00010000300@00 008002D0000<00000000P580001<0@000`00083nool0000000000000002@0@000@0000@2011D06T0 K@1U07<0801>06D0M`0P0580K`1]0640KP000:<300000000Y0<00000002U0`0000000:H300000000 00000000002X0`0000000:T300000000ZP<00000002[0`0000000:`300000000[@<00000002^0`00 00000:l300000000/0<00000002a0`0000000;8300000000/`<00000002d0`0000000;D300000000 ]P<000000000000000000;P300000000^@<00000002j0`0000000;/300000000_0<00000002m0`00 00000;h300000000000000000000000000000000000000000@410@410@410@009@0000`000030000 E00005@0002@0000@`400;@0001K0@000@0006d5SCm]1HdoI000060100010000C000000000000000 0000000000000000D0000440003]0000DP0004`1000400008?ooo`00000000000000090100010000 108045@0J@1]06D0L`0P04h0I@1g0200DP1_06d0H@1^000000000=T300000000fP<00000003K0`00 00000=`300000000g@<00000003N0`0000000=l300000000h0<00000003Q0`0000000>8300000000 h`<00000003T0`0000000>D300000000iP<00000003W0`0000000>P300000000j@<00000003Z0`00 00000>/300000000k0<00000003]0`0000000>h300000000k`<00000003`0`0000000?4300000000 lP<00000003c0`0000000?@30000000000000000000000000000000000010@410@410@41000U0000 300000@0000X0000300000<0000U0000300000@0001D0000E0000;40001B0@00^P0005/100010000 K@F=?fd5SClj0@00`0400040001<0000000000000000000000000000001@0000J@000400001B0000 C04000<0000@00001`00000000000000_080000000040P8RD`1i07<0M01U06d000000000000820P4 0000000030`<10000000014A4@@00000000F5QH40000000071`000000000028R8P@00000000Y:BT4 00000000EEEE1000000004e=C@@000000012@T8400000000>CTi100000000?mlP0@00000003oD504 00000000eP2C10000000041003d0000<@80024000080000 7P0001P0001l0000h@400>00000a0P00600000`0000000004@0000`0000800002`000100001T0000 D00000`0000@0000O0000>41000:000040000000000000002@00010000200P00008001H0000<0000 60000100000<00000@0000X0000@000000000000000900004000080200000P009@0000`000000020 DP0004`100030000P?koo`00000000000000090100000002108045<0N@1]0680K`1/00000000IVH4 00000000d0001B0000C04000@00020o_oo0000000000000000T040004000040P0@E01Y06d0I@1c0200 CP1U07L0801B06l0K@1Q06h0002o000000000<0000000000`@000000003200000000000000000000 a000000000350000000000000000000000<0800040001]1HdoK@F=?bP1001P0@00 0@0004`00000000000000000000000000000050000110000k@000580001<0@000`00023oool00000 00000000002@0@000@0000@2011D06T0K@1U07<0801>06D0M`0P0580K`1]0640KP000000003h0000 00000?T000000000nP000000003k000000000?`000000000o@000000003n000000000?l000000000 0040000000010@0000000081000000000`40000000040@00000000D1000000001P40000000070@00 000000P1000000002@400000000:0@00000000/10000000030400000000=0@00000000h100000000 3`400000000@0@0000000141000000004P400000000C0@0000000000000000000000000000000000 0@410@410@410@009@0000`000030000:00000`0000400009@0000`000030000E00005@0003<0000 9`800=D0000`0P000@0006d5SCm]1HdooP400<0100010000C0000000000000000000000000000000 D00006T000100000DP0004`100040000400000L00000000000000;`20000000010828U<0N@1c07@0 I@1]0000000^0@00000002l100000000<0400000000a0@000000038100000000<`40000000000000 000003D100000000=P400000000g0@00000003P100000000>@400000000j0@00000003/100000000 ?0400000000m0@00000003h100000000?`40000000100@000000044100000000@P40000000130@00 0000000000000000A@40000000160@00000004L100000000B040000000190@00000004X100000000 B`4000000000000000000000000000000000000000010@410@410@41000U0000300000@0000X0000 300000<0000U000030000040000X0000300000@0001;0000@0000300000500008000004000010000 400007`0003Q0@00h0000342001l0000h@400>00000a0P00<00000`0000?00209@0000`000070020 9@0000`0000000209@0000`0000100008P0000`0003ooooo8P0000`0003oooooE00005@0003P0000 hP400?@0000U0P000@0004NRhD17X^50h0000>8100010000C00000@0001l0000h@400?@0000a0P00 D0000200000K00008P0000`0003ooooo9P0001`000040000000000@00004000000000RD0000<0000 100002L0000H00000`000000002o_kl0000002D0000<00000`0002/0000H0000/`8008T2003l0P00 G`<002D0000<00000000P2P0000<00000`0002D0000<00001`00P2P0000<0000100002H0000L0000 100000000004000010000000008U0000300000@0000W0000600000<000000000_kno0000000U0000 300000<0000[000060000?/200110P00A0<005l3000U000030000000080X0000300000<0000U0000 300000L0080X0000300000@0000V0000700000@000000000100000@0000000029@0000`000040000 9`0001P00003000000000;no_`0000009@0000`000030000:`0001P000130`00n@4008`3001O0`00 9@0000`000000020:00000`0000300009@0000`000070020:00000`0000400005@0000`000040000 9@0000`000050020D@000=P2002;0`00/@400=03001I0`00R`<00;4100000000000000h0001E0000 D00003@100240@00E0400000000P0<`0AP000:T1000X00003P0005D0000100400000000000292`00 R@/000800002000000000?ooo`000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 000000000000000000000000000000000000000000000000000007moOgoooooomoOgmooooomoOgmo ooooooOgmoOoooooOgmoOoooooogmoOgooooogmoOgoooooomoOgmooooomoOgmoooooooOgmoOooooo OgmoOoooooogmoOgooooogmoOgoooooomoOgmooooomoOgmoooooooOgmoOoooooOgmoOoooooogmoOg ooooogmoOgoooooomoOgmooooomoOgmoooooooOgmoOoooooOgmoOoooooogmoOgooooogmoOgoooooo moOgmooooomoOgmoooooooOgmoOoooooOgmoOoooooogmoOgooooogmoOgoooooomoOgmooooomoOgmo ooooooOgmoOoooooOgmoOoooooogmoOgooooogmoOgoooooomoOgmooooomoOgmoooooooOgmoOooooo OgmoOoooooogmoOgooooogmoOglE000030000040000V0000700000@000000000100000@000000000 9@0000`0000400009@0000`000050020:`0001P0002;0`00/@400=<3001N0`009@0000`000070020 :00000`0000400009P0001`000040000000000@00004000000000RD0000<0000100002D0000<0000 1@00P2/0000H0000d`<006T1000L1000G`<002D0000<00001`00P2P0000<0000100002H0000L0000 100000000004000010000000008U0000300000@0000U0000300000D0080[0000600001/4000Q0@00 I0@005l3000U0000300000L0080X0000300000@0000U0000300000P0080U0000300000D0080[0000 600007l2001G0`0030<00>H3000<000040000000000000009@0000`0000700209@0000`000000020 8@0000P0000N000060000:<2001Y0`00j0800=<3000U000030000080001D0000E0000:<2001[0`00 `0800:h300010000Aj;Q@4NRhD2S0P00J`<00040001<000010000:<2001Y0`00i`800=<3001@0000 H@0001h0001D0000E0000<42001[0`00g`800:h300010000Aj;Q@4NRhD310P00J`<00040001<0000 10000:<2001Y0`00i`800=<3001@0000800001l0000R000030000?oooolU0000300000P0080U0000 300000D0080[0000600003H4001G0`0010D00<03000<000040000000000000009@0000`000070020 9@0000`0000000208@0000P0000N0000600005T4001Y0`00h@@00:d3000U000030000080001D0000 E00005T4001Y0`00MP@00:`300010000Aj;Q@4NRhD1I1000J@<00040001<0000100005T4001Y0`00 h0@00:d3001@0000HP0001h0001D0000E00007L4001Y0`00U@@00:`300010000Aj;Q@4NRhD1g1000 J@<00040001<0000100005T4001Y0`00h0@00:d3001@0000800001l0000R000030000?ooool>0000 50000000000@00005000 \>"], "Graphics", PageWidth->PaperWidth, ImageSize->{428, 262}, ImageMargins->{{0, 0}, {0, 0}}, ImageRegion->{{0, 1}, {0, 1}}], Cell[TextData[{ StyleBox["Note:", FontWeight->"Bold"], " In this exercise, \[CapitalDelta]", Cell[BoxData[ FormBox[ SubscriptBox[ StyleBox["A", FontSlant->"Italic"], "i"], TraditionalForm]]], " represents the area of the ", Cell[BoxData[ FormBox[ SuperscriptBox[ StyleBox["i", FontSlant->"Italic"], "th"], TraditionalForm]]], " rectangle, as shown in the figure above.\n\nIn this Part, we will do the \ following:\n1. Form a function, ", Cell[BoxData[ \(TraditionalForm\`\[CapitalDelta]A(i)\)]], ", that gives the area of the ", Cell[BoxData[ \(TraditionalForm\`i\^th\)]], " rectangle in terms of ", Cell[BoxData[ \(TraditionalForm\`f(x\_i)\)]], " and ", StyleBox["h", FontSlant->"Italic"], ".\n2. Form a rate-of-change function, ", Cell[BoxData[ \(TraditionalForm\`\(\[CapitalDelta]A(i)\)\/\(\[CapitalDelta]\ x\)\)]], ", that gives the rate of accumulation of area at ", Cell[BoxData[ \(TraditionalForm\`x = a + i\ h\)]], ".\n3. Form a function, ", StyleBox["areaSum[k_]", FontWeight->"Bold"], ", that gives the sum of the areas of the rectangles, that is, the ", Cell[BoxData[ \(TraditionalForm\`\[CapitalDelta]A(i)\)]], "'s, as ", StyleBox["i", FontSlant->"Italic"], " ranges from 0 to ", StyleBox["k", FontSlant->"Italic"], ". This approximates the area under the graph of ", Cell[BoxData[ \(TraditionalForm\`y = f(x)\)]], ", between ", Cell[BoxData[ \(TraditionalForm\`x = a\)]], " and ", Cell[BoxData[ \(TraditionalForm\`x = a + k\ h\)]], ".\n4. Form a function that gives the slopes of the secant lines on the \ graph of the ", Cell[BoxData[ \(TraditionalForm\`A(k)\)]], " function found in step 3, and show that this is the same as the \ rate-of-change function found in step 2. \n5. In the You Try It exercise, you \ explore what happens as the number of rectangles goes to infinity while ", StyleBox["h", FontSlant->"Italic"], " goes to 0.\n\n\nOur first objective is to write \[CapitalDelta]", Cell[BoxData[ FormBox[ SubscriptBox[ StyleBox["A", FontSlant->"Italic"], "i"], TraditionalForm]]], ", the area of the ", Cell[BoxData[ \(TraditionalForm\`i\^th\)]], " rectangle, in terms of", Cell[BoxData[ FormBox[ RowBox[{" ", RowBox[{"f", "(", FormBox[ SubscriptBox[ StyleBox["x", FontSlant->"Italic"], "i"], "TraditionalForm"], ")"}]}], TraditionalForm]]], " and ", StyleBox["h ", FontSlant->"Italic"], "where ", Cell[BoxData[ FormBox[ RowBox[{ FormBox[ SubscriptBox[ StyleBox["x", FontSlant->"Italic"], StyleBox["i", FontSlant->"Italic"]], "TraditionalForm"], " ", "=", " ", \(a + i\ h\)}], TraditionalForm]]], StyleBox[". ", FontSlant->"Italic"], "At first, we let ", Cell[BoxData[ \(TraditionalForm\`a\ = \ \(-5\)\)]], ", ", Cell[BoxData[ \(TraditionalForm\`\(\(\ \)\(b\ = \ 10\)\)\)]], ", and ", Cell[BoxData[ \(TraditionalForm\`n = 10\)]], "." }], "Text", PageWidth->PaperWidth], Cell[BoxData[{ \(\(Clear[f, \[CapitalDelta]A, a, b, h, n];\)\), "\[IndentingNewLine]", \(\(f[x_] = x;\)\), "\[IndentingNewLine]", \(\(a = \(-5\);\)\), "\[IndentingNewLine]", \(\(b = 10;\)\), "\[IndentingNewLine]", \(\(n = 10;\)\), "\[IndentingNewLine]", \(\(h = \((b - a)\)/n;\)\), "\[IndentingNewLine]", \(\[CapitalDelta]A[i_] = f[a + i*h]*h\)}], "Input", PageWidth->PaperWidth], Cell[TextData[{ "Note that if ", Cell[BoxData[ \(TraditionalForm\`f(x\_i)\)]], " is negative and ", Cell[BoxData[ \(TraditionalForm\`\[CapitalDelta]\ x = h\)]], " is positive, then ", Cell[BoxData[ \(TraditionalForm\`\[CapitalDelta]A\_i\)]], " is negative. The areas can be positive, negative, or zero, and so we \ refer to them as \"signed areas.\" Areas above the ", StyleBox["x", FontSlant->"Italic"], "-axis are positive, and areas below the ", StyleBox["x", FontSlant->"Italic"], "-axis are negative, provided ", Cell[BoxData[ \(TraditionalForm\`\[CapitalDelta]\ x = h\)]], " is positive.\n\nNext, we form the rate-of-change function, ", Cell[BoxData[ \(TraditionalForm\`\(\[CapitalDelta]A(i)\)\/\[CapitalDelta]x\)]], ". The function ", Cell[BoxData[ \(TraditionalForm\`\(\[CapitalDelta]A(i)\)\/\[CapitalDelta]x\)]], " is the rate at which the total signed area of the rectangles accumulates \ with each increment of ", Cell[BoxData[ \(TraditionalForm\`\[CapitalDelta]\ x = h\)]], " added to ", StyleBox["x", FontSlant->"Italic"], ". We generate a list of the rate-of-change values for each ", Cell[BoxData[ \(TraditionalForm\`x\_i = a + i\ h\)]], ", plot the rate of change versus ", Cell[BoxData[ \(TraditionalForm\`x\_i\)]], ", and then assign the graph to the symbol name ", StyleBox["p0", FontWeight->"Bold"], " for later reference." }], "Text", PageWidth->PaperWidth], Cell[BoxData[ \(rateList = Table[{a + i\ h, \[CapitalDelta]A[i]\/h}, {i, 0, n - 1}]\)], "Input", PageWidth->PaperWidth], Cell[BoxData[ \(\(p0 = ListPlot[rateList, PlotStyle \[Rule] {RGBColor[0, 0, 1], PointSize[0.015]}, AxesLabel \[Rule] {\*"\"\<\!\(x\_i\)\>\"", \*"\"\<\!\(\ \[CapitalDelta]A\_i\/\[CapitalDelta]x\)\>\""}];\)\)], "Input", PageWidth->PaperWidth], Cell[TextData[{ "You have probably noticed that, for the area problem, the rate at which \ the total area of the rectangles accumulates with each added increment ", StyleBox["h ", FontSlant->"Italic"], "is simply ", Cell[BoxData[ \(TraditionalForm\`f(x\_i)\)]], ", the height of the ", Cell[BoxData[ \(TraditionalForm\`i\^th\)]], " rectangle. That is, ", Cell[BoxData[ \(TraditionalForm\`\(\[CapitalDelta]A(i)\)\/\[CapitalDelta]x = f(x\_i)\)]], "." }], "Text", PageWidth->PaperWidth], Cell[TextData[{ "Now we form a function that calculates the left Riemann sum of the ", Cell[BoxData[ \(TraditionalForm\`\[CapitalDelta]A\_i'\)]], "s for the first ", StyleBox["k", FontSlant->"Italic"], " rectangles, where ", StyleBox["k", FontSlant->"Italic"], " can range between 0 and ", Cell[BoxData[ \(TraditionalForm\`n\)]], "." }], "Text", PageWidth->PaperWidth], Cell[BoxData[ \(\(areaSum[ k_] := \[Sum]\+\(i = 0\)\%\(k - 1\)\[CapitalDelta]A[ i];\)\)], "Input", PageWidth->PaperWidth], Cell[TextData[{ "For example, we can use ", StyleBox["areaSum[ ] ", FontWeight->"Bold"], " to calculate the total signed area of the first four rectangles." }], "Text", PageWidth->PaperWidth], Cell[BoxData[ \(areaSum[4]\)], "Input", PageWidth->PaperWidth], Cell[TextData[{ "Or we can calculate the area of all ten rectangles. (Recall that we set ", Cell[BoxData[ \(TraditionalForm\`n = 10\)]], ".)" }], "Text", PageWidth->PaperWidth], Cell[BoxData[ \(areaSum[10]\)], "Input", PageWidth->PaperWidth], Cell[TextData[{ "Next, we form a list of the ordered pairs, in which the first element of \ each ordered pair is the ", StyleBox["x", FontSlant->"Italic"], "-coordinate of the left side of the last rectangle in the sum, and the \ second element in each ordered pair is the area of the first ", StyleBox["k", FontSlant->"Italic"], " rectangles." }], "Text", PageWidth->PaperWidth], Cell[BoxData[ \(arealist = Table[{a + k*h, areaSum[k]}, {k, 0, n}]\)], "Input", PageWidth->PaperWidth], Cell[TextData[{ "Now we plot the list of points and assign it to the symbol name ", Cell[BoxData[ FormBox[ StyleBox["p1", FontWeight->"Bold"], TraditionalForm]]], " for later use." }], "Text", PageWidth->PaperWidth], Cell[BoxData[ \(\(p1 = ListPlot[arealist, PlotStyle \[Rule] {RGBColor[1, 0, 0], PointSize[0.015]}, AxesLabel \[Rule] {\*"\"\<\!\(x\_k\)\>\"", \*"\"\<\!\(A\_total\)(k)\ \>\""}];\)\)], "Input", PageWidth->PaperWidth], Cell[TextData[{ "The function ", StyleBox["areaSum[ k ]", FontWeight->"Bold"], " looks as though it might be a quadratic polynomial, so now we use the ", StyleBox["Fit[ ] ", FontWeight->"Bold"], "command to see if there is a polynomial function that passes through the \ points. " }], "Text", PageWidth->PaperWidth], Cell[BoxData[ \(A\_approx[x_] = Fit[arealist, {1, x, x\^2}, x]\)], "Input", PageWidth->PaperWidth], Cell[TextData[{ "Now we plot ", Cell[BoxData[ FormBox[ RowBox[{ SubscriptBox[ StyleBox["A", FontWeight->"Bold", FontSlant->"Plain"], "approx"], "[", StyleBox["x", FontWeight->"Bold", FontSlant->"Plain"], "]"}], TraditionalForm]]], " and the points in ", StyleBox["arealist", FontWeight->"Bold"], " to show that the points do in fact lie on the graph of the quadratic \ polynomial. First, we plot ", Cell[BoxData[ FormBox[ RowBox[{ SubscriptBox[ StyleBox["A", FontWeight->"Bold", FontSlant->"Plain"], "approx"], "[", StyleBox["x", FontWeight->"Bold", FontSlant->"Plain"], "]"}], TraditionalForm]]], " and then show the two graphs on the same plot." }], "Text", PageWidth->PaperWidth], Cell[BoxData[ \(\(p2 = Plot[A\_approx[x], {x, a, a + n\ h}, PlotStyle \[Rule] {RGBColor[0, 0, 1]}, AxesLabel \[Rule] {"\", \*"\"\<\!\(A\_approx\)[x]\>\""}];\)\)], \ "Input", PageWidth->PaperWidth], Cell[BoxData[ \(\(Show[{p2, p1}, AxesLabel \[Rule] {"\", \*"\"\<\!\(A\_approx\)[x] & \ \!\(A\_total\)(k)\>\""}];\)\)], "Input", PageWidth->PaperWidth], Cell["The points appear to lie on the curve.", "Text", PageWidth->PaperWidth], Cell[TextData[{ "The slopes of the secant lines taken from the ", StyleBox["areaSum[ k_ ] ", FontWeight->"Bold"], "graph above give the rate at which the total area of the rectangles \ accumulates with each ", StyleBox["h ", FontSlant->"Italic"], "increment of ", StyleBox["x", FontSlant->"Italic"], ". Now let's calculate the slopes of the secant lines between consecutive \ pairs of points on the graph above and plot them." }], "Text", PageWidth->PaperWidth], Cell[BoxData[ \(msecant = Table[{a + k\ h, \(areaSum[k + 1] - areaSum[k]\)\/h}, {k, 0, n - 1}]\)], "Input", PageWidth->PaperWidth], Cell[BoxData[ \(\(p4 = ListPlot[msecant, PlotStyle \[Rule] {RGBColor[1, 0, 0], PointSize[0.02]}, AxesLabel \[Rule] {\*"\"\<\!\(x\_k\)\>\"", \*"\"\<\!\(m\_secant\)\>\ \""}];\)\)], "Input", PageWidth->PaperWidth], Cell[TextData[{ "But this is the same thing as ", Cell[BoxData[ StyleBox[\(\(\[CapitalDelta]A \((i)\)\)\/\[CapitalDelta]x\), FontWeight->"Bold"]]], "that we calculated at the beginning of this exercise. To confirm this, we \ show ", StyleBox["msecants ", FontWeight->"Bold"], "and ", Cell[BoxData[ StyleBox[\(\(\[CapitalDelta]A \((i)\)\)\/\[CapitalDelta]x\), FontWeight->"Bold"]]], " together on the same graph." }], "Text", PageWidth->PaperWidth], Cell[BoxData[ \(\(Show[{p4, p0}, AxesLabel \[Rule] {\*"\"\<\!\(x\_k\)\>\"", \ \*"\"\<\!\(\[CapitalDelta]A\_i\/\[CapitalDelta]x\) & \ \!\(m\_secant\)\>\""}];\)\)], "Input", PageWidth->PaperWidth], Cell[TextData[{ "It looks as though we've come full circle. In the \"", "You Try It\" ", "exercise that follows, you explore what happens as ", StyleBox["n", FontSlant->"Italic"], ", the number of rectangles, goes to infinity and as ", Cell[BoxData[ \(TraditionalForm\`h \[Rule] 0\)]], "." }], "Text", PageWidth->PaperWidth] }, Closed]], Cell[CellGroupData[{ Cell[TextData[{ "You Try It: Part I ", Cell[BoxData[ \(TraditionalForm\`-\)]], " Taking it to the Limit and Other Functions" }], "Section", PageWidth->PaperWidth], Cell[TextData[StyleBox["Chapter 4, Sections 3 and 4", FontWeight->"Bold"]], "Text", PageWidth->PaperWidth], Cell[TextData[{ "To help you with these exercises, we copy all of the commands from Part I \ into a single cell, the one that follows. In each exercise, you are asked to \ change some of the red entries and answer the questions. (Note that we have \ hidden all but the input commands and put them in a command called ", StyleBox["areas", FontWeight->"Bold"], ", the last command in the following cell. In addition, we suppress \ displaying the lists of values that are generated because they become too \ large when ", StyleBox["n", FontSlant->"Italic"], " is a big number.)\n\n1. For the function ", Cell[BoxData[ \(TraditionalForm\`f(x) = x\)]], ", considered in Part I, increase the number of rectangles, ", StyleBox["n", FontSlant->"Italic"], ", so that the total signed area of the rectangles approaches the total \ signed area under the graph of ", Cell[BoxData[ \(TraditionalForm\`f(x)\)]], ". Try ", Cell[BoxData[ \(TraditionalForm\`n = 25, \ 50, \ 100, \ 250, \ 500\)]], ". (For larger values of", StyleBox[" n", FontSlant->"Italic"], ", the evaluation of the commands will take a while because of the large \ number of ", Cell[BoxData[ \(TraditionalForm\`\[CapitalDelta]A\_i'\)]], "s that must be added to form each value of ", StyleBox["areaSum[ k ]", FontWeight->"Bold"], ". There are more efficient ways to calculate these sums, and these are \ investigated in the module \"", "Riemann, Trapezoids, and Simpson,\" included in this supplement.", " As ", StyleBox["n", FontSlant->"Italic"], " gets larger, what function is ", StyleBox["A[ x ]", FontWeight->"Bold"], " approaching? Also, as ", StyleBox["n ", FontSlant->"Italic"], "gets larger, ", Cell[BoxData[ \(TraditionalForm\`\[CapitalDelta]\ x = h\)]], StyleBox[" ", FontSlant->"Italic"], "gets closer to 0. What is the ", Cell[BoxData[ \(TraditionalForm\`\(\(\(lim\)\(\ \)\)\+\(\[CapitalDelta]\ x \[Rule] 0\)\) \[CapitalLambda]A\_i\/\(\[CapitalLambda]\ x\)\)]], "? In the limit as ", Cell[BoxData[ \(TraditionalForm\`n \[Rule] \[Infinity]\)]], " and ", Cell[BoxData[ \(TraditionalForm\`h \[Rule] 0\)]], ", what is the relationship between ", Cell[BoxData[ \(TraditionalForm\`\[CapitalLambda]A\_i\/\(\[CapitalLambda]\ x\)\)]], "and ", StyleBox["A[ x ]", FontWeight->"Bold"], "?\n\n2. Repeat Exercise 1 for the following: ", Cell[BoxData[ \(TraditionalForm\`f(x) = x\^2, \ a = \(-5\), \ b = 5, \)]], " and ", StyleBox["fitlist ", FontWeight->"Bold"], Cell[BoxData[ \(TraditionalForm\`\(\(=\)\({1, \ x, \ x\^2, \ x\^3}\)\)\)]], ".\n\n3. Repeat Exercise 1 for the following: ", Cell[BoxData[ \(TraditionalForm\`f(x) = cos\ x, \ a = 0, \ b = 2 \[Pi]\)]], ", and ", StyleBox["fitlist ", FontWeight->"Bold"], Cell[BoxData[ \(TraditionalForm\`\(\(=\)\(\ \)\({1, \ Cos[x], \ Sin[x]\ }\)\)\)]], ".\n\n4. Repeat Exercise 1 for the following: ", Cell[BoxData[ \(TraditionalForm\`f(x) = e\^x, \ a = \(-1\), \ b = 1, \)]], " and ", StyleBox["fitlist ", FontWeight->"Bold"], Cell[BoxData[ \(TraditionalForm\`\(\(=\)\({1, \ E\^x}\)\)\)]], ". (Note that in ", StyleBox["Mathematica", FontSlant->"Italic"], ", Euler's number ", StyleBox["e", FontSlant->"Italic"], " is represented by upper case ", StyleBox["E", FontSlant->"Italic"], ".)" }], "Text", PageWidth->PaperWidth], Cell[BoxData[{\(Clear[f, \[CapitalDelta]A, a, b, h, n];\), "\n", RowBox[{ RowBox[{\(f[x_]\), "=", StyleBox["x", FontColor->RGBColor[1, 0, 0]]}], ";"}], "\n", RowBox[{ RowBox[{"a", "=", StyleBox[\(-5\), FontColor->RGBColor[1, 0, 0]]}], ";"}], "\n", RowBox[{ RowBox[{"b", "=", StyleBox["10", FontColor->RGBColor[1, 0, 0]]}], ";"}], "\n", RowBox[{ RowBox[{"n", "=", StyleBox["10", FontColor->RGBColor[1, 0, 0]]}], ";"}], "\[IndentingNewLine]", RowBox[{ RowBox[{"fitlist", "=", RowBox[{"{", StyleBox[\(1, x, x\^2\), FontColor->RGBColor[1, 0, 0]], "}"}]}], ";"}], "\[IndentingNewLine]", \(areas;\)}], "Input", PageWidth->PaperWidth] }, Closed]], Cell[CellGroupData[{ Cell["Part II: Volumes", "Section", PageWidth->PaperWidth], Cell[TextData[StyleBox["Chapter 4, Sections 3 and 4\nChapter 5, Section 1", FontWeight->"Bold"]], "Text", PageWidth->PaperWidth], Cell[GraphicsData["Metafile", "\<\ CF5dJ6E]HGAYHf4PEfU^I6mgLb15CDHPAVmbKF5d0@0007bh0@0005P000000000oooookL600031@00 00000000001Q;`00G2<00215CDH00040^7`00502000500000000000000000000?`/00>T>003;0000 3@4000X0000@0000000000000009000040000;L600031@004P0000`000010000600000`000000002 DP0004`100010000a?ooo`0000000000000009010000000014004U@0J@1]06D0L`0P04h0I@1g0200 DP1_06d0H@1^0000000300000000000000000000000004=:DU=DDP0000000000I000004000010040 0P020000001B0d`4K`SZ2P00DP=<16l8jPY_2>X:@00N03l0AP1X0FP10`03000:@00?0040C51DX:K`SZ2T00000004H0J05X 0@<00`002T003`0104a@E34j000000000000000000000000000000000000^0/:00000`1_2>X:0000 000000000000000000000000000000000000000100000@0200X02P0:00X0000000000P0100000000 000000000:<100000000B0000000002@0@0000000000@G9YHF`00000000000000000000000000000 00000000000000000000000000000000000000410@410@410@4002D0000<00000P0005@0001D0000 7P800180000h0P00E@0000400017X^50Aj;Q@1h2000B00000@0004`0000400007P800100000K0`00 F0000500001i00006`0002D0000<00000@0005@0001D0000>@800180001C0P00E@0000400017X^50 Aj;Q@3T2000B00000@0004`0000400007P800100000K0`00F0000500000P00006`000280000<0000 ooooobD0000<00002000P2D0000<00001@00P2/0000H0000H`@00000001H1@00FP0000`0000@0000 00000000000U0000300000L0080U000030000000080Q0000200001h0000H0000I`@000@0001C1@00 E00002D0000<00000@000240000800007P0001P0001W100010000585001D00008@0000P0000N0000 600006L400040000DPD005@0000H000030000000000A0000300000P0000;000040000>/0001@0000 30000100001W1000100000X0000@0000000000000009000040000>0500000P005P0000`0000H0000 400000`0000100002P00010000000000000000T0000@0000h0D00002000U000030000000081B0000 C04000<00020o_oo0000000000000000T040004000040P0@E01Y06d0I@1c0200CP1U07L0801B06l0 K@1Q06h0000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000410@410@410@4002D0000<00000`0005@0001D0000NP@003/0002:1000 D`000040001]1HdoK@F=?g`0001P0@000@0004`000000000000000000000000000000500001V0000 K@0005@0001D0000]@@003/0003?1000D`000040001]1HdoK@F=?o01001P0@000@0004`000000000 000000000000000000000500001h0000[@0005@0001D0000:`D003/000151@00D`000040001]1Hdo K@F=?nP4001P0@000@0004`000000000000000000000000000000500001h0000[@000580001<0@00 1000083nool0000000000000002@0@00000000@2011D06T0K@1U07<0801>06D0M`0P0580K`1]0640 KP000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 000006iUHg@000002AHZ0m4RHfm];fec;gEY;gMYKVA_MfeQKV5WIG8_D64007ACMG9VHF=UCgM^IG80 QAlY0a8oHdMbHG1XJF=c05f4:@`000:h4001C00000@0006d5SCm]1HdoCP40060100010000C000000000000000 0000000000000000D00002P0I7:00000E00005@0003B1000>`000>D4001C00000@0006d5SCm]1Hdo ZP80060100010000C0000000000000000000000000000000D00002T0:EZ00000DP0004`100030000 P?koo`00000000000000090100000002108045<0N@1]0680K`1/0000I79QMe1_K7U/JFiU002i2bX3 ZBTXATI6ATI6BDTYEP0006UM:`>eoVAbHGMDdaZHGIQ;f5gM2mYKF5WIBm9KF5WIDmRLfEbMVEb>bUJ0000 5J0Z0g]`I79QMe=SHFaUI4U]HFMU0000mF4X0gSULfEd@faYL2QCJ000IBTPKfi/NB1cMG1`Kg9dLb1B IF=dHFiWK6DPKf9ZIF=dL`00000a:RP3BBAcIGA6Kfid@f5/K69QHf/0000000000000000000000000 0000000000010@410@410@41:DTU0000300000<0000X0000300000@0000U0000300000<0001C0000 E0000?H4000k00005PD005<000010000K@F=?fd5SCnF0`00H0400040001<00000000000000000000 00000000001@0000?F5`J=<0001B0000C04000@0000@00001`00000000000000_080000000040P8R D`1i07<0M01U06d0000[0j5lI79QMdU]HFMU0:WI:P=Z_2Qe]3BDU9BDaZHGIQ;f5gM2mBIF=dHFiW K6DkBE]9FdTYFP00JI`X0`00000000000000000000000000000000410@410@410@59BBD0000<0000 100002P0000<00000`0002D0000<00000@0002P0000<0000100004/000100000<00000D0000P0000 0@000040000@0000I`@000@0001B1@00E00006L400040000DPD005@0000`0000300000l0080U0000 300000L0080U000030000000080U000030000040000R000030000?oooolR000030000?oooomD0000 E000058500050000DPD004P000010000Aj;Q@4NRhD1B1@001@000040001<0000100006L400040000 DPD005@0001@0000801UIA/0000R000030000?oooolE0000300000@0000D0000300000L0000U0000 300000D0081A0000A0H00=h3001:0@00Y@@00444003N0`00BP40000000000000:00009P0001@0000 =04008@100301000000004H0IP380000n08002P0000X0000V00000400@000000000008T;00292`00 0P00008000000000oooo000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 000000000000000000000000000000000000000000000000no_kno_kno_ooooooooookno_kno_kno oooooooooookno_kno_knooooooooooo_kno_kno_koooooooooooo_kno_kno_koooooooooono_kno _kno_ooooooooooono_kno_kno_ooooooooookno_kno_knooooooooooookno_kno_knooooooooooo _kno_kno_koooooooooooo_kno_kno_koooooooooono_kno_kno_ooooooooooono_kno_kno_ooooo oooookno_kno_knooooooooooookno_kno_knooooooooooo_kno_kno_koooooooooooo_kno_kno_k oooooooooono_kno_kno_ooooooooooono_kno_kno_ooooooooookno_kno_knooooooooooookno_k no_knooooooooooo_kno_kno_koooooooooooo_kno_kno_koooooooooono_kno_kno_ooooooooooo no_kno_kno_ooooooooookno_kno_knooooooooooookno_kno_knooooooooooo_kno_kno_koooooo oooooo_kno_kno_koooooooooono_kno_kno_ooooooooooono_kno_kno_ooooooooookno_kno_kno oooooooooookno_kno_knooooooooooo_kno_kno_koooooooooooo_kno_kno_koooooooooono_kno _kno_ooooooooooono_kno_kno_ooooooooookno_kno_knooooooooooookno_kno_knooooooooooo _kno_kno_koooooooooooo_kno_kno_koooooooooono_kno_kno_ooooooooooono_kno_kno_ooooo oooookno_kno_knooooooooooookno_kno_knooooooooooo_kno_kno_koooooooooooo_kno_kno_k oooooooooono_kno_kno_ooooooooooono_kno_kno_ooooooooookno_kno_knooooooooooookno_k no_knooooooooooo_kno_kno_koooooooooooo_kno_kno_koooooooooono_kno_kno_ooooooooooo no_kno_kno_ooooooooookno_kno_knooooooooooookno_kno_knooooooooooo_kno_kno_koooooo oooooo_kno_kno_koooooooooono_kno_kno_ooooooooooono_kno_kno_ooooooooookno_kno_kno oooooooooookno_kno_knooooooooooo_kno_kno_koooooooooooo_kno_kno_koooooooooono_kno _kno_ooooooooooono_kno_kno_ooooooooookno_kno_knooooooooooookno_kno_knooooooooooo _kno_kno_koooooooooooo_kno_kno_koooooooooono_kno_kno_ooooooooooono_kno_kno_ooooo oooookno_kno_knooooooooooookno_kno_knooooooooooo_kno_kno_koooooooooooa@0000<0000 3@0002D0000<00002000P2D0000<00001000P2X0000H0000h@<004h1001m1000=0@001@0000<0000 1`00054000141P00gP<004X1002U1000@@@00=h3001:0@0000000000000X0000V0000500000d0@00 Q0400<0400000000AP1V00@0000000000000F0000 U0000500000d0@00Q040050200000000803<06h0003T0P00:00001H0002D00000@01000000000000 R@/008T;000200000P000000003oool0000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000003ooooomoOgmooooomoOgmo ooooooOgmoOoooooOgmoOoooooogmoOgooooogmoOgoooooomoOgmooooomoOgmoooooooOgmoOooooo OgmoOoooooogmoOgooooogmoOgoooooomoOgmooooomoOgmoooooooOgmoOoooooOgmoOoooooogmoOg ooooogmoOgoooooomoOgmooooomoOgmoooooooOgmoOoooooOgmoOoooooogmoOgooooogmoOgoooooo moOgmooooomoOgmoooooooOgmoOoooooOgmoOoooooogmoOgooooogmoOgoooooomoOgmooooomoOgmo ooooooOgmoOoooooOgmoOoooooogmoOgooooogmoOgoooooomoOgmooooomoOgmoooooooOgmoOooooo OgmoOoooooogmoOgooooogmoOgoooooomoOgmooooomoOgmoooooooOgmoOoooooOgmoOoooooogmoOg ooooogmoOgoooooomoOgmooooomoOgmoooooooOgmoOoooooOgmoOoooooogmoOgooooogmoOgoooooo moOgmooooomoOgmoooooooOgmoOoooooOgmoOoooooogmoOgooooogmoOgoooooomoOgmooooomoOgmo ooooooOgmoOoooooOgmoOoooooogmoOgooooogmoOgoooooomoOgmooooomoOgmoooooooOgmoOooooo OgmoOoooooogmoOgooooogmoOgoooooomoOgmooooomoOgmo5@0000`0000100005@0000`000040000 500000`0000700009@0000`000050020D@0004@6001`0`00BP4003L400111000L0<004X100000000 000002P0002H0000D00003@100240@00`0@00000001606H0b0000?P2000X0000:00009P000010040 0000000000292`00R@/000800002000000000?ooo`00000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 000000000000000000000000000000000000000000000000000000000000000000000?_kno_kno_k oooooooooono_kno_kno_ooooooooooono_kno_kno_ooooooooookno_kno_knooooooooooookno_k no_knooooooooooo_kno_kno_koooooooooooo_kno_kno_koooooooooono_kno_kno_ooooooooooo no_kno_kno_ooooooooookno_kno_knooooooooooookno_kno_knooooooooooo_kno_kno_koooooo oooooo_kno_kno_koooooooooono_kno_kno_ooooooooooono_kno_kno_ooooooooookno_kno_kno oooooooooookno_kno_knooooooooooo_kno_kno_koooooooooooo_kno_kno_koooooooooono_kno _kno_ooooooooooono_kno_kno_ooooooooookno_kno_knooooooooooookno_kno_knooooooooooo _kno_kno_koooooooooooo_kno_kno_koooooooooono_kno_kno_ooooooooooono_kno_kno_ooooo oooookno_kno_knooooooooooookno_kno_knooooooooooo_kno_kno_koooooooooooo_kno_kno_k oooooooooono_kno_kno_ooooooooooono_kno_kno_ooooooooookno_kno_knooooooooooookno_k no_knooooooooooo_kno_kno_koooooooooooo_kno_kno_koooooooooono_kno_kno_ooooooooooo no_kno_kno_ooooooooookno_kno_knooooooooooookno_kno_knooooooooooo_kno_kno_koooooo oooooo_kno_kno_koooooooooono_kno_kno_ooooooooooono_kno_kno_ooooooooookno_kno_kno oooooooooookno_kno_knooooooooooo_kno_kno_koooooooooooo_kno_kno_koooooooooono_kno _kno_ooooooooooono_kno_kno_ooooooooookno_kno_knooooooooooookno_kno_knooooooooooo _kno_kno_koooooooooooo_kno_kno_koooooooooono_kno_kno_ooooooooooono_kno_kno_ooooo oooookno_kno_knooooooooooookno_kno_knooooooooooo_kno_kno_koooooooooooo_kno_kno_k oooooooooono_kno_kno_ooooooooooono_kno_kno_ooooooooookno_kno_knooooooooooookno_k no_knooooooooooo_kno_kno_koooooooooooo_kno_kno_koooooooooono_kno_kno_ooooooooooo no_kno_kno_ooooooooookno_kno_knooooooooooookno_kno_knooooooooooo_kno_kno_koooooo oooooo_kno_kno_koooooooooono_kno_kno_ooooooooooono_kno_kno_ooooooooookno_kno_kno oooooooooolD0000300000d0000U0000300000P0080U0000300000@0080Z0000600007<3001>0@00 3`@003@4000D0000300000L0001A0000A0H00703001:0@00=`@00444001`0`00BP40000000000000 :00009P0001@0000=04008@100301000000004H0IP380000n08002P0000X0000V00000400@000000 000008T;00292`000P00008000000000oooo00000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000no_kno_kno_ooooo oooookno_kno_knooooooooooookno_kno_knooooooooooo_kno_kno_koooooooooooo_kno_kno_k oooooooooono_kno_kno_ooooooooooono_kno_kno_ooooooooookno_kno_knooooooooooookno_k no_knooooooooooo_kno_kno_koooooooooooo_kno_kno_koooooooooono_kno_kno_ooooooooooo no_kno_kno_ooooooooookno_kno_knooooooooooookno_kno_knooooooooooo_kno_kno_koooooo oooooo_kno_kno_koooooooooono_kno_kno_ooooooooooono_kno_kno_ooooooooookno_kno_kno oooooooooookno_kno_knooooooooooo_kno_kno_koooooooooooo_kno_kno_koooooooooono_kno _kno_ooooooooooono_kno_kno_ooooooooookno_kno_knooooooooooookno_kno_knooooooooooo _kno_kno_koooooooooooo_kno_kno_koooooooooono_kno_kno_ooooooooooono_kno_kno_ooooo oooookno_kno_knooooooooooookno_kno_knooooooooooo_kno_kno_koooooooooooo_kno_kno_k oooooooooono_kno_kno_ooooooooooono_kno_kno_ooooooooookno_kno_knooooooooooookno_k no_knooooooooooo_kno_kno_koooooooooooo_kno_kno_koooooooooono_kno_kno_ooooooooooo no_kno_kno_ooooooooookno_kno_knooooooooooookno_kno_knooooooooooo_kno_kno_koooooo oooooo_kno_kno_koooooooooono_kno_kno_ooooooooooono_kno_kno_ooooooooookno_kno_kno oooooooooookno_kno_knooooooooooo_kno_kno_koooooooooooo_kno_kno_koooooooooono_kno _kno_ooooooooooono_kno_kno_ooooooooookno_kno_knooooooooooookno_kno_knooooooooooo _kno_kno_koooooooooooo_kno_kno_koooooooooono_kno_kno_ooooooooooono_kno_kno_ooooo oooookno_kno_knooooooooooookno_kno_knooooooooooo_kno_kno_koooooooooooo_kno_kno_k oooooooooono_kno_kno_ooooooooooono_kno_kno_ooooooooookno_kno_knooooooooooookno_k no_knooooooooooo_kno_kno_koooooooooooo_kno_kno_koooooooooono_kno_kno_ooooooooooo no_kno_kno_ooooooooookno_kno_knooooooooooookno_kno_knooooooooooo_kno_kno_koooooo oooooa@0000<00003@0001D0000<00000@0002H0000L0000100000000004000010000000000U0000 300000@0000U0000300000D0080Z0000600007<3001>0@003`@003@4000U0000300000L0080X0000 300000@0000V0000700000@000000000100000@0000000009@0000`0000400009@0000`000050020 E`0002@0002d0`00`A>0BD0000<00001`00P2P0000<0000100002H0000L0000 100000000004000010000000008U0000300000@0000W0000600000<000000000_kno0000000U0000 300000<0000Z0000600006<3002k0@00i`<00=<3000U000030000000080X0000300000<0000U0000 300000L0080X0000300000@0000W0000600000@000000000_kno0000000U0000300000@0001=0000 K0000543002k0@00[P<00=83001A0`00^`4005h0000H0P008@3`0000000000000020?`0000000000 0020?`00000000000000000000000000000000000000000000000000000U000030000000080X0000 300000@0000V0000700000@000000000100000@0000000029@0000`0000400009`0001P000030000 00000;no_`0000009@0000`000030000:P0001P000060`00^`4008T3003C0`009@0000`000000020 :00000`0000300009@0000`000070020:00000`0000400009P0001`000040000000000@000040000 000002D0000<0000100002D0000<00001@00P5L0000T0000@P<00=03002m0`00e0<0008000140m83 ^`?B0bD0000<00001`00P2P0000<0000100002H0000L0000100000000004000010000000000U0000 300000@0000U0000300000D0081G0000900004<3002i0@00/@<00;d100020000A@>k0Jl3^`4U0000 300000L0080X0000300000@0000V0000700000@000000000100000@0000000029@0000`000040000 9`0001P00003000000000;no_`0000009@0000`000030000:P0001P0003`0P00;0800603001b0`00 9@0000`000000020:00000`0000300009@0000`000070020:00000`0000400009`0001P000040000 00000;no_`0000009@0000`000040000C@0006`0003P0P00;08002l3001a0`00h08002`2001@0000 AP400240l000000000000000P3l0000000000000P3l0000000000000000000000000000000000000 00000000000000009@0000`000000020:00000`0000400009P0001`000040000000000@000040000 00000RD0000<0000100002L0000H00000`000000002o_kl0000002D0000<00000`0002X0000H0000 X08002`2000@0`00LP<002D0000<00000000P2P0000<00000`0002D0000<00001`00P2P0000<0000 100002H0000L0000100000000004000010000000000U0000300000@0000U0000300000D0081G0000 90000=<2001`0`00?0<007@300020000e@9b0cX3LPd5gP861]82k@G50S`000080000@00001P0003]1@00a@8000D6003M0P00 9@0000`000070020:00000`0000300004`0000`0000200009@0000`0000800209@0000`000040020 EP0005@0000W0P00cP8002/2003B0P003P0002P2c`8W0]029`;@0RP2d@8Y0]82:@;B0R/2dP8[0]42 :`;@0R/2c`8[0/h2:P;>0RT2cP8X0/h2EP0005@0000]0P00b0800342003<0P003P0002d2b@8]0/X2 ;@;;0Rd2c08^0/`2;`;<0S02c08`0/`2<@;;0S42bP8`0/T2;`;80Rh2b08]0/T2EP0005@0000b0P00 ``8003H200370P003P0003<2``8b0/@20;00ST2`@8j0/42 >`;10S`2`@8l0/42?0;00S`2_`8l0[h2>`:m0SX2_@8i0[h2EP0005@0000n0P00]`800482002k0P00 3P0003h2^08n0[T2?P:j0Sh2^`8o0[/2@0:k0T42^`910[/2@P:j0T82^@910[P2@0:g0Sl2]`8n0[P2 EP0005@000130P00/P8004L2002f0P003P0004@2/P930[<2@`:d0T@2]@950[H2AP:f0TL2]@970[D2 A`:d0TL2/`970[82AP:b0TD2/P940[82EP0005@000190P00[08004d2002`0P003P0004X2[@990Zh2 B@:_0TX2/09;0[02C0:`0Td2/09=0[02C@:_0Td2[P9=0Zd2C0:/0T/2[09:0Zd2EP0005@0001?0P00 Y`8005<2002[0P003P0004l2Y`9?0ZP2C`:Y0Tl2ZP9@0Z/2D@:[0U82ZP9B0ZX2D`:Y0U<2Z09B0ZL2 D@:W0U02Y`9?0ZL2EP0005@0001D0P00X@8005P2002U0P003P0005D2X@9D0Z82E0:S0UD2Y09F0ZD2 E`:U0UP2Y09H0Z@2F0:S0UP2XP9H0Z42E`:Q0UH2X@9E0Z42EP0005@0001J0P00V`8005h2002O0P00 3P0005/2W09J0Yd2FP:N0U/2W`9L0Yl2G@:O0Uh2W`9N0Yl2GP:N0Uh2W@9N0Y`2G@:K0U`2V`9K0Y`2 EP0005@0001P0P00UP8006@2002J0P003P000602UP9P0YL2H0:H0V02V@9Q0YX2HP:J0V<2V@9S0YT2 I0:H0V@2U`9S0YH2HP:F0V42UP9P0YH2EP0005@0001U0P00T08006T2002D0P003P0006H2T09U0Y42 I@:B0VH2T`9W0Y@2J0:D0VT2T`9Y0Y<2J@:B0VT2T@9Y0Y02J0:@0VL2T09V0Y02EP0005@0001[0P00 RP8006l2002>0P003P0006`2R`9[0X`2J`:=0V`2SP9]0Xh2KP:>0Vl2SP9_0Xh2K`:=0Vl2S09_0X/2 KP::0Vd2RP9/0X/2EP0005@0001a0P00Q@8007D200290P003P000742Q@9a0XH2L@:70W42R09b0XT2 L`:90W@2R09d0XP2M@:70WD2QP9d0XD2L`:50W82Q@9a0XD2EP0005@0001f0P00O`8007X200230P00 3P0007L2P09f0X42MP:20WL2P`9h0X<2N@:30WX2P`9j0X<2NP:20WX2P@9j0X02N@9o0WP2O`9g0X02 EP0005@0001l0P00N@800802001m0P003P0007d2NP9l0W/2O09l0Wd2O@9n0Wd2O`9m0X02O@:00Wd2 P09l0X02N`:00WX2O`9i0Wh2N@9m0WX2EP0005@000220P00M08008H2001h0P003P000882M0:20WD2 PP9f0X82M`:30WP2Q09h0XD2M`:50WL2QP9f0XH2M@:50W@2Q09d0X<2M0:20W@2EP0005@000270P00 KP8008/2001b0P003P0008P2K`:70W02Q`9a0XP2LP:90W82RP9b0X/2LP:;0W82R`9a0X/2L0:;0Vl2 RP9^0XT2KP:80Vl2EP0005@0002=0P00J0800942001]0P003P0008h2J@:=0VX2S@9[0Xh2K0:?0Vd2 T09]0Y42K0:A0V`2T@9[0Y42JP:A0VT2T09X0Xl2J0:>0VT2EP0005@0002C0P00H`8009L2001W0P00 3P0009<2H`:C0V@2T`9U0Y<2IP:D0VL2U@9W0YH2IP:F0VH2U`9U0YL2I0:F0V<2U@9S0Y@2H`:C0V<2 EP0005@0002H0P00G@8009`2001Q0P003P0009T2GP:H0Ul2V09P0YT2H@:J0V42V`9Q0Y`2H@:L0V42 W09P0Y`2G`:L0Uh2V`9M0YX2G@:I0Uh2EP0005@0002N0P00F0800:82001L0P003P0009l2F0:N0UT2 WP9J0Yl2F`:P0U`2X@9L0Z82F`:R0U/2XP9J0Z82F@:R0UP2X@9H0Z02F0:O0UP2EP0005@0002T0P00 DP800:P2001F0P003P000:@2DP:T0U<2Y09D0Z@2E@:U0UH2YP9F0ZL2E@:W0UD2Z09D0ZP2D`:W0U82 YP9B0ZD2DP:T0U82EP0005@0002Z0P00C0800:h2001@0P003P000:X2C@:Z0Th2ZP9?0ZX2D0:[0U02 [09@0Zd2D0:]0U02[P9?0Zh2CP:]0Td2[09<0Z/2C0:Z0Td2EP0005@0002_0P00A`800;<2001;0P00 3P000;02A`:_0TP2[`990[02BP:a0T/2/P9;0[<2BP:c0TX2/`990[<2B0:c0TL2/P970[42A`:`0TL2 EP0005@0002e0P00@@800;T200150P003P000;D2@P:e0T<2]@940[D2A@:f0TD2]`950[P2A@:h0TD2 ^@940[T2@`:h0T82]`910[H2@@:e0T82EP0005@0002k0P00>`800;l2000o0P003P000;/2?0:k0Sd2 ^`8n0[/2?`:l0Sl2_@8o0[h2?`:n0Sl2_`8n0[l2?@:n0S`2_@8k0[`2>`:k0S`2EP0005@000300P00 =P800<@2000j0P003P000<42=P;00SL2`08h0/42>@;20SX2``8j0/@2>@;40ST2a08h0/@2=`;40SH2 ``8f0/82=P;10SH2EP0005@000360P00<080042000N0P003P000=d26P;M0Q/2g@8L0]d27@;N0Qh2g`8N0^027@;P0Qd2h@8L0^426`;P0QX2 g`8J0]h26P;M0QX2EP0005@0003R0P0050800>H2000H0P003P000><250;R0QD2hP8F0^<25`;T0QP2 i@8H0^H25`;V0QL2iP8F0^H25@;V0Q@2i@8D0^@250;S0Q@2EP0005@0003X0P003P800>`2000B0P00 3P000>P23`;X0Q02j08A0^P24P;Y0Q82jP8B0^/24P;[0Q82k08A0^`240;[0Pl2jP8>0^T23P;X0Pl2 EP0005@0003^0P002@800?82000=0P003P000>h22@;^0PX2kP8;0^h230;_0Pd2l08=0_4230;a0P`2 lP8;0_822P;a0PT2l0890^l22@;^0PT2EP0005@0003c0P000`800?L200070P003P000?@210;c0PD2 l`860_@21`;e0PL2mP870_L21`;g0PL2m`860_L21@;g0P@2mP830_D20`;d0P@2EP0005@0003i0P00 o@400?d200010P003P000?T2oP7i0_l1n@800_T20@;j0P42n`810_`20@;l0P42o@800_d2o`7l0_h1 n`;m0OX2o@7i0_h1EP0005@0003o0P00n04000<3003l0@003P000?l2n07o0_T1o`;j0Ol2n`400o`1 0@?l0@83n`420o/10`?j0@<3n@420oP10@?h0@03n07o0_P1EP0005@000040`00lP4000P3003f0@00 3P0000D3l`440o@110?e0@D3mP460oH11`?f0@P3mP480oH120?e0@P3m0480o<11`?b0@H3lP450o<1 EP0005@0000:0`00k04000h3003`0@003P0000X3k@4:0nh12P?_0@X3l04;0o0130?`0@d3l04=0o01 3P?_0@h3kP4=0nd130?/0@/3k04:0nd1EP0005@0000@0`00i`4001@3003[0@003P000103i`4@0nP1 40?Y0A03jP4A0n/14P?[0A<3jP4C0nX150?Y0A@3j04C0nL14P?W0A43i`4@0nL1EP0005@0000E0`00 h@4001T3003U0@003P0001H3hP4E0n<15@?T0AH3i@4G0nD160?U0AT3i@4I0nD16@?T0AT3h`4I0n81 60?Q0AL3h@4F0n81EP0005@0000K0`00g04001l3003P0@003P0001`3g04K0md16`?N0A`3g`4M0n01 7P?P0Al3g`4O0ml17`?N0Al3g@4O0m`17P?L0Ad3g04L0m`1EP0005@0000Q0`00eP4002D3003J0@00 3P000243eP4Q0mL18@?H0B43f@4R0mX18`?J0B@3f@4T0mT19@?H0BD3e`4T0mH18`?F0B83eP4Q0mH1 EP0005@0000V0`00d04002X3003D0@003P0002L3d@4V0m819P?C0BL3e04X0m@1:@?D0BX3e04Z0m@1 :P?C0BX3dP4Z0m41:@?@0BP3d04W0m41EP0005@0000/0`00b`400303003?0@003P0002d3b`4/0l`1 ;0?=0Bd3cP4^0ll1;`??0C03cP4`0lh1<0?=0C03c04`0l/1;`?;0Bh3b`4]0l/1EP0005@0000b0`00 a@4003H300390@003P000383a@4b0lH1P?30C/3``4k0l<1>`?20C/3`@4k0l01>P>o0CT3_`4h0l01EP0005@0000m0`00^P400443002n0@00 3P0003h3^P4m0k/1?@>l0Ch3_@4o0kh1@0>n0D43_@510kd1@@>l0D43^`510kX1@0>j0Cl3^P4n0kX1 EP0005@000130`00]04004L3002h0@003P0004<3]@530kH1@`>g0D<3^0540kP1A@>h0DH3^0560kP1 A`>g0DL3]P560kD1A@>d0D@3]0530kD1EP0005@000180`00[P4004`3002b0@003P0004T3[`580k01 B0>a0DT3/P5:0k81B`>b0D`3/P5<0k81C0>a0D`3/05<0jl1B`>^0DX3[P590jl1EP0005@0001>0`00 Z@400583002]0@003P0004l3Z@5>0jX1CP>[0Dl3[05@0jd1D@>]0E83[05B0j`1DP>[0E83ZP5B0jT1 D@>Y0E03Z@5?0jT1EP0005@0001D0`00X`4005P3002W0@003P0005@3Y05D0jD1E0>V0E@3Y`5E0jL1 EP>W0EL3Y`5G0jL1F0>V0EP3Y@5G0j@1EP>S0ED3X`5D0j@1EP0005@0001I0`00WP4005d3002R0@00 3P0005X3WP5I0il1F@>P0EX3X@5K0j81G0>R0Ed3X@5M0j41G@>P0Ed3W`5M0ih1G0>N0E/3WP5J0ih1 EP0005@0001O0`00V04006<3002L0@003P000603V05O0iT1G`>J0F03V`5Q0i`1HP>L0F<3V`5S0i/1 H`>J0F<3V@5S0iP1HP>H0F43V05P0iP1EP0005@0001U0`00TP4006T3002F0@003P0006D3T`5U0i@1 I@>E0FD3UP5V0iH1I`>F0FP3UP5X0iH1J@>E0FT3U05X0i<1I`>B0FH3TP5U0i<1EP0005@0001Z0`00 S@4006h3002A0@003P0006/3S@5Z0hh1JP>?0F/3T05/0i41K@>A0Fh3T05^0i01KP>?0Fh3SP5^0hd1 K@>=0F`3S@5[0hd1EP0005@0001`0`00Q`4007@3002;0@003P000743Q`5`0hP1L0>90G43RP5b0h/1 L`>;0G@3RP5d0hX1M0>90G@3R05d0hL1L`>70G83Q`5a0hL1EP0005@0001f0`00P@4007X300250@00 3P0007H3PP5f0h<1MP>40GH3Q@5g0hD1N0>50GT3Q@5i0hD1NP>40GX3P`5i0h81N0>10GL3P@5f0h81 EP0005@0001k0`00O04007l300200@003P0007`3O05k0gd1N`=n0G`3O`5m0h01OP>00Gl3O`5o0gl1 O`=n0Gl3O@5o0g`1OP=l0Gd3O05l0g`1EP0005@000210`00MP4008D3001j0@003P000883M`610gP1 P@=i0H83NP630gX1Q0=j0HD3NP650gX1Q@=i0HD3N0650gL1Q0=f0H<3MP620gL1EP0005@000270`00 L04008/3001d0@003P0008L3L@670g81Q`=c0HL3M0680g@1R@=d0HX3M06:0g@1R`=c0H/3LP6:0g41 R@=`0HP3L0670g41EP0005@0002=0`00J`400943001_0@003P0008d3J`6=0f`1S@=]0Hd3KP6>0fl1 S`=_0I03KP6@0fh1T@=]0I43K06@0f/1S`=[0Hh3J`6=0f/1EP0005@0002B0`00I@4009H3001Y0@00 3P0009<3IP6B0fL1TP=X0I<3J@6D0fT1U@=Y0IH3J@6F0fT1UP=X0IH3I`6F0fH1U@=U0I@3I@6C0fH1 EP0005@0002H0`00G`4009`3001S0@003P0009P3H06H0f41V0=R0IP3H`6I0f<1VP=S0I/3H`6K0f<1 W0=R0I`3H@6K0f01VP=O0IT3G`6H0f01EP0005@0002N0`00FP400:83001N0@003P0009h3FP6N0e/1 WP=L0Ih3G@6O0eh1X0=N0J43G@6Q0ed1XP=L0J83F`6Q0eX1X0=J0Il3FP6N0eX1EP0005@0002S0`00 E0400:L3001H0@003P000:@3E@6S0eH1X`=G0J@3F06U0eP1YP=H0JL3F06W0eP1Y`=G0JL3EP6W0eD1 YP=D0JD3E06T0eD1EP0005@0002Y0`00C`400:d3001C0@003P000:T3C`6Y0e01Z@=A0JT3DP6Z0e<1 Z`=C0J`3DP6/0e81[@=A0Jd3D06/0dl1Z`=?0JX3C`6Y0dl1EP0005@0002_0`00B@400;<3001=0@00 3P000:l3B@6_0dX1[`=;0Jl3C06`0dd1/@==0K83C06b0d`1/`=;0K<3BP6b0dT1/@=90K03B@6_0dT1 EP0005@0002d0`00@`400;P300170@003P000;D3A06d0dD1]0=60KD3A`6f0dL1]`=70KP3A`6h0dL1 ^0=60KP3A@6h0d@1]`=30KH3@`6e0d@1EP0005@0002j0`00?P400;h300120@003P000;X3?P6j0cl1 ^P=00KX3@@6k0d81_0=20Kd3@@6m0d41_P=00Kh3?`6m0ch1_00400<@3000l0@003P000<03>@700cX1`0P730cT1 `P0700cT1EP0005@000350`000c01c`<_0Ll3;P7>0bd1c@<]0L`3;@7;0bd1 EP0005@0003A0`009`400=D3000[0@003P000=43:07A0bT1d@03000P0@003P000=`3707L0ad1g0H3000J0@003P000>835`7R0aP1hP/3000E0@00 3P000>P34@7W0a81i`d32`7]0``1k@<=0Nd33P7^0`l1k`l030C_00/4k`0:1>l0EP0005@0000?1000j@0001<4003]00003P000104jP0?1>/0 3`C[0104k00A1>d04@C]01<4k@0C1>d04`C[01<4j`0B1>X04@CY0144j@0@1>X0EP0005@0000E1000 h`0001T4003W00003P0001D4i00E1>D05@CV01D4i`0F1>L05`CW01P4i`0H1>L06@CV01T4i@0H1>@0 5`CS01H4h`0E1>@0EP0005@0000J1000gP0001h4003R00003P0001/4gP0J1=l06PCP01/4h@0L1>80 7@CR01h4h@0N1>407PCP01h4g`0N1=h07@CN01`4gP0K1=h0EP0005@0000P1000f00002@4003L0000 3P000244f@0P1=X080CK0244g00R1=`08`CL02@4g00T1=`090CK02@4fP0T1=T08`CH0284f00Q1=T0 EP0005@0000V1000d`0002X4003G00003P0002H4d`0V1=@09PCE02H4eP0W1=L0:0CG02T4eP0Y1=H0 :PCE02X4e00Y1=<0:0CC02L4d`0V1=<0EP0005@0000[1000c@0002l4003A00003P0002`4c@0[1@C603X4a@0j1`C403/4``0j1<80>@C203P4`P0g1<80EP0005@0000l1000_000040400300000 3P0003d4_00l1;d0?0Bn03d4_`0n1<00?`C00404_`101;l0@0Bn0404_@101;`0?`Bl03h4_00m1;`0 EP0005@000121000]P0004H4002j00003P0004<4]`121;P0@PBi04<4^P141;X0A@Bj04H4^P161;X0 APBi04H4^0161;L0A@Bf04@4]P131;L0EP0005@000181000/@0004`4002e00003P0004P4/@181;80 B0Bc04P4]0191;D0BPBe04/4]01;1;@0C0Bc04`4/P1;1;40BPBa04T4/@181;40EP0005@0001=1000 Z`000544002_00003P0004h4[01=1:d0C@B^04h4[`1?1:l0D0B_0544[`1A1:l0D@B^0544[@1A1:`0 D0B[04l4Z`1>1:`0EP0005@0001C1000Y@0005L4002Y00003P0005@4YP1C1:L0D`BX05@4Z@1E1:T0 EPBY05L4Z@1G1:T0E`BX05L4Y`1G1:H0EPBU05D4Y@1D1:H0EP0005@0001I1000X00005d4002T0000 3P0005T4X01I1:40F@BR05T4X`1J1:@0F`BT05`4X`1L1:<0G@BR05d4X@1L1:00F`BP05X4X01I1:00 EP0005@0001N1000VP000684002N00003P0005l4V`1N19`0GPBM05l4WP1P19h0H@BN0684WP1R19h0 HPBM0684W01R19/0H@BJ0604VP1O19/0EP0005@0001T1000U00006P4002H00003P0006D4U@1T19H0 I0BG06D4V01V19P0I`BH06P4V01X19P0J0BG06P4UP1X19D0I`BD06H4U01U19D0EP0005@0001Z1000 S`0006h4002C00003P0006X4S`1Z1900JPBA06X4TP1[19<0K0BC06d4TP1]1980KPBA06h4T01]18l0 K0B?06/4S`1Z18l0EP0005@0001`1000R@0007@4002=00003P000704RP1`18/0L0B<0704S@1a18d0 LPB=07<4S@1c18d0M0B<07@4R`1c18X0LPB90744R@1`18X0EP0005@0001e1000Q00007T400280000 3P0007H4Q01e18D0M@B607H4Q`1g18P0N0B807T4Q`1i18L0N@B607T4Q@1i18@0N0B407L4Q01f18@0 EP0005@0001k1000OP0007l4002200003P0007/4OP1k17l0N`B007/4P@1l1880O@B207h4P@1n1840 O`B007l4O`1n17h0O@An07`4OP1k17h0EP0005@000211000N00008D4001l00003P000844N@2117X0 P@Ak0844O02217`0P`Al08@4O02417`0Q@Ak08D4NP2417T0P`Ah0884N02117T0EP0005@000261000 L`0008X4001g00003P0008L4L`2617@0QPAe08L4MP2817L0R@Ag08X4MP2:17H0RPAe08X4M02:17<0 R@Ac08P4L`2717<0EP0005@0002<1000K@000904001a00003P0008`4KP2<16l0S0A`08`4L@2=1740 SPAa08l4L@2?1740T0A`0904K`2?16h0SPA]08d4K@2<16h0EP0005@0002B1000I`0009H4001[0000 3P000984J02B16T0TPAZ0984J`2C16/0U0A[09D4J`2E16/0UPAZ09H4J@2E16P0U0AW09<4I`2B16P0 EP0005@0002G1000HP0009/4001V00003P0009P4HP2G16<0U`AT09P4I@2I16H0VPAV09/4I@2K16D0 V`AT09/4H`2K1680VPAR09T4HP2H1680EP0005@0002M1000G0000:44001P00003P0009d4G@2M15h0 W@AO09d4H02N1600W`AP0:04H02P1600X@AO0:44GP2P15d0W`AL09h4G02M15d04`0000`000010000 9P0001`000030000000000@000040000000002D0000<00000`0002D0000<00001@00P5L0000T0000 9`8005l0000[0P00cP800080000Y0/`2:@9Q02H0000L0000100000000004000010000000000U0000 300000@0000X0000300000<0000k0000200002D0000<0000100005L0000X00006`800600000h0P00 O@0000<0000f0W/0:P9R01d2N`0l000020000400000H00007@800680000e0P00NP0002D0000<0000 1`00P2P0000<0000100002D0000<00002000P2D0000<00001@00P2/0000H0000<0H00:L2002g1P00 mP8000`0000@000000000000000U0000300000L0080U000030000000080Q0000200001h0000H0000 =0H00:/2002c1P00l08002D0000<00000P0005@0001D0000=0H00:/2001>1P00kP8000400017X^50 Aj;Q@3@6002[0P000@0004`000040000=0H00:/2002b1P00l0800500001h06Ud6`0002D0000<0000 0@0005@0001D0000C`H00:/2001Y1P00kP8000400017X^50Aj;Q@4l6002[0P000@0004`000040000 =0H00:/2002b1P00l0800500000P06iW6`000280000<0000ooooobH0000L00001000000000040000 10000000000U0000300000@0000U0000300000D0081G000090000;d3002?1000`@<00=h400020000 _`>A1;l3g0@U0000300000L0080X0000300000@0000V0000700000@000000000100000@000000000 9@0000`0000400009@0000`000050020E`0002@0000k1000B@@003l4003O10000P0003d4B`@m1=d4 9@0000`000070020:00000`0000400009P0001`000040000000000@000040000000002D0000<0000 100002D0000<00001@00P5L0000T0000_0<00;T4000o1000_@@00080002n0k/4?@Bk12H0000L0000 0`0000000004000010000000000U0000300000<0000X0000300000@0000k0000200002D0000<0000 0`0005L0000X0000_0<00:d4003J0`00bP@000<0003H0jl4_P>l1=P3b0@l000020000400000H0000 _P<00:l4003G0`00a`@003/000080000E`0002P0000R1000[@@00404003:10000`0002@4b0@n1;`4 90B_13`000080000@00001P0000T1000[`@003d4003710009@0000`000070020:00000`000030000 9@0000`0000800209@0000`000050020:`0001P0002T0`00?0@00>X3002F10003000010000000000 000002D0000<00001`00P2D0000<00000000P240000800007P0001P0002X0`00@0@00>D3002@1000 9@0000`0000100008@0000P0000N000060000:P300101000i0<00904000Q0000200001h0000H0000 Z0<00404003T0`00T0@001P0000<000000000140000<0000200000/0000@0000?0000500000<0000 40000:P3001010002P00010000000000000000T0000@0000P0400002000F0000300001P0000@0000 30000040000:000040000000000000002@00010000200@00008002D0000<00000000P580001<0@00 0`00083nool0000000000000002@0@000@0000@2011D06T0K@1U07<0801>06D0M`0P0580K`1]0640 KP0007A_DgAbJFiW00000040002gZ6U^M6EbL79UM6ET0000000W0oPdKV5dJGIU000001FH9`>D14=? C@0008f`9`=[oTY9E2eSKfe`JFaUI000jI@W0iH>IV5cM2eYKWAULW1bIGAUI000eIDW0ng1I69WLWAi L6D004U;9`=VO6I/MG=XIF5SJ6=XHG800@0007hmKVmSM79/HfQQLW<0000002L3QkASKfd_KG<_I6ER MFL_@e9M5F4E3Gde?A4E< GdY9E00000010000A:=5F4E3Gde?A4E`0000010000 F?]WIGA@IG9]JG=cJFl00000@faQLg<0d@/Y0h@kJG=6MFa/NEAbMG=dIF@00000ANbU@300111000i0<008@400010000Aj;Q@4NRhD3T0`00@@@00040001<0000 10000:P300101000i0<00904001@0000801_HQ/0000R000030000?oooolU0000300000P0080U0000 300000D0080[000060000>L3002k1000KP@000<5000<000040000000000000009@0000`000070020 9@0000`0000000208@0000P0000N000060000>/300301000JP@00?d4000U000030000080001D0000 E0000>/30030100020@00?`400010000Aj;Q@4NRhD3[0`00`0@00040001<000010000>/300301000 J@@00?d4001@0000J00YEQh0000U000030000040001D0000E00000T4003010008`@00?`400010000 Aj;Q@4NRhD091000`0@00040001<000010000>/300301000J@@00?d4001@0000801_KA/0000R0000 30000?oooolW0000600000<000000000_kno0000000U0000300000<0001=0000K000000000390@00 P00003@200000000b@400840001/00008@3`0000000000000020?`00000000000020?`0000000000 0000000000000000000000000000000000000000000U000030000000080X0000300000<0000E0000 300000@0000U0000300000D0081A0000f04000P0002Q0P00Q00000T300080000X@80000000000000 6@0001D0001@0000=04008@1001D000000000200c01m0000J@0002P0000I00005@0000400@000000 000008T;00292`000P00008000000000l_;b00000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000OgmoOoooooogmoOg ooooogmoOgoooooomoOgmooooomoOgmoooooooOgmoOoooooOgmoOoooooogmoOgooooogmoOgoooooo moOgmooooomoOgmo5@0000`0000100009@0000`0000800209@0000`000050020:`0001P0001k0000 f0400<40000b0P003000010000000000000002D0000<00001`00P2D0000<00000000P24000080000 7P0001P000200000g@400;`0000/0P009@0000`0000100008@0000P0000N000060000800003M0@00 ^`0002`2000Q0000200001h0000H0000P0000=d1002l0000;@8001P0000<000000000140000<0000 200000/0000@0000?0000500000<000040000800003M0@002P00010000000000000000T0000@0000 P0400002000F0000300001P0000@000030000040000:000040000000000000002@00010000200@00 008002D0000<00000000P580001<0@000`00083nool0000000000000002@0@000@0000@2011D06T0 K@1U07<0801>06D0M`0P0580K`1]0640KP000?_kno_ooooooooookno_kno_knooooooooooookn`00 003knooooooooooo_kno_kno_koooooooooooo_kno_kno_koooooooooono_kno_kno_ooooooooooo no_kno_kno_ooooooooookno_kno_knooooooooooolD0000300000d0000E000030000040000V0000 700000@000000000100000@0000000009@0000`0000400009@0000`000050020:P0001P0001c0`00 CP4000l4000d1000000000000000000000000000000000000@410@410@410@009@0000`000030000 E00005@00023000050800:L0000[0P000@0006d5SCm]1Hdo4@00060100010000C000000000000000 0000000000000000D00005H0003]0000DP0004`1000400008?ooo`00000000000000090100010000 108045@0J@1]06D0L`0P04h0I@1g0200DP1_06d0H@1^0000?@@0050100020000_P=>0C/4CP4U0000 300000L000000000300000@0000V0000700000@000000000100000@0000000029@0000`000040000 9`0001P00003000000000;no_`0000009@0000`000030000:P0001P0001S0`00^`400>L3003C0`00 9@0000`000000020:0000000000300009@0000`000070020:00000`0000400009`0001P000040000 00000;no_`0000009@0000`00000000000000000000000000000000000010@410@410@41000U0000 300000@0000X0000300000<0000U0000300000@0001D0000E0000:D0000S0P00[P0002/200010000 K@F=?fd5SCo_0000`0400040001<0000000000000000000000000000001@0000J@000400001B0000 C04000<0000@00001`00000000000000_080000000040P8RD`1i07<0M01U06d000000000003801h? =00N3b52003@BP00od<00:1<000000000000008000001;/36@00000000000000b00N3`@04@3X@`00 h4/00?M3003GB`00od<001;003P@`00 `4/00=Q3002PB`00=00N3`00000200P0>480061<000Y@P00JD`00252001iC0008D80000000000000 0000000000000000000000410@410@410@4002D0000<00000`0002P0000<0000100002D0000<0000 0@0002P0000<00000`0004/000100000<00000D0000P00000@000040000@0000P0000=d1002k0000 ;0800800003M0@00^`0002`2000`0000300000l0080U0000300000L0080U000030000000080U0000 30000040000R000030000?oooolR000030000?oooomD0000E000000000000000ooooooooool10000 Aj;Q@4NRhD2l0000gP400040001<000010000800003M0@00^`0002`2001@0000800001/0000R0000 30000?oooolU0000300000P0080U0000300000D0080[0000600007l0002]0P00k@0000L3000<0000 40000000000000009@0000`0000700209@0000`0000000208@0000P0000N0000600008<0002a0P00 j0000043000U000030000040000Q0000200001h0000H0000P`000;42003W00000@<0024000080000 7P0001P000230000/@800>L000010`00600000`0000000004@0000`0000800002`000100001T0000 D00000`0000@0000P`000;42000:000040000000000000002@00010000200P00008001H0000<0000 60000100000<00000@0000X0000@000000000000000900004000080200000P009@0000`000000020 DP0004`100030000P?koo`00000000000000090100000002108045<0N@1]0680K`1/0000000<0000 1`00P2P0000<0000100002H0000L000010000000000400001000000000000000300000@0000W0000 600000<000000000_kno0000000U0000300000<0000Z0000600009/2001j0P00i`8002h3000U0000 30000000080X0000300000<0000U0000300000L0080X0000300000@0000W00006000000000000000 _kno0000000U0000300000@0001=0000K0000902001j0P00aP8002d3002@0P00NP8003L000000000 00000000000000000000000000010@410@410@41000U0000300000<0001C0000E00008d0003X0P00 /@00000300010000K@F=?fd5SCln0000H0400040001<0000000000000000000000000000001@0000 A0000>`0001B0000C04000@00020o_oo0000000000000000T040004000040P0@E01Y06d0I@1c0200 CP1U07L0801B06l0K@1Q06h000000020:00000`0000300009@0000`000070020:000000000040000 9P0001`000040000000000@000040000000002D0000<0000100002D0000<00001@00P5L0000T0000 Q`8002`3003?0P00<0<0008000290Rh3c@8^0bD0000<00001`00P2P0000<0000100002H0000L0000 000000000004000010000000000U0000300000@0000U0000300000D0081G0000900008L2001h0P00 b@800000000000000000000000000000000000410@410@410@4002D0000<0000100002P0000<0000 0`0002D0000<0000100005@0001D0000/@000>P2003E000000<00040001]1HdoK@F=?bP1001P0@00 0@0004`000000000000000000000000000000500001F0000k0000580001<0@000`00023oool00000 00000000002@0@000@0000@2011D06T0K@1U07<0801>06D0M`0P0580K`1]0640KP000080002a1=42 1PKA0RH0000L00000`0000000004000000000000000U0000300000<0000X0000300000@0000k0000 200002D0000<00000`0005L0000X0000j`D00<<200081P00h08000<0003]1Mh21PKB0^d5a@8l0000 20000400000H0000k@D000800;d200000000 `@8000h0000i0[h2>0:o0SP2`0800040000000400000000000000000000000000000004000000000 :/C^P@008`00000000000000000002<000000000000000000000004000000?3NkX400000l=k^P@00 0000000000000=L0aP1>14H3EPFZ0TP7aP37oP400@000040001l0G41000000000@00000000000000 000000400000000000000000000000000000000000010@410@410@41000U0000300000@0000X0000 300000<0000U000030000040000X0000300000@0001;0000@0000300000500008000004000010000 400008<0002a0P00i`00004300230000/@800>L000010`00<00000`0000?00209@0000`000070020 9@0000`0000000209@0000`0000100008P0000`0003ooooo8P0000`0003oooooE00005@0003W0000 /P800>L0003e0P000@0004NRhD17X^50i`000;8200010000C00000@000230000/@800>L000010`00 D0000200000K00008P0000`0003ooooo3P0001@000000000400001@0 \>"], "Graphics", PageWidth->PaperWidth, ImageSize->{429, 320.313}, ImageMargins->{{0, 0}, {0, 0}}, ImageRegion->{{0, 1}, {0, 1}}], Cell[TextData[{ StyleBox["Note:", FontWeight->"Bold"], " In this exercise, \[CapitalDelta]", Cell[BoxData[ FormBox[ SubscriptBox[ StyleBox["V", FontSlant->"Italic"], "i"], TraditionalForm]]], " represents the volume of the ", Cell[BoxData[ FormBox[ SuperscriptBox[ StyleBox["i", FontSlant->"Italic"], "th"], TraditionalForm]]], " disk, as shown in the figure above.\n\nOur first objective is to form a \ function, ", StyleBox["volumeSum[ k ]", FontWeight->"Bold"], ", that estimates the volume of the solid that is generated when the region \ bounded by the graph of a function ", Cell[BoxData[ \(TraditionalForm\`f(x)\)]], ", the ", StyleBox["x", FontSlant->"Italic"], "-axis, and the vertical lines ", Cell[BoxData[ \(TraditionalForm\`x\ = \ a\)]], " and ", Cell[BoxData[ \(TraditionalForm\`x\ = \ \(x\_k = a + k\ h\)\)]], " is rotated about the ", StyleBox["x", FontSlant->"Italic"], "-axis. We do this by adding the ", Cell[BoxData[ \(TraditionalForm\`\[CapitalDelta]V\_i'\)]], "s, the volumes of the first ", StyleBox["k", FontSlant->"Italic"], " disks, where ", StyleBox["k", FontSlant->"Italic"], " can range from 0 up to ", StyleBox["n", FontSlant->"Italic"], ", the number of disks of thickness ", StyleBox["h", FontSlant->"Italic"], " between ", Cell[BoxData[ \(TraditionalForm\`x = a\)]], " and ", Cell[BoxData[ \(TraditionalForm\`x = b\)]], ".\n\nFor the function ", StyleBox["f", FontSlant->"Italic"], "(", StyleBox["x", FontSlant->"Italic"], ") = ", StyleBox["x", FontSlant->"Italic"], ", we write \[CapitalDelta]", Cell[BoxData[ \(TraditionalForm\`V\_i\)]], ", the volume of the ", Cell[BoxData[ \(TraditionalForm\`i\^th\)]], " disk, in terms of", Cell[BoxData[ FormBox[ RowBox[{" ", RowBox[{"f", "(", FormBox[ SubscriptBox[ StyleBox["x", FontSlant->"Italic"], "i"], "TraditionalForm"], ")"}]}], TraditionalForm]]], " and ", StyleBox["h", FontSlant->"Italic"], ",", StyleBox[" ", FontSlant->"Italic"], "where ", Cell[BoxData[ FormBox[ RowBox[{ FormBox[ SubscriptBox[ StyleBox["x", FontSlant->"Italic"], StyleBox["i", FontSlant->"Italic"]], "TraditionalForm"], " ", "=", " ", \(a + i\ h\)}], TraditionalForm]]], StyleBox[". ", FontSlant->"Italic"], "At first, we let ", Cell[BoxData[ \(TraditionalForm\`a\ = \ \(-5\)\)]], ", ", Cell[BoxData[ \(TraditionalForm\`b = 5\)]], ", and ", Cell[BoxData[ \(TraditionalForm\`n = 10\)]], "." }], "Text", PageWidth->PaperWidth], Cell[BoxData[{ \(\(Clear[f, \[CapitalDelta]V, a, b, h, n];\)\), "\[IndentingNewLine]", \(\(f[x_] = x;\)\), "\[IndentingNewLine]", \(\(a = \(-5\);\)\), "\[IndentingNewLine]", \(\(b = 5;\)\), "\[IndentingNewLine]", \(\(n = 10;\)\), "\[IndentingNewLine]", \(\(h = \((b - a)\)/n;\)\), "\[IndentingNewLine]", \(\[CapitalDelta]V[i_] = \[Pi]\ \((f[a + i*h])\)\^2*h\)}], "Input", PageWidth->PaperWidth], Cell[TextData[{ "The function ", Cell[BoxData[ \(TraditionalForm\`\(\[CapitalDelta]V(i)\)\/\[CapitalDelta]x\)]], " is the rate at which the total volume of the solid accumulates with each \ increment of ", StyleBox["h", FontSlant->"Italic"], " added to ", StyleBox["x", FontSlant->"Italic"], ". We generate a list of the rate-of-change values for each ", Cell[BoxData[ \(TraditionalForm\`x\_i = a + i\ h\)]], ", plot the rate of change versus ", Cell[BoxData[ \(TraditionalForm\`x\_i\)]], ", and then assign the graph to the symbol name ", StyleBox["p0", FontWeight->"Bold"], " for later reference." }], "Text", PageWidth->PaperWidth], Cell[BoxData[ \(rateList = Table[{a + i\ h, \[CapitalDelta]V[i]\/h}, {i, 0, n - 1}]\)], "Input", PageWidth->PaperWidth], Cell[BoxData[ \(\(p0 = ListPlot[rateList, PlotStyle \[Rule] {RGBColor[0, 0, 1], PointSize[0.0175]}, AxesLabel \[Rule] {\*"\"\<\!\(x\_i\)\>\"", \*"\"\<\!\(\ \[CapitalDelta]V\_i\/\[CapitalDelta]x\)\>\""}];\)\)], "Input", PageWidth->PaperWidth], Cell[TextData[{ "You have probably noticed that, for the volume problem, the rate at which \ the total volume of the disks accumulates with each added increment ", StyleBox["h ", FontSlant->"Italic"], "is ", Cell[BoxData[ \(TraditionalForm\`\[Pi]\ \(f(x\_i)\)\^2\)]], ", the area of the circular end of the ", Cell[BoxData[ \(TraditionalForm\`i\^th\)]], " disk. That is, ", Cell[BoxData[ FormBox[ RowBox[{\(\(\[CapitalDelta]V(i)\)\/\[CapitalDelta]x\), "=", " ", FormBox[\(\[Pi]\ \(f(x\_i)\)\^2\), "TraditionalForm"]}], TraditionalForm]]], "." }], "Text", PageWidth->PaperWidth], Cell[TextData[{ "Now we form a function that calculates the left Riemann sum of the ", Cell[BoxData[ \(TraditionalForm\`\[CapitalDelta]V\_i'\)]], "s for the first ", StyleBox["k", FontSlant->"Italic"], " disks where ", StyleBox["k", FontSlant->"Italic"], " can range between 0 and ", Cell[BoxData[ \(TraditionalForm\`n\)]], "." }], "Text", PageWidth->PaperWidth], Cell[BoxData[ \(\(volumeSum[ k_] := \[Sum]\+\(i = 0\)\%\(k - 1\)\[CapitalDelta]V[ i];\)\)], "Input", PageWidth->PaperWidth], Cell[TextData[{ "We form a list of the ordered pairs, in which the first element of each \ ordered pair is the ", StyleBox["x", FontSlant->"Italic"], "-coordinate of the left side of the last disk in the sum, and the second \ element in each ordered pair is the volume of the first ", StyleBox["k", FontSlant->"Italic"], " disks." }], "Text", PageWidth->PaperWidth], Cell[BoxData[ \(volumelist = Table[{a + k*h, volumeSum[k]}, {k, 0, n}]\)], "Input", PageWidth->PaperWidth], Cell[TextData[{ "Let's plot the list of points and assign it to the symbol name ", Cell[BoxData[ FormBox[ StyleBox["p1", FontWeight->"Bold"], TraditionalForm]]], " for later use." }], "Text", PageWidth->PaperWidth], Cell[BoxData[ \(\(p1 = ListPlot[volumelist, PlotStyle \[Rule] {RGBColor[1, 0, 0], PointSize[0.0175]}, AxesLabel \[Rule] {\*"\"\<\!\(x\_k\)\>\"", \*"\"\<\!\(V\_total\)(k)\ \>\""}, PlotRange \[Rule] All];\)\)], "Input", PageWidth->PaperWidth], Cell[TextData[{ "The function ", StyleBox["volumeSum[ k ]", FontWeight->"Bold"], " appears to be a cubic polynomial, so now we use the ", StyleBox["Fit[ ] ", FontWeight->"Bold"], "command to see if there is a cubic function that passes through the \ points. " }], "Text", PageWidth->PaperWidth], Cell[BoxData[ \(V\_approx[x_] = Fit[volumelist, {1, x, x\^2, x\^3}, x]\)], "Input", PageWidth->PaperWidth], Cell[TextData[{ "Now we plot ", Cell[BoxData[ FormBox[ RowBox[{ SubscriptBox[ StyleBox["V", FontWeight->"Bold", FontSlant->"Plain"], "approx"], "[", StyleBox["x", FontWeight->"Bold", FontSlant->"Plain"], "]"}], TraditionalForm]]], " and the points in ", StyleBox["volumelist", FontWeight->"Bold"], " to show that the points do in fact lie on the graph of the cubic \ polynomial. First, we plot ", Cell[BoxData[ FormBox[ RowBox[{ SubscriptBox[ StyleBox["V", FontWeight->"Bold", FontSlant->"Plain"], "approx"], "[", StyleBox["x", FontWeight->"Bold", FontSlant->"Plain"], "]"}], TraditionalForm]]], " and then show the two graphs on the same plot." }], "Text", PageWidth->PaperWidth], Cell[BoxData[ \(\(p2 = Plot[V\_approx[x], {x, a, a + n\ h}, PlotRange \[Rule] All, PlotStyle \[Rule] {RGBColor[0, 0, 1]}, AxesLabel \[Rule] {"\", \*"\"\<\!\(V\_approx\)[x]\>\""}];\)\)], \ "Input", PageWidth->PaperWidth], Cell[BoxData[ \(\(Show[{p2, p1}, AxesLabel \[Rule] {"\", \*"\"\<\!\(V\_approx\)[x] & \ \!\(V\_total\)(k)\>\""}];\)\)], "Input", PageWidth->PaperWidth], Cell["The points appear to lie on the curve.", "Text", PageWidth->PaperWidth], Cell[TextData[{ "The slopes of the secant lines taken from the ", StyleBox["volumeSum[ k_ ] ", FontWeight->"Bold"], "graph give the rate at which the total area of the rectangles accumulates \ with each ", StyleBox["h ", FontSlant->"Italic"], "increment of ", StyleBox["x", FontSlant->"Italic"], ". Now let's calculate the slopes of the secant lines between consecutive \ pairs of points on the graph above and plot them." }], "Text", PageWidth->PaperWidth], Cell[BoxData[ \(msecants = Table[{a + k\ h, \(volumeSum[k + 1] - volumeSum[k]\)\/h}, {k, 0, n - 1}]\)], "Input", PageWidth->PaperWidth], Cell[BoxData[ \(\(p4 = ListPlot[msecants, PlotStyle \[Rule] {RGBColor[1, 0, 0], PointSize[0.0225]}, AxesLabel \[Rule] {\*"\"\<\!\(x\_k\)\>\"", \*"\"\<\!\(m\_secant\)\>\ \""}];\)\)], "Input", PageWidth->PaperWidth], Cell[TextData[{ "But this is the same thing as ", Cell[BoxData[ StyleBox[\(\(\[CapitalDelta]V \((i)\)\)\/\[CapitalDelta]x\), FontWeight->"Bold"]]], "that we calculated at the beginning of this exercise. To confirm this, we \ show ", StyleBox["msecants ", FontWeight->"Bold"], "and ", Cell[BoxData[ StyleBox[\(\(\[CapitalDelta]V \((i)\)\)\/\[CapitalDelta]x\), FontWeight->"Bold"]]], " together on the same graph." }], "Text", PageWidth->PaperWidth], Cell[BoxData[ \(\(Show[{p4, p0}, AxesLabel \[Rule] {\*"\"\<\!\(x\_k\)\>\"", \ \*"\"\<\!\(\[CapitalDelta]V\_i\/\[CapitalDelta]x\) & \!\(m\_secants\)\>\""}];\ \)\)], "Input", PageWidth->PaperWidth], Cell["It looks as though we've come full circle again.", "Text", PageWidth->PaperWidth] }, Closed]], Cell[CellGroupData[{ Cell[TextData[{ "You Try It: Part II ", Cell[BoxData[ \(TraditionalForm\`-\)]], " Taking it to the Limit and Another Function" }], "Section", PageWidth->PaperWidth], Cell["\<\ Chapter 4, Sections 3 and 4 Chapter 5, Section 1\ \>", "Text", PageWidth->PaperWidth, FontWeight->"Bold"], Cell[TextData[{ "To help you with these exercises, we again copy all of the commands from \ Part II into a single cell, the one that follows. In each exercise, you are \ asked to change some of the red entries and answer the questions. (Note that \ we have hidden all but the input commands and put them in a command called ", StyleBox["volumes", FontWeight->"Bold"], ", the last command in the following cell. In addition, we suppress \ displaying the lists of values that are generated because they become too \ large when ", StyleBox["n", FontSlant->"Italic"], " is a big number.)\n\n1. For the function ", Cell[BoxData[ \(TraditionalForm\`f(x) = x\)]], ", considered in Part II, increase ", StyleBox["n", FontSlant->"Italic"], ", the number of disks between ", Cell[BoxData[ \(TraditionalForm\`x = a\)]], " and ", Cell[BoxData[ \(TraditionalForm\`x = b\)]], ", so that the total volume of the disks approaches the volume of \ revolution. Try ", Cell[BoxData[ \(TraditionalForm\`n = 25, \ 50, \ 100, \ 250, \ 500\)]], ". (For larger values of", StyleBox[" n", FontSlant->"Italic"], ", the evaluation of the commands will take a while because of the large \ number of ", Cell[BoxData[ \(TraditionalForm\`\[CapitalDelta]V\_i'\)]], "s that must be added to form each value of ", StyleBox["volumeSum[ k ]", FontWeight->"Bold"], ".) As ", StyleBox["n", FontSlant->"Italic"], " gets larger, what function does ", StyleBox["V[ x ]", FontWeight->"Bold"], " appear to be approaching? Also, as ", StyleBox["n ", FontSlant->"Italic"], "gets larger, ", Cell[BoxData[ \(TraditionalForm\`\[CapitalDelta]\ x = h\)]], StyleBox[" ", FontSlant->"Italic"], "gets closer to 0. What is the ", Cell[BoxData[ \(TraditionalForm\`\(\(\(lim\)\(\ \)\)\+\(\[CapitalDelta]\ x \[Rule] 0\)\) \[CapitalLambda]V\_i\/\(\[CapitalLambda]\ x\)\)]], "? In the limit as ", Cell[BoxData[ \(TraditionalForm\`n \[Rule] \[Infinity]\)]], " and ", Cell[BoxData[ \(TraditionalForm\`h \[Rule] 0\)]], ", what is the relationship between ", Cell[BoxData[ \(TraditionalForm\`\[CapitalLambda]V\_i\/\(\[CapitalLambda]\ x\)\)]], "and ", StyleBox["V[ x ]", FontWeight->"Bold"], "?\n\n2. Repeat Exercise 1 for the following: ", Cell[BoxData[ \(TraditionalForm\`f(x) = sin\ x, \ a = 0, \ b = 2 \[Pi], \)]], " and ", StyleBox["fitlist ", FontWeight->"Bold"], Cell[BoxData[ \(TraditionalForm\`\(\(=\)\({1, x, sin\ 2 x, cos\ 2 x}\)\)\)]], ". Explain the stair-step pattern in the graph of ", StyleBox["V[x]", FontWeight->"Bold"], ",", " and explain why we chose the functions in ", StyleBox["fitlist", FontWeight->"Bold"], " for the ", StyleBox["Fit[ ]", FontWeight->"Bold"], " command." }], "Text", PageWidth->PaperWidth], Cell[BoxData[{\(Clear[f, \[CapitalDelta]V, a, b, h, n];\), "\n", RowBox[{ RowBox[{\(f[x_]\), "=", StyleBox["x", FontColor->RGBColor[1, 0, 0]]}], ";"}], "\n", RowBox[{ RowBox[{"a", "=", StyleBox[\(-5\), FontColor->RGBColor[1, 0, 0]]}], ";"}], "\n", RowBox[{ RowBox[{"b", "=", StyleBox["5", FontColor->RGBColor[1, 0, 0]]}], ";"}], "\n", RowBox[{ RowBox[{"n", "=", StyleBox["10", FontColor->RGBColor[1, 0, 0]]}], ";"}], "\[IndentingNewLine]", RowBox[{ RowBox[{"fitlist", "=", RowBox[{"{", StyleBox[\(1, x, x\^2, x\^3\), FontColor->RGBColor[1, 0, 0]], "}"}]}], ";"}], "\[IndentingNewLine]", \(volumes;\)}], "Input", PageWidth->PaperWidth] }, Closed]], Cell[CellGroupData[{ Cell["Part III: Lengths of Arc", "Section", PageWidth->PaperWidth], Cell[TextData[StyleBox["Chapter 5, Section 3", FontWeight->"Bold"]], "Text", PageWidth->PaperWidth], Cell[GraphicsData["Metafile", "\<\ CF5dJ6E]HGAYHf4PEfU^I6mgLb15CDHPAVmbKF5d0@0005l/0@0005P00000000000000307002^0`00 00000000002fX1000500000000000000000000?`/00>T>003;0000 3@4000X0000@0000000000000009000040000307002^0`004P0000`000010000600000`000000002 DP0004`100010000a?ooo`0000000000000009010000000014004U@0J@1]06D0L`0P04h0I@1g0200 DP1_06d0H@1^0000000300000000000000000000000004=:DU=DDP0000000000I000004000010040 0P020000001B0d`4K`SZ2P00DP=<16l8jPY_2>X:@00N03l0AP1X0FP10`03000:@00?0040C51D4200040000 >P?L0S`3h@8F18H250B10Q<0000<00000@0001<0000<00000P0002D0000<00002000P2L0000H0000 0`000000001IFET0000002D0000<00000`0005H0000/00004P@00;H1003b1000Q`8000@0000B1802 6@B70_84_@7[1;H14`0000`0000100009@0000`000000020:00000`0000300009@0000`000080020 9@0000`000050020:`0001P0001C0P000@000303001C00003000010000000000000002D0000<0000 1`00P2D0000<00000000P240000800007P0001P0001G0P001@0002`3001>0000DP0004`100030000 a?ooo`0000000000000009010001000014004U@0J@1]06D0L`0P04h0I@1g0200DP1_06d0H@1^0000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000010@410@410@41000U0000300000<0001D0000E00005L200070000L@8004X000010000 Aj;Q@4NRhD1G0P001`000040001<0000100005L200050000:`<004h0001@0000N@0001/0000U0000 30000040001D0000E000078200070000S08004X000010000Aj;Q@4NRhD1b0P001`000040001<0000 100005L200050000:`<004h0001@0000800001/0000R000030000?oooolU0000300000P0080U0000 300000D0080[000060000><4000@0000l@D007@0000<000040000000000000009@0000`000070020 9@0000`0000000208@0000P0000N000060000>P4000D0000k@D006h0000U000030000040000Q0000 200001h0000H0000j0@001@0003/1@00KP000240000800007P0001P0003X100050000>`5001^0000 600000`0000000004@0000`0000800002`00010000040@00FP0000`0000@0000j0@001@0000:0000 40000000000000002@00010000201P00@08001H0000<000060000100000<00000@0000X0000@0000 00000000000900004000080600100P009@0000`000000020DP0004`100020000P?koo`0000000000 0000090100010000108045@0J@1]06D0L`0P04h0I@1g0200DP1_06d0H@1^00000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000010@41 0@410@41000U000030000080001D0000E0000?/4001E00002`D006d000010000K@F=?fd5SCml0000 X0400040001<0000000000000000000000000000001@0000IP0006`0001D0000E00003H5001E0000 D0D006d000010000K@F=?fd5SCo`0@00X0400040001<0000000000000000000000000000001@0000 N0000:`0001D0000E0000:`5001E0000aPD006d000010000K@F=?fd5SCoX1000X0400040001<0000 000000000000000000000000001@0000N0000:`0001B0000C04000@00020o_oo0000000000000000 T040000000040P0@E01Y06d0I@1c0200CP1U07L0801B06l0K@1Q06h0000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000410@410@41 0@4002D0000<0000100002P0000<00000P0002D0000<0000100005@0001D000070D005D0000_1@00 K@000040001]1HdoK@F=?dh1002P0@000@0004`000000000000000000000000000000500000X0000 P00005@0001D0000D`D005D0001V1@00K@000040001]1HdoK@F=?jX2002P0@000@0004`000000000 000000000000000000000500000Y0000P0000580001<0@000P00083nool0000000000000002@0@00 00000P@2011C07T0K@1R06l0K0000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000@410@410@410@00 9@0000`000020000:00000`0000400009@0000`000020000D`0005@0001g1@00E@0009L5001]0000 0@0006d5SCm]1HdoUP<00:0100010000C0000000000000000000000000000000D00003d0003C0000 DP0004`1000400008?ooo`00000000000000090100000000108045@0J@1]06D0L`0P04h0I@1g0200 DP1_06d0H@1^00000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000010@410@410@41000U0000300000@0000X000030000080000U0000 300000@0001D0000E0000P4000D0000k0D006h0000`0000 300000l0080U0000300000L0080U000030000000080U000030000040000R000030000?oooolR0000 30000?oooomD0000E0000>`5000O0000k0D0068000010000Aj;Q@4NRhD3/1@007`000040001<0000 10000>P4000D0000k0D006h0001@0000800001/0000R000030000?oooolC000030000080000U0000 300000P0080U0000300000@0081F0000E0000602003i0P00I0800?d2000>0000H`;i0V82n@9Q0_X2 H0;k0V02n`9Q0_`2HP;m0V82o@9S0_d2I0;l0V@2n`9T0_X2I0;i0V<2n@9F0000E00006P2003i0P00 K0800?d2000>0000JP;i0VT2n@9X0_T2J0;j0VP2n`9X0_`2J@;m0VX2o@9[0_d2K0;l0V`2n`9/0_X2 K0;i0V/2n@9F0000E0000702003i0P00M0800?d2000>0000LP;i0W42n@9`0_T2L0;j0W02n`9`0_`2 L@;m0W82o@9c0_d2M0;l0W@2n`9d0_X2M0;i0W<2n@9F0000E00007P2003h0P00O0800?`2000>0000 NP;h0WT2n09h0_T2N0;j0WP2n`9h0_`2N@;l0WT2o09j0_`2N`;l0W`2n`9l0_X2N`;i0WX2n09F0000 E0000802003h0P00Q0800?`2000>0000PP;h0X42n0:00_T2P0;j0X02n`:00_`2P@;l0X42o0:20_`2 P`;l0X@2n`:40_X2P`;i0X82n09F0000E00008P2003h0P00S0800?`2000>0000R@;h0XP2n@:80_X2 R0;k0XP2o0:90_`2RP;l0XX2o0:;0_`2S0;k0X`2nP:;0_T2RP;h0XT2n09F0000E0000902003h0P00 U0800?`2000>0000T@;h0Y02n0:@0_T2T0;j0Y02n`:A0_`2TP;l0Y82o0:C0_/2U0;j0Y@2n@:C0_P2 TP;h0Y42n09F0000E00009P2003g0P00W0800?/2000>0000V@;g0YP2n0:H0_T2V0;j0YP2n`:I0_/2 VP;k0YX2n`:K0_/2W0;j0Y`2n@:K0_P2VP;g0YT2m`9F0000E0000:02003g0P00Y0800?/2000>0000 X@;g0Z02m`:P0_P2X0;i0Z02nP:Q0_/2XP;k0Z82n`:S0_X2Y0;i0Z@2n0:S0_L2XP;g0Z42m`9F0000 E0000:P2003f0P00[0800?X2000>0000Z@;f0ZP2mP:X0_L2Z0;h0ZP2n@:Y0_X2ZP;j0ZX2nP:[0_T2 [0;h0Z`2m`:[0_H2ZP;f0ZT2mP9F0000E0000;02003e0P00]0800?T2000>0000/@;e0[02mP:`0_L2 /0;h0[02n@:a0_T2/P;i0[82n@:c0_T2]0;h0[@2m`:c0_H2/P;e0[42m@9F0000E0000;P2003e0P00 _0800?T2000>0000^@;e0[P2m@:h0_H2^0;g0[P2n0:i0_T2^P;i0[X2n@:k0_P2_0;g0[`2mP:k0_D2 ^P;e0[T2m@9F0000E0000<02003d0P00a0800?P2000>0000`@;d0/02m0;00_D2`0;f0/02m`;10_P2 `P;h0/82n0;30_L2a0;f0/@2m@;30_@2`P;d0/42m09F0000E00000000 b@;c0/P2l`;80_@2b0;e0/P2mP;90_L2bP;g0/X2m`;;0_H2c0;e0/`2m0;;0_<2bP;c0/T2l`9F0000 E0000=02003b0P00e0800?H2000>0000d@;b0]02lP;@0_<2d0;d0]02m@;A0_H2dP;f0]82mP;C0_D2 e0;d0]@2l`;C0_82dP;b0]42lP9F0000E0000=P2003a0P00g0800?D2000>0000f@;a0]P2l@;H0_82 f0;c0]P2m0;I0_D2fP;e0]X2m@;K0_@2g0;c0]`2lP;K0_42fP;a0]T2l@9F0000E0000>02003`0P00 i0800?@2000>0000h@;`0^02l0;P0_42h0;b0^02l`;Q0_@2hP;d0^82m0;S0_<2i0;b0^@2l@;S0_02 hP;`0^42l09F0000E0000>L2003^0P00j`800?82000>0000j@;^0^P2k`;W0_02i`;a0^P2lP;Y0_82 jP;b0^X2lP;[0_82j`;a0^/2l0;[0^l2jP;^0^T2kP9F0000E0000>l2003]0P00l`800?42000>0000 l@;]0_02kP;_0^l2k`;`0_02l@;a0_42lP;a0_82l@;c0_42l`;`0_<2k`;c0^h2lP;]0_42k@9F0000 E0000?L2003/0P00n`800?02000>0000n@;/0_P2k@;g0^h2m`;_0_P2l0;i0_02nP;`0_X2l0;k0_02 n`;_0_/2kP;k0^d2nP;/0_T2k09F0000E0000?l2003[0P000`<00>l2000>00000@?[0P03j`;o0^`2 o`;]0P03kP810nl20P?_0P83k`830nh20`?]0P<3k0830n/20P?[0P43j`9F0000E00000L3003Y0P00 2`<00>d2000>000020?Y0PL3j@870nX21`?[0PL3k0880nd22@?]0PT3k@8:0n`22`?[0P/3jP8:0nT2 2@?Y0PP3j@9F0000E00000l3003W0P004`<00>/2000>000040?W0Pl3j08?0nT23`?Z0Pl3j`8@0n/2 4@?[0Q43j`8B0n/24`?Z0Q<3j@8B0nP24@?W0Q03i`9F0000E00001L3003V0P006`<00>X2000>0000 60?V0QL3iP8G0nL25`?X0QL3j@8H0nX26@?Z0QT3jP8J0nT26`?X0Q/3i`8J0nH26@?V0QP3iP9F0000 E00001l3003T0P008`<00>P2000>000080?T0Ql3i@8O0nH27`?W0Ql3j08P0nP28@?X0R43j08R0nP2 8`?W0R<3iP8R0nD28@?T0R03i09F0000E00002H3003R0P00:P<00>H2000>0000:0?R0RL3h`8V0n@2 9P?U0RL3iP8X0nH2:@?V0RT3iP8Z0nH2:P?U0RX3i08Z0n<2:@?R0RP3hP9F0000E00002h3003P0P00 @2000>0000<0?P0Rl3h@8^0n82;P?S0Rl3i08`0n@2<@?T0S43i08b0n@2P<00><2000>0000=`?O0SH3g`8f0n02=P?Q0SH3hP8g0n<2 >0?S0SP3h`8i0n82>P?Q0SX3h08i0ml2>0?O0SL3g`9F0000E00003h3003M0P00@P<00>42000>0000 ?`?M0Sh3g@8n0mh2?P?O0Sh3h08o0n42@0?Q0T03h@910n02@P?O0T83gP910md2@0?M0Sl3g@9F0000 E00004D3003K0P00B@<00=l2000>0000A`?K0TH3f`950m`2A@?M0TH3gP970ml2B0?O0TP3g`990mh2 B@?M0TT3g0990m/2B0?K0TL3f`9F0000E00004d3003H0P00D@<00=`2000>0000C`?H0Th3f@9=0mX2 C@?K0Th3g09?0m`2D0?L0U03g09A0m`2D@?K0U43fP9A0mT2D0?H0Tl3f09F0000E00005D3003F0P00 F@<00=X2000>0000EP?F0UD3e`9E0mP2E@?I0UD3fP9F0mX2E`?J0UL3fP9H0mX2F@?I0UT3f09H0mL2 E`?F0UH3eP9F0000E00005`3003D0P00H0<00=P2000>0000GP?D0Ud3e09L0mD2G0?F0Ud3e`9N0mP2 G`?H0Ul3f09P0mL2H0?F0V03e@9P0m@2G`?D0Uh3e09F0000E00006@3003B0P00J0<00=H2000>0000 IP?B0VD3dP9T0m<2I0?D0VD3e@9V0mH2I`?F0VL3eP9X0mD2J0?D0VP3d`9X0m82I`?B0VH3dP9F0000 E00006`3003?0P00L0<00=<2000>0000K@??0V`3d09/0m42K0?B0V`3d`9]0m<2KP?C0Vh3d`9_0m<2 L0?B0W03d@9_0m02KP??0Vd3c`9F0000E00007<3003=0P00M`<00=42000>0000M@?=0W@3c@9c0lh2 L`??0W@3d09e0m42MP?A0WH3d@9g0m02M`??0WL3cP9g0ld2MP?=0WD3c@9F0000E00007/3003:0P00 O`<000000O0?:0W/3b`9k0l`2N`?=0W/3cP9l0lh2O@?>0Wd3cP9n0lh2O`?=0Wl3c09n0l/2 O@?:0W`3bP9F0000E000088300380P00QP<00<`2000>0000Q0?80X<3b0:20lT2PP?:0X<3b`:40l`2 Q@?<0XD3c0:60l/2QP?:0XH3b@:60lP2Q@?80X@3b09F0000E00008X300350P00SP<000000 R`?50XX3a@::0lH2RP?70XX3b0:;0lT2S0?90X`3b@:=0lP2SP?70Xh3aP:=0lD2S0?50X/3a@9F0000 E000094300320P00U@<000000T`?20Y83`P:A0l<2T@?40Y83a@:C0lH2U0?60Y@3aP:E0lD2 U@?40YD3``:E0l82U0?20Y<3`P9F0000E00009T3002o0P00W@<00<<2000>0000VP>o0YT3`0:I0l42 V@?20YT3``:J0l<2V`?30Y/3``:L0l<2W@?20Yd3`@:L0l02V`>o0YX3_`9F0000E0000:03002l0P00 Y0<00<02000>0000XP>l0Z43_@:P0kh2X0>o0Z43`0:R0l02X`?00Z<3`0:T0l02Y0>o0Z@3_P:T0kd2 X`>l0Z83_09F0000E0000:P3002i0P00[0<00;d2000>0000Z@>i0ZP3^P:X0k/2Z0>l0ZP3_@:Y0kd2 ZP>m0ZX3_@:[0kd2[0>l0Z`3^`:[0kX2ZP>i0ZT3^@9F0000E0000:l3002f0P00/`<00;X2000>0000 /@>f0[03]P:_0kL2[`>h0[03^@:a0kX2/P>j0[83^P:c0kT2/`>h0[<3]`:c0kH2/P>f0[43]P9F0000 E0000;H3002c0P00^P<00;L2000>0000^0>c0[L3/`:f0k@2]P>e0[L3]P:h0kL2^@>g0[T3]`:j0kH2 ^P>e0[X3]0:j0k<2^@>c0[P3/`9F0000E0000;h3002`0P00`P<00;@2000>0000_`>`0[h3/0:n0k42 _P>b0[h3/`:o0k@2`0>d0/03]0;10k<2`P>b0/83/@;10k02`0>`0[l3/09F0000E00000000a`>/0/H3[@;50jh2a@>_0/H3/0;70k02b0>`0/P3/0;90k02b@>_0/T3[P;90jd2 b0>/0/L3[09F0000E0000<`3002Y0P00d0<00:d2000>0000cP>Y0/d3Z@;<0jX2c0>[0/d3[0;>0jd2 c`>]0/l3[@;@0j`2d0>[0]03ZP;@0jT2c`>Y0/h3Z@9F0000E0000=<3002U0P00e`<00:T2000>0000 e@>U0]@3YP;C0jL2d`>X0]@3Z@;E0jT2eP>Y0]H3Z@;G0jT2e`>X0]L3Y`;G0jH2eP>U0]D3Y@9F0000 E0000=/3002R0P00g`<00:H2000>0000g0>R0]/3XP;K0j<2f`>T0]/3Y@;L0jH2g@>V0]d3YP;N0jD2 g`>T0]l3X`;N0j82g@>R0]`3XP9F0000E0000>83002N0P00iP<00:82000>0000h`>N0^83W`;R0j02 hP>Q0^83XP;S0j82i0>R0^@3XP;U0j82iP>Q0^H3X0;U0il2i0>N0^<3WP9F0000E0000>T3002K0P00 k@<009l2000>0000j@>K0^T3W0;Y0id2j@>N0^X3W`;[0il2k0>N0^`3WP;]0id2k@>L0^`3V`;[0i/2 jP>K0^T3V`9F0000E0000?03002G0P00m0<009/2000>0000l0>G0_03V0;`0iT2l0>J0_43V`;b0i/2 l`>J0_<3VP;d0iT2m0>H0_<3U`;b0iL2l@>G0_03U`9F0000E0000?L3002C0P00n`<009L2000>0000 m`>D0_L3U@;g0iH2m`>G0_P3U`;i0iL2nP>G0_/3U`;k0iH2n`>E0_/3U0;j0i<2n@>C0_P3U09F0000 E0000?h3002?0P000P@009<2000>0000o`>@0_h3T@;n0i82o`>C0P04T`8119<20PBC0P84T`821982 0PBA0P84T08118l200B?0_l3T09F0000E00000D4002;0P002@@008l2000>00001PB<0PD4S@8518h2 1PB?0PL4S`8818l22@B?0PT4S`8918h22@B=0PT4S08818/21`B;0PH4S09F0000E00000`400270P00 40@008/2000>000030B80P`4R@8<18X230B;0Pd4R`8>18/23`B;0Pl4R`8@18X240B90Pl4R08>18L2 3@B70P`4R09F0000E00001<400230P005`@008L2000>00004`B40Q<4Q@8C18H24`B70Q@4Q`8E18L2 5PB70QH4Q`8G18H25`B50QH4Q08E18<250B30Q<4Q09F0000E00001X4001o0P007P@008<2000>0000 6PAo0QX4P08J18426PB20Q/4P`8L18<27@B20Qd4PP8N18427PB00Qd4O`8L17l26`Ao0QX4O`9F0000 E0000204001k0P0090@007l2000>00008@Ak0R04O08P17d28@An0R84O`8S17l290An0R@4OP8T17d2 90Al0R@4N`8S17/28PAk0R44N`9F0000E00002L4001g0P00:`@007/2000>0000:0Ag0RL4N08W17T2 :0Aj0RT4N`8Z17/2:`Aj0R/4NP8[17T2:`Ah0R/4M`8Z17L2:@Ag0RP4M`9F0000E00002h4001b0P00 0000;PAc0Rh4M08^17D2;PAf0Rl4MP8`17H2<@Af0S44MP8b17D20@00782000>0000=@A^0S@4K`8d1702=@Aa0SH4LP8g1782 >0Aa0SP4L@8h1702>0A_0SP4KP8g16h2=PA^0SD4KP9F0000E00003/4001Y0P00?`@006d2000>0000 ?0AZ0S/4J`8k16`2?0A]0Sd4K@8n16d2?`A]0Sl4K@8o16`2?`A[0Sl4JP8n16T2?@AY0S`4JP9F0000 E0000484001U0P00AP@006T2000>0000@PAU0T84IP9216L2@PAX0T<4J@9416T2A@AX0TD4J09616L2 APAV0TD4I@9416D2@`AU0T84I@9F0000E00004P4001P0P00C0@006@2000>0000B@AP0TP4H@981682 B@AS0TX4I09;16@2C0AS0T`4H`9<1682C0AQ0T`4H09;1602BPAP0TT4H09F0000E00004l4001K0P00 D`@005l2000>0000C`AL0Tl4G@9?15h2C`AO0U04G`9A15l2DPAO0U84G`9C15h2D`AM0U84G09A15/2 D0AK0Tl4G09F0000E00005D4001F0P00F@@005X2000>0000E@AG0UD4F09E15T2E@AJ0UH4FP9G15X2 F0AJ0UP4FP9I15T2F@AH0UP4E`9G15H2EPAF0UD4E`9F0000E00005/4001B0P00G`@005H2000>0000 G0AB0U/4D`9K15@2G0AE0Ud4EP9N15H2G`AE0Ul4E@9O15@2G`AC0Ul4DP9N1582G@AB0U`4DP9F0000 E0000684001=0P00IP@00542000>0000HPA=0V84CP9R14l2HPA@0V<4D@9T1542I@A@0VD4D09V14l2 IPA>0VD4C@9T14d2H`A=0V84C@9F0000E00006P400170P00K0@004/2000>0000J0A80VP4B@9X14X2 J0A;0VT4B`9Z14/2J`A;0V/4B`9/14X2K0A90V/4B09Z14L2J@A70VP4B09F0000E00006h400120P00 LP@004H2000>0000KPA30Vh4A09^14D2KPA60Vl4AP9`14H2L@A60W44AP9b14D2LPA40W44@`9`1482 K`A20Vh4@`9F0000E00007@4000m0P00N0@00442000>0000M@@n0W@4?`9d1402M@A10WH4@@9g1442 N0A10WP4@@9h1402N0@o0WP4?P9g13d2MP@m0WD4?P9F0000E00007X4000h0P00OP@003`2000>0000 N`@i0WX4>P9j13/2N`@l0W`4?09m13`2OP@l0Wh4?09n13/2OP@j0Wh4>@9m13P2O0@h0W/4>@9F0000 E0000804000c0P00Q0@003L2000>0000P@@c0X04=0:013D2P@@f0X84=`:313L2Q0@f0X@4=P:413D2 Q0@d0X@4<`:313<2PP@c0X44<`9F0000E00008H4000]0P00RP@00342000>0000Q`@^0XH4;`:61302 Q`@a0XP4<@:91342RP@a0XX4<@::1302RP@_0XX4;P:912d2R0@]0XL4;P9F0000E00008`4000X0P00 T0@002`2000>0000S@@Y0X`4:P:<12/2S@@/0Xh4;0:?12`2T0@/0Y04;0:@12/2T0@Z0Y04:@:?12P2 SP@X0Xd4:@9F0000E0000984000S0P00UP@002L2000>0000TP@S0Y8490:B12D2TP@V0Y<49`:D12L2 U@@V0YD49P:F12D2UP@T0YD48`:D12<2T`@S0Y848`9F0000E00009P4000M0P00W0@00242000>0000 V0@M0YP47P:H11l2V0@P0YT48@:J1242V`@P0Y/480:L11l2W0@N0Y/47@:J11d2V@@M0YP47@9F0000 E00009d4000G0P00X@@001/2000>0000WP@H0Yd46@:M11X2WP@K0Yl46`:P11/2X@@K0Z446`:Q11X2 X@@I0Z4460:P11L2W`@G0Yh4609F0000E0000:<4000B0P00Y`@001H2000>0000X`@B0Z<44`:S11@2 X`@E0Z@45P:U11H2YP@E0ZH45@:W11@2Y`@C0ZH44P:U1182Y0@B0Z<44P9F0000E0000:T4000<0P00 [@@00102000>0000Z@@=0ZT43P:Y10l2Z@@@0ZX440:[1102[0@@0Z`440:]10l2[@@>0Z`43@:[10`2 ZP@<0ZT43@9F0000E0000:h400060P00/P@000X2000>0000[`@70Zh420:^10T2[`@:0[042P:a10X2 /P@:0[842P:b10T2/P@80[841`:a10H2/0@60Zl41`9F0000E0000;<400000P00]`@000@2000>0000 ]0@10[<40P:c10<2]0@40[D410:f10@2]`@40[L410:g10<2]`@20[L40@:f1002]@@00[@40@9F0000 E0000;T4003j0@00_@@00?h1000>0000^@Ck0KT4o06i1?d1^@Cn0KX4oP6k1?h1_0Cn0K`4oP6m1?d1 _@Cl0K`4n`6k1?X1^PCj0KT4n`5F0000E0000;h4003d0@00`P@00?P1000>0000_`Ce0Kh4mP6n1?L1 _`Ch0L04n0711?P1`PCh0L84n0721?L1`PCf0L84m@711?@1`0Cd0Kl4m@5F0000E0000<<4003^0@00 a`@00?81000>0000a0C_0L<4l0731?41a0Cb0LD4lP761?81a`Cb0LL4lP771?41a`C`0LL4k`761>h1 a@C^0L@4k`5F0000E0000`1000>0000b@CY0LP4jP781>/1b@C/0LX4k07;1>`1 c0C/0L`4k07<1>/1c0CZ0L`4j@7;1>P1bPCX0LT4j@5F0000E0000H1000>0000 cPCR0Lh4h`7>1>@1cPCU0Ll4iP7@1>H1d@CU0M44i@7B1>@1dPCS0M44hP7@1>81c`CR0Lh4hP5F0000 E0000=<4003L0@00e`@00>01000>0000d`CL0M<4g@7C1=h1d`CO0M@4h07E1>01ePCO0MH4g`7G1=h1 e`CM0MH4g07E1=`1e0CL0M<4g05F0000E0000=L4003E0@00f`@00=T1000>0000f0CF0ML4e`7G1=P1 f0CI0MT4f@7J1=T1f`CI0M/4f@7K1=P1f`CG0M/4eP7J1=D1f@CE0MP4eP5F0000E0000=`4003?0@00 h0@00=<1000>0000g@C@0M`4d@7L1=81g@CC0Mh4d`7O1=<1h0CC0N04d`7P1=81h0CA0N04d07O14400390@00i@@000000hPC90N44bP7Q1H400320@00jP@000000 iPC30NH4a07V1X4002l0@00kP@00<01000>0000j`Bl0NX4_@7Z1;h1j`Bo0N`4`07]1<01kPBo0Nh4_`7^1;h1 kPBm0Nh4_07]1;`1k0Bl0N/4_05F0000E0000>l4002e0@00l`@00;T1000>0000k`Be0Nl4]P7_1;L1 k`Bh0O04^@7a1;T1lPBh0O84^07c1;L1l`Bf0O84]@7a1;D1l0Be0Nl4]@5F0000E0000?<4002^0@00 m`@00;81000>0000m0B_0O<4/07c1;41m0Bb0OD4/P7f1;81m`Bb0OL4/P7g1;41m`B`0OL4[`7f1:h1 m@B^0O@4[`5F0000E0000?P4002X0@00o0@00:`1000>0000n0BX0OP4Z@7h1:X1n0B[0OT4[07j1:`1 n`B[0O/4Z`7l1:X1o0BY0O/4Z07j1:P1n@BX0OP4Z05F0000E0000?`4002Q0@0000D00:D1000>0000 o0BQ0O`4XP7l1:<1o0BT0Od4Y@7n1:D1o`BT0Ol4Y0401J<100FR0Ol4X@7n1:41o@BQ0O`4X@5F0000 E0000005002J0@0010D009h1000>000000FJ0@05V`401I`100FM0@45WP421Ih10`FM0@<5W@441I`1 10FK0@<5VP421IX10@FJ0@05VP5F0000E00000@5002C0@0020D009L1000>00001@FD0@@5U@441IH1 1@FG0@H5U`471IL120FG0@P5U`481IH120FE0@P5U0471I<11PFC0@D5U05F0000E00000P5002<0@00 30D00901000>00002@F=0@P5SP481Hl12@F@0@X5T04;1I0130F@0@`5T04<1Hl130F>0@`5S@4;1H`1 2PF<0@T5S@5F0000E00000`500250@0040D008T1000>00003@F60@`5Q`4<1HP13@F90@h5R@4?1HT1 40F90A05R@4@1HP140F70A05QP4?1HD13PF50@d5QP5F0000E0000105001n0@0050D00881000>0000 40Eo0A05P04@1H4140F20A45PP4B1H814`F20A<5PP4D1H4150F00A<5O`4B1Gh14@En0A05O`5F0000 E00001@5001g0@0060D007/1000>000050Eh0A@5N@4D1GX150Ek0AD5N`4F1G/15`Ek0AL5N`4H1GX1 60Ei0AL5N04F1GL15@Eg0A@5N05F0000E00001L5001`0@006`D007@1000>000060Ea0AL5LP4G1G<1 60Ed0AT5M04J1G@16`Ed0A/5M04K1G<16`Eb0A/5L@4J1G016@E`0AP5L@5F0000E00001/5001Y0@00 7`D006d1000>00006`EZ0A/5J`4K1F`170E]0Ad5K@4N1F`17`E[0Al5J`4O1FX17PEY0Ad5J@4L1FT1 6`EY0A/5JP5F0000E00001h5001R0@008PD006H1000>00007PES0Ah5I04O1FD180EV0B45IP4R1FD1 8PET0B85I04R1F<18PER0B45HP4P1F817`ER0Ah5H`5F0000E0000245001J0@009@D005h1000>0000 8@EL0B45G@4R1Eh18`EN0B@5GP4U1Eh19@EM0BD5G@4U1E`19@EK0B@5FP4S1EX18PEK0B45G05F0000 E00002D5001C0@00:@D005L1000>00009@EE0BD5EP4U1EL19PEG0BL5E`4X1EL1:@EF0BT5E@4Y1E@1 :0EC0BL5D`4V1E<19@EC0BD5E05F0000E00002P5001<0@00;0D00501000>0000:0E=0BP5CP4X1Dl1 :@E@0BX5D04[1Dl1;0E>0B`5CP4/1Dd1:`E<0BX5C04Y1D`1:0E<0BP5C@5F0000E00002/500140@00 ;`D004P1000>0000:`E60B/5A`4[1DP1;0E80Bd5B04^1DP1;`E70Bl5A`4_1DH1;PE50Bd5A04/1D@1 :`E50B/5AP5F0000E00002h5000m0@000000;PDn0Bh5?`4^1D01;`E10C05@@4a1D01 0000 <@Dg0C45>04a1CT1@4d1CT1=@Dh0CD5>04e1CL1=0Df0C<5=@4b1CD1<@Df0C45=`5F0000 E00003<5000^0@00=`D00381000>0000<`D_0C<5<04d1C41=@Db0CH5PD002X1000>0000=PDX0CH5:@4f1BX1 =`DZ0CP5:P4i1BX1>PDY0CX5:@4j1BP1>@DW0CP59P4g1BH1=PDW0CH5:05F0000E00003P5000O0@00 ?0D002<1000>0000>0DP0CP58@4i1B81>PDS0C/58`4l1B81?0DQ0C`58@4l1B01?0DO0C/57`4j1Al1 >@DO0CP5805F0000E00003/5000G0@00?`D001/1000>0000>`DI0C/56P4k1A/1?0DK0Cd56`4n1A/1 ?`DJ0Cl56@4o1AP1?PDG0Cd55`4l1AL1>`DG0C/5605F0000E00003d5000?0@00@@D001<1000>0000 ?@DA0Cd54P4n1A<1?`DC0D054`511A<1@@DB0D454P511A41@@D@0D053`4o1@l1?PD@0Cd54@5F0000 E00003l500080@00@`D000`1000>0000?`D90Cl52P501@/1@@D<0D8530531@/1@`D:0D<52P531@T1 @`D80D8520511@P1@0D80Cl52@5F0000E000044500000@00A@D000@1000>0000@@D10D450P521@<1 @`D40D@510551@<1A@D20DD50P551@41A@D00D@500531@01@PD00D450@5F0000E00004<5003h0000 A`D00?`0000>0000@`Gj04<5n`141O`0A@Gl04H5o0171O`0A`Gk04L5n`171OX0A`Gi04H5n0151OP0 A0Gi04<5nP1F0000E00004D5003`0000B@D00?@0000>0000A@Gb04D5l`161O@0A`Gd04P5m0191O@0 B@Gc04T5l`191O80B@Ga04P5l0171O00APGa04D5lP1F0000E00004L5003Y0000B`D00>d0000>0000 A`GZ04L5j`171N`0B0G]04T5k@1:1N`0B`G[04/5j`1;1NX0BPGY04T5j@181NT0A`GY04L5jP1F0000 E00004T5003Q0000C@D00>D0000>0000B@GR04T5h`191N@0BPGU04/5i@1<1N@0C@GS04d5h`1=1N80 C0GQ04/5h@1:1N40B@GQ04T5hP1F0000E00004X5003I0000CPD00=d0000>0000BPGJ04X5f`1;1M`0 C0GM04d5g@1>1M`0CPGK04h5f`1>1MX0CPGI04d5f@1<1MT0B`GI04X5fP1F0000E00004`5003A0000 D0D00=D0000>0000C0GC04`5e01<1MD0C@GE04h5e@1?1MD0D0GD0505e01@1M<0C`GB04h5d@1=1M40 C0GB04`5d`1F0000E00004d500390000D@D000000C@G;04d5c01=1Ld0CPG=04l5c@1@1Ld0 D@G<0545c01A1L/0D0G:04l5b@1>1LT0C@G:04d5b`1F0000E00004h500310000DPD000000 CPG304h5a01?1LD0D0G50545a@1B1LD0DPG40585a01B1L<0DPG20545`@1@1L40C`G204h5``1F0000 E00004l5002i0000D`D00;d0000>0000C`Fk04l5_01@1Kd0D@Fm0585_@1C1Kd0D`Fl05<5_01C1K/0 D`Fj0585^@1A1KT0D0Fj04l5^`1F0000E0000505002a0000E0D00;D0000>0000D0Fc0505]01A1KD0 DPFe05<5]@1D1KD0E0Fd05@5]01D1K<0E0Fb05<5/@1B1K40D@Fb0505/`1F0000E0000545002Y0000 E@D00:d0000>0000D@F[0545[01A1Jd0DPF]05<5[@1D1Jd0E@F/05D5[01E1J/0E0FZ05<5Z@1B1JT0 D@FZ0545Z`1F0000E0000585002Q0000EPD00:D0000>0000DPFS0585Y01B1JD0D`FU05@5Y@1E1JD0 EPFT05H5Y01F1J<0E@FR05@5X@1C1J40DPFR0585X`1F0000E0000585002I0000EPD009d0000>0000 DPFK0585W01C1Id0E0FM05D5W@1F1Id0EPFL05H5W01F1I/0EPFJ05D5V@1D1IT0D`FJ0585V`1F0000 E00005<5002A0000E`D009D0000>0000D`FD05@5U@1E1ID0EPFE05L5U@1G1I@0E`FC05L5T`1G1I80 EPFA05D5T@1D1I80D`FC05<5U01F0000E00005<500290000E`D008d0000>0000D`F<05@5S@1E1Hd0 EPF=05L5S@1G1H`0E`F;05L5R`1G1HX0EPF905D5R@1D1HX0D`F;05<5S01F0000E00005@500210000 F0D008D0000>0000E0F405@5Q@1E1HD0EPF505L5Q@1H1H@0F0F305P5P`1G1H80EPF105D5P@1D1H80 E0F305@5Q01F0000E00005@5001i0000F0D007h0000>0000E0El05@5O@1E1Gh0EPEn05L5O@1H1G`0 F0Ek05P5N`1G1GX0EPEi05D5N@1D1GX0E0Ek05@5O01F0000E00005@5001b0000F0D007H0000>0000 E0Ed05@5M@1E1GH0EPEf05L5M@1H1G@0F0Ec05P5L`1G1G80EPEb05D5LP1D1G80E0Ec05@5M00C0000 30000040000V00007000008000000000100000@0000000009@0000`0000200009@0000`000050020 E`0002@0001T0P00n@8005P6003m0P000P0006H2n`9F1_/29P0001`000040000000000@000040000 000002D0000<0000100002P0000<00000P0003/0000800009@0000`000040000E`0002P0000k1P00 k@8005P6000:0`000`0003d620=F1_`2?@K_0S`000080000@00001P0000m1P00k`8005D600070`00 9@0000`000070020:00000`0000400009@0000`0000800209@0000`000050020:`0001P0001Y1P00 d0800307000f0`003000010000000000000002D0000<00001`00P2D0000<00000000P24000080000 7P0001P0001^1P00e@8002`7000a0`009@0000`000030000E00005@0001^1P00e`8008P6000J0`00 0@0004NRhD17X^50KPH00=L200010000C00000@0001^1P00e@8002/7000a0`00D00007P0000K0000 E00005@000291P00e`800:L6000J0`000@0004NRhD17X^50R@H00=L200010000C00000@0001^1P00 e@8002/7000a0`00D0000200000O00008P0000`0003ooooo4`0000`0000200009@0000`000080020 9@0000`000040020EP0002`0000F1000V08001/4003[0P00100001/4V08F19P25PC[0Q/4j`8C0000 30000040000C000030000080000U0000300000P0080U0000300000@0081F0000;0000?L4003C0@00 o0@00>T200040000o0CC0OL4d`7g1>T2o0CY0Q<0000<00000@0002D0000<00002000P2D0000<0000 1@00P2/0000H0000oP<00?T2000g1000C`<000`0000@000000000000000U0000300000L0080U0000 30000000080Q0000200001h0000H00000`@00?d2000b1000BP<002D0000<00000@00024000080000 7P0001P000031000o@800344001:0`008@0000P0000N0000600000<4003m0P00?`@005P3000H0000 30000000000A0000300000P0000;0000400003`0001K00003000010000031000o@8000X0000@0000 00000000000900004000080100000P005P0000`0000H0000400000`0000100002P00010000000000 000000T0000@0000P0400002000U000030000000081B0000C04000@00020o_oo0000000000000000 T040004000040P0@E01Y06d0I@1c0200CP1U07L0801B06l0K@1Q06h0000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000000000410@410@41 0@4002D0000<0000100005@0001D00003`@003`3000/1000B@<00040001]1HdoGfVP?d`0001P0@00 0@0004`000000000000000000000000000000500001h0000[@000580001<0@000P00023oool00000 00000000002@0@000@0000@2011D06T0K@1U07<0801>06D0M`0P0580K`1]0640KP00000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 0@410@410@410@009@0000`000020000:00000`0000400009@0000`000020000E00005@000000000 00000?oooooooooo0@0006d5SCmOJJ0ooP000<0100010000C0000000000000000000000000000000 D00006T000100000DP0004`100040000400000L00000000000000;`20000000010828U<0N@1c07@0 I@1]0000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 000000000000000000000000000000000000000000010@410@410@41000U0000300000@0000X0000 30000080000U000030000040000X0000300000@0001;0000@0000300000500008000004000010000 400000<4003m0P00<@@004X300031000o@800344001:0`00<00000`0000?00209@0000`000070020 9@0000`0000000209@0000`0000100008P0000`0003ooooo8P0000`0003oooooE00005@000000000 00000?oooooooooo0@0004NRhD17X^500`@005T300010000C00000@000031000o@800344001:0`00 D0000200000K00008P0000`0003ooooo4`0000`0000200009@0000`0000800209@0000`000040020 EP0002`0003g10009@<00?`400250`0010000?`49@?g12D3m`B50o`4Q@`0000P0000V0000700000@0000000001@0000D0000000009@0000`000040000E`0002P0000F1000 G0<003H4001k0`000`0003@4GP`0000P0001G0000:0000=`4001L0`00o0@007/300030000gPAi0oX4K0?N15h3?00000P000100000 60000=h4001N0`00n@@007P3000U0000300000L0080X0000300000@0000U0000300000P0080U0000 300000D0080[000060000784001/0`002@D00:h3000<000040000000000000009@0000`000070020 9@0000`0000000208@0000P0000N0000600007L4001a0`0010D00:T3000U0000300000<0001D0000 E00007L4001a0`00U0@00:P300010000Aj;Q@4NRhD1g1000L@<00040001<0000100007L4001a0`00 0`D00:T3001@0000J00001h0000U000030000040001D0000E00009D4001a0`00[`@00:P300010000 Aj;Q@4NRhD2E1000L@<00040001<0000100007L4001a0`000`D00:T3001@0000800h0Q/0000R0000 30000?oooolV0000700000@000000000100000@0000000009@0000`0000400009@0000`000050020 E`0002@000040000i`000:d0003[00000P0000H0j@2[0>T09@0000`000070020:00000`000040000 4`0000`0000200009@0000`0000800209`0001P000040000000005UIF@0000009@0000`000040000 EP0002`000060000Z`400:L0002e0@00100000H0Z`460;D1Y`2e0JL0Z`4C000030000040000U0000 30000000080X0000300000@0000U0000300000P0080U0000300000D0080[000060000=0000370000 80400241000<000040000000000000009@0000`0000700209@0000`0000000208@0000P0000N0000 60000=D0003<0000704001`1000U000030000040000Q0000200001h0000H0000e@000<`0000K0@00 70400240000800007P0001P0003E0000c00001/1000L0@00600000`0000000004@0000`000080000 2`00010000160000D00000`0000@0000e@000<`0000:000040000000000000002@00010000300@00 008001H0000<000060000100000<00000@0000X0000@0000000000000009000040000<0100000P00 9@0000`000000020DP0004`100040000P?koo`00000000000000090100010000108045@0J@1]06D0 L`0P04h0I@1g0200DP1_06d0H@1^0000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00001@0000D0000000000000000000000000000000010@410@410@41A_hU0000300000@0001D0000 E0000><000030@000`4001/100010000K@F=?fd5SCmH0000H0400040001<00000000000000000000 00000000001@0000C016o]<0001B0000C0400080000Poooo0000000000000000T040004000040P0@ E01Y06d0I@1c0200CP1U07L0801B06l0K@1Q06h0000001h3000N0`001P<00?@200000000000008`5 0000000000000000002<1@00SPD00?H2001Y0`00J@<006T3003/0P00^0000>D0001f0@00^`4001@2 003Z0@00U04005/100020@00/`0004l0001?0000C`0007P000000000000008`50016o_oo00000000 002<1@00/0<00000002<1@00J0D00;H4003[1000lP@000@5000O1@00D@D008h5002>1@00SPD005@5 000K1@00o0@00=@400171000000000000000000000000000000000410@410@410@7T0bD0000<0000 0P0002P0000<0000100002D0000<00000P0005@0001D00000P400181000;0@006`400040001]1Hdo K@F=?b8100300@000@0004`000000000000000000000000000000500001Y0000@0000580001<0@00 100001000007000000000000002l0P00000000@20R9C07T0L`1d06D0K@0000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000@410@410@410@009@0000`000040000:00000`0000200009@0000`000010000 :00000`000040000B`000400000`00001@000200000100000@000100003E0000c00001/1000L0@00 e@000<`0000K0@0070400300000<00003`00P2D0000<00001`00P2D0000<00000000P2D0000<0000 0@000280000<0000ooooob80000<0000oooooe@0001D00006`4000000S`400381003O0@008@0000P0000N0000 600000000S`4000X0000@000000000000000900004000080200000P005P0000`0000H0000 400000`0000100002P00010000000000000000T0000@0000P0800002000U000030000000081B0000 C04000@00020o_oo0000000000000000T040000000840P0@D`1i06d0HP1_06`00000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000410@410@410@4002D0000<0000100005<0001D0000f000006D0 M`0P0580K`1]0640KP00000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000 000000000000000000000000000000000@410@410@410@009@0000`000020000:00000`000040000 9@0000`000020000E00005@0003l0000aP4001`1003N0@000@0006d5SCm]1Hdo:040060100010000 C0000000000000000000000000000000D00004`0003C0000DP0004`1000400008?ooo`0000000000 0000090100010000108045@0J@1]06D0L`0P04h0I@1g0200DP1_06d0H@1^00003@00080300160000 @?koodH000001P00AP00043n00000000000004H000000000AP0000000016000000@004H000001P00 AP00000600160000@0H004H0002V0`000000004000000000500000H0003`0`00h0<0000000010000 000000H000040000mPD000000001000000000000000@00006@H00000000100000000010000020000 mPD00000000100000000008000000000@0H000000000000000000000000000000000000000010@41 0@410@41000U0000300000@0000X000030000080000U0000300000@0001D0000E00001`1003E0@00 9@400=h100010000K@F=?fd5SCob0@00`0400040001<0000000000000000000000000000001@0000 J@000400001B0000C0400080000@00001`00000000000000_080000000040P8RD`1i07<0M01U06d0 0000004000010000c@4000l1002eoooon0<007T5001M1@00X_[ool?joonM0P00m`400000002^1P00 kooooacnoooT1P00cP800800001S1`0030T009L0003D0P00;P0000<1000l0@00f`0003D0001[0P00 @`0000h00@1C00003`0106@0000A0040M`0001D00@2>00004@010:40000E0040^00000H00@300000 00010?40000D00401`4000T00@0B0@00200101`1000H0040=P4000X00@120@004P0105H1000=0040 I@400000000000000000000000000000000000410@410@410@4102D0000<00000P0002P0000<0000 100002D0000<00000@0002P0000<00000P0004/000100000<00000D0000P00000@000040000@0000 cP0008l1000b0@00g`400000050000000000@00005000 \>"], "Graphics", PageWidth->PaperWidth, ImageSize->{474, 242.5}, ImageMargins->{{0, 0}, {0, 0}}, ImageRegion->{{0, 1}, {0, 1}}], Cell[TextData[{ StyleBox["Note:", FontWeight->"Bold"], " In this exercise, \[CapitalDelta]", Cell[BoxData[ FormBox[ SubscriptBox[ StyleBox["L", FontSlant->"Italic"], "i"], TraditionalForm]]], " represents the length of the ", Cell[BoxData[ FormBox[ SuperscriptBox[ StyleBox["i", FontSlant->"Italic"], "th"], TraditionalForm]]], " line segment, as shown in the figure above." }], "Text", PageWidth->PaperWidth], Cell[TextData[{ "Our first objective is to form a function, ", StyleBox["lengthSum[ k ]", FontWeight->"Bold"], ", that estimates the length of the graph of a function, ", Cell[BoxData[ \(TraditionalForm\`f(x)\)]], " as ", StyleBox["x", FontSlant->"Italic"], " varies from ", Cell[BoxData[ \(TraditionalForm\`x\ = \ a\)]], " and ", Cell[BoxData[ \(TraditionalForm\`x\ = \ \(x\_k = a + k\ h\)\)]], ". We do this by adding the ", Cell[BoxData[ FormBox[ RowBox[{ SubscriptBox[ StyleBox[ RowBox[{"\[CapitalDelta]", StyleBox["L", FontSlant->"Italic"]}]], "i"], "'"}], TraditionalForm]]], "s, the lengths of the first ", StyleBox["k", FontSlant->"Italic"], " line segments, where ", StyleBox["k", FontSlant->"Italic"], " can range from 0 up to ", StyleBox["n", FontSlant->"Italic"], ", the number of line segments between ", Cell[BoxData[ \(TraditionalForm\`x = a\)]], " and ", Cell[BoxData[ \(TraditionalForm\`x = b\)]], ".\n\nFor the function ", StyleBox["f", FontSlant->"Italic"], "(", StyleBox["x", FontSlant->"Italic"], ") = ", Cell[BoxData[ \(TraditionalForm\`x\^2\)]], ", we need to write \[CapitalDelta]", Cell[BoxData[ \(TraditionalForm\`L\_i\)]], " in terms of ", StyleBox["f", FontSlant->"Italic"], "(", Cell[BoxData[ FormBox[ SubscriptBox[ StyleBox["x", FontSlant->"Italic"], "i"], TraditionalForm]]], "), ", Cell[BoxData[ \(TraditionalForm\`f(x\_i + h)\)]], ", and ", StyleBox["h", FontSlant->"Italic"], ",", StyleBox[" ", FontSlant->"Italic"], "where ", Cell[BoxData[ FormBox[ SubscriptBox[ StyleBox["x", FontSlant->"Italic"], StyleBox["i", FontSlant->"Italic"]], TraditionalForm]]], " = ", StyleBox["a", FontSlant->"Italic"], " + ", StyleBox["ih", FontSlant->"Italic"], ". To do this, we use the Pythagorean theorem to calculate the length of \ the line segment that begins at the point ", Cell[BoxData[ \(TraditionalForm\`\((x\_i, \ f(x\_i))\)\)]], " and ends at the point ", Cell[BoxData[ \(TraditionalForm\`\((x\_i + h, \ f(x\_i + h))\)\)]], ".\n\n\[CapitalDelta]", Cell[BoxData[ \(TraditionalForm\`L\_i\)]], StyleBox[" = ", FontSlant->"Italic"], Cell[BoxData[ FormBox[ RowBox[{ SqrtBox[ RowBox[{ SuperscriptBox[ RowBox[{"(", SubscriptBox[ StyleBox[ RowBox[{"\[CapitalDelta]", StyleBox["x", FontSlant->"Italic"]}]], "i"], ")"}], "2"], "+", SuperscriptBox[ RowBox[{"(", SubscriptBox[ StyleBox[ RowBox[{"\[CapitalDelta]", StyleBox["y", FontSlant->"Italic"]}]], "i"], ")"}], "2"]}]], "=", " ", RowBox[{ SqrtBox[ RowBox[{\(h\^2\), "+", RowBox[{ SuperscriptBox[ RowBox[{"(", FractionBox[ SubscriptBox[ StyleBox[ RowBox[{"\[CapitalDelta]", StyleBox["y", FontSlant->"Italic"]}]], "i"], "h"], ")"}], "2"], \(h\^2\)}]}]], "=", RowBox[{ RowBox[{"h", SqrtBox[ RowBox[{"1", "+", SuperscriptBox[ RowBox[{"(", FractionBox[ SubscriptBox[ StyleBox[ RowBox[{"\[CapitalDelta]", StyleBox["y", FontSlant->"Italic"]}]], "i"], "h"], ")"}], "2"]}]]}], "=", RowBox[{"h", SqrtBox[ RowBox[{"1", "+", SuperscriptBox[ RowBox[{"(", FractionBox[ RowBox[{ RowBox[{ StyleBox["f", FontSlant->"Italic"], StyleBox["(", FontSlant->"Italic"], RowBox[{ SubscriptBox[ StyleBox["x", FontSlant->"Italic"], "i"], "+", "h"}], ")"}], "-", RowBox[{ StyleBox["f", FontSlant->"Italic"], StyleBox["(", FontSlant->"Italic"], \(x\_i\), ")"}]}], "h"], ")"}], "2"]}]]}]}]}]}], TraditionalForm]]], StyleBox[".", FontSlant->"Italic"], "\n\nNow let's put it into ", StyleBox["Mathematica ", FontSlant->"Italic"], "code. We let ", Cell[BoxData[ \(TraditionalForm\`a\ = \(-5\)\)]], ", ", Cell[BoxData[ \(TraditionalForm\`b = 5\)]], ", and ", Cell[BoxData[ \(TraditionalForm\`n = 10\)]], "." }], "Text", PageWidth->PaperWidth], Cell[BoxData[{ \(\(Clear[f, \[CapitalDelta]L, a, b, h, n];\)\), "\[IndentingNewLine]", \(\(f[x_] = x\^2;\)\), "\[IndentingNewLine]", \(\(a = \(-5\);\)\), "\[IndentingNewLine]", \(\(b = 5;\)\), "\[IndentingNewLine]", \(\(n = 10;\)\), "\[IndentingNewLine]", \(\(h = \((b - a)\)/n;\)\), "\[IndentingNewLine]", \(\[CapitalDelta]L[i_] = h \@\( 1 + \((\(f[a + i\ h + h] - f[a + i\ h]\)\/h)\)\^2\)\)}], "Input",\ PageWidth->PaperWidth], Cell[TextData[{ "The function ", Cell[BoxData[ \(TraditionalForm\`\(\[CapitalDelta]L(i)\)\/\[CapitalDelta]x\)]], " is the rate at which the total length of the line segments accumulates \ with each increment of ", StyleBox["h", FontSlant->"Italic"], " added to ", StyleBox["x", FontSlant->"Italic"], ". We generate a list of the rate-of-change values for each ", Cell[BoxData[ \(TraditionalForm\`x\_i = a + i\ h\)]], ", plot the rate of change versus ", Cell[BoxData[ \(TraditionalForm\`x\_i\)]], ", and then assign the graph to the symbol name ", StyleBox["p0", FontWeight->"Bold"], " for later reference." }], "Text", PageWidth->PaperWidth], Cell[BoxData[ \(rateList = Table[{a + i\ h, \[CapitalDelta]L[i]\/h}, {i, 0, n - 1}]\)], "Input", PageWidth->PaperWidth], Cell[BoxData[ \(\(p0 = ListPlot[rateList, PlotRange \[Rule] {0, Max[rateList]}, PlotStyle \[Rule] {RGBColor[0, 0, 1], PointSize[0.02]}, AxesLabel \[Rule] {\*"\"\<\!\(x\_i\)\>\"", \*"\"\<\!\(\ \[CapitalDelta]L\_i\/\[CapitalDelta]x\)\>\""}];\)\)], "Input", PageWidth->PaperWidth], Cell[TextData[{ "The rate at which the total length of the line segments accumulates with \ each added increment ", StyleBox["h ", FontSlant->"Italic"], "is \n\n", Cell[BoxData[ FormBox[ SqrtBox[ RowBox[{"1", "+", SuperscriptBox[ RowBox[{"(", FractionBox[ RowBox[{ RowBox[{ StyleBox["f", FontSlant->"Italic"], StyleBox["(", FontSlant->"Italic"], RowBox[{ SubscriptBox[ StyleBox["x", FontSlant->"Italic"], "i"], "+", "h"}], ")"}], "-", RowBox[{ StyleBox["f", FontSlant->"Italic"], StyleBox["(", FontSlant->"Italic"], \(x\_i\), ")"}]}], "h"], ")"}], "2"]}]], TraditionalForm]]], ", that is, ", Cell[BoxData[ FormBox[ RowBox[{\(\(\[CapitalDelta]L(i)\)\/\[CapitalDelta]x\), "=", SqrtBox[ RowBox[{"1", "+", SuperscriptBox[ RowBox[{"(", FractionBox[ RowBox[{ RowBox[{ StyleBox["f", FontSlant->"Italic"], StyleBox["(", FontSlant->"Italic"], RowBox[{ SubscriptBox[ StyleBox["x", FontSlant->"Italic"], "i"], "+", "h"}], ")"}], "-", RowBox[{ StyleBox["f", FontSlant->"Italic"], StyleBox["(", FontSlant->"Italic"], \(x\_i\), ")"}]}], "h"], ")"}], "2"]}]]}], TraditionalForm]]], "." }], "Text", PageWidth->PaperWidth], Cell[TextData[{ "Now we form a function that calculates the left Riemann sum of the ", Cell[BoxData[ FormBox[ RowBox[{ SubscriptBox[ StyleBox[ RowBox[{"\[CapitalDelta]", StyleBox["L", FontSlant->"Italic"]}]], "i"], "'"}], TraditionalForm]]], "s for the first ", StyleBox["k", FontSlant->"Italic"], " line segments where ", StyleBox["k", FontSlant->"Italic"], " can range between 0 and ", Cell[BoxData[ \(TraditionalForm\`n\)]], "." }], "Text", PageWidth->PaperWidth], Cell[BoxData[ \(\(lengthSum[ k_] := \[Sum]\+\(i = 0\)\%\(k - 1\)\[CapitalDelta]L[ i];\)\)], "Input", PageWidth->PaperWidth], Cell[TextData[{ "We form a list of the ordered pairs, in which the first element of each \ ordered pair is the ", StyleBox["x", FontSlant->"Italic"], "-coordinate of the left side of the last line segment in the sum, and the \ second element in each ordered pair is the length of the first ", StyleBox["k", FontSlant->"Italic"], " line segments." }], "Text", PageWidth->PaperWidth], Cell[BoxData[ \(lengthlist = Table[{a + k*h, lengthSum[k]}, {k, 0, n}]\)], "Input", PageWidth->PaperWidth], Cell[TextData[{ "Let's plot the list of points and assign it to the symbol name ", Cell[BoxData[ FormBox[ StyleBox["p1", FontWeight->"Bold"], TraditionalForm]]], " for later use." }], "Text", PageWidth->PaperWidth], Cell[BoxData[ \(\(p1 = ListPlot[lengthlist, PlotStyle \[Rule] {RGBColor[1, 0, 0], PointSize[0.0175]}, AxesLabel \[Rule] {\*"\"\<\!\(x\_k\)\>\"", \*"\"\<\!\(L\_total\)(k)\ \>\""}, PlotRange \[Rule] All];\)\)], "Input", PageWidth->PaperWidth], Cell[TextData[{ "For comparison, we calculate the exact arc-length function, ", Cell[BoxData[ \(TraditionalForm\`\(L\_exact\)(x)\)]], ", by integrating ", Cell[BoxData[ \(TraditionalForm\`\(d\ L\)\/\(d\ u\) = \@\(1 + \ \(\(f\^\[Prime]\)(u)\)\^2\)\)]], " from ", Cell[BoxData[ \(TraditionalForm\`\(\(u = a\)\(,\)\)\)]], " to ", Cell[BoxData[ \(TraditionalForm\`u = x\)]], "." }], "Text", PageWidth->PaperWidth], Cell[BoxData[ \(L\_exact[ x_] = \[Integral]\_a\%x\(\@\( 1 + \(f\^\[Prime]\)[u]\^2\)\) \[DifferentialD]u // TrigToExp\)], "Input", PageWidth->PaperWidth], Cell[TextData[{ "Now let's plot the function and then show the ", StyleBox["lengthSum[ k ] ", FontWeight->"Bold"], "points", " and the function on the same graph." }], "Text", PageWidth->PaperWidth], Cell[BoxData[ \(\(p2 = Plot[L\_exact[x], {x, a, a + n*h}, PlotStyle \[Rule] {RGBColor[0, 0, 1]}, PlotRange \[Rule] All, AxesLabel \[Rule] {"\", "\"}];\)\)], "Input", PageWidth->PaperWidth], Cell[BoxData[ \(\(Show[p1, p2, AxesLabel \[Rule] {"\", \*"\"\<\!\(L\_exact\)[x] & \ \!\(L\_total\)(k)\>\""}];\)\)], "Input", PageWidth->PaperWidth], Cell[TextData[{ "The slopes of the secant lines taken from the ", StyleBox["lengthSum[ k_ ] ", FontWeight->"Bold"], "graph give the rate at which the total length of the straight-line \ segments accumulates with each ", StyleBox["h ", FontSlant->"Italic"], "increment of ", StyleBox["x", FontSlant->"Italic"], ". Now let's calculate the slopes of the secant lines between consecutive \ pairs of points on the graph above and plot them." }], "Text", PageWidth->PaperWidth], Cell[BoxData[ \(msecants = Table[{a + k\ h, \(lengthSum[k + 1] - lengthSum[k]\)\/h}, {k, 0, n - 1}]\)], "Input", PageWidth->PaperWidth], Cell[BoxData[ \(\(p4 = ListPlot[msecants, PlotRange \[Rule] {0, Max[msecants]}, PlotStyle \[Rule] {RGBColor[1, 0, 0], PointSize[0.0225]}, AxesLabel \[Rule] {\*"\"\<\!\(x\_k\)\>\"", \*"\"\<\!\(m\_secant\)\>\ \""}];\)\)], "Input", PageWidth->PaperWidth], Cell[TextData[{ "But this is the same thing as ", Cell[BoxData[ StyleBox[\(\(\[CapitalDelta]L \((i)\)\)\/\[CapitalDelta]x\), FontWeight->"Bold"]]], "that we calculated at the beginning of this exercise. To confirm this, we \ show ", StyleBox["msecants ", FontWeight->"Bold"], "and ", Cell[BoxData[ StyleBox[\(\(\[CapitalDelta]L \((i)\)\)\/\[CapitalDelta]x\), FontWeight->"Bold"]]], " together on the same graph." }], "Text", PageWidth->PaperWidth], Cell[BoxData[ \(\(Show[{p4, p0}, AxesLabel \[Rule] {\*"\"\<\!\(x\_k\)\>\"", \ \*"\"\<\!\(\[CapitalDelta]L\_i\/\[CapitalDelta]x\) & \!\(m\_secants\)\>\""}];\ \)\)], "Input", PageWidth->PaperWidth], Cell["Yet again, it looks as though we've come full circle.", "Text", PageWidth->PaperWidth] }, Closed]], Cell[CellGroupData[{ Cell[TextData[{ "You Try It: Part III ", Cell[BoxData[ \(TraditionalForm\`-\)]], " Taking it to the Limit and Another Function" }], "Section", PageWidth->PaperWidth], Cell["Chapter 5, Section 3", "Text", PageWidth->PaperWidth, FontWeight->"Bold"], Cell[TextData[{ "To help you with these exercises, we again copy all of the commands from \ Part III into a single cell, the one that follows. In each exercise, you are \ asked to change some of the red entries and answer the questions. (Note that \ we have hidden all but the input commands and put them in a command called ", StyleBox["lengths", FontWeight->"Bold"], ", the last command in the following cell. In addition, we suppress \ displaying the lists of values that are generated because they become too \ large when ", StyleBox["n", FontSlant->"Italic"], " is a big number.)\n\n1. For the function ", Cell[BoxData[ \(TraditionalForm\`f(x) = x\^2\)]], ", considered in Part III, increase ", StyleBox["n", FontSlant->"Italic"], ", the number of straight-line segments between ", Cell[BoxData[ \(TraditionalForm\`x = a\)]], " and ", Cell[BoxData[ \(TraditionalForm\`x = b\)]], ", so that the total length of the line segments approaches the length of \ the graph of ", Cell[BoxData[ \(TraditionalForm\`f(x)\)]], " for ", Cell[BoxData[ \(TraditionalForm\`a \[LessEqual] x \[LessEqual] b\)]], ". Try ", Cell[BoxData[ \(TraditionalForm\`n = 25, \ 50, \ 100, \ 250, \ 500\)]], ". (For larger values of", StyleBox[" n", FontSlant->"Italic"], ", the evaluation of the commands will take a while because of the large \ number of ", Cell[BoxData[ FormBox[ RowBox[{ SubscriptBox[ StyleBox[ RowBox[{"\[CapitalDelta]", StyleBox["L", FontSlant->"Italic"]}]], "i"], "'"}], TraditionalForm]]], "s that must be added to form each value of ", StyleBox["lengthSum[ k ]", FontWeight->"Bold"], ".) What is the ", Cell[BoxData[ FormBox[ RowBox[{\(\(\(lim\)\(\ \)\)\+\(\[CapitalDelta]\ x \[Rule] 0\)\), FractionBox[ SubscriptBox[ StyleBox[ RowBox[{"\[CapitalLambda]", StyleBox["L", FontSlant->"Italic"]}]], "i"], \(\[CapitalLambda]\ x\)]}], TraditionalForm]]], "? In the limit as ", Cell[BoxData[ \(TraditionalForm\`n \[Rule] \[Infinity]\)]], " and ", Cell[BoxData[ \(TraditionalForm\`h \[Rule] 0\)]], ", what is the relationship between ", Cell[BoxData[ FormBox[ FractionBox[ SubscriptBox[ StyleBox[ RowBox[{"\[CapitalLambda]", StyleBox["L", FontSlant->"Italic"]}]], "i"], \(\[CapitalLambda]\ x\)], TraditionalForm]]], "and ", Cell[BoxData[ FormBox[ SubscriptBox[ StyleBox["L", FontWeight->"Bold", FontSlant->"Plain"], "exact"], TraditionalForm]]], StyleBox["[ x ]", FontWeight->"Bold"], "?\n\n2. Repeat Exercise 1 for the following: ", Cell[BoxData[ \(TraditionalForm\`f(x) = 5 sin\ \((2 x)\), \ a = 0, \ b = \[Pi]\)]], ". In addition, explain the stair-step pattern in the graph of ", Cell[BoxData[ FormBox[ SubscriptBox[ StyleBox["L", FontWeight->"Bold", FontSlant->"Plain"], "exact"], TraditionalForm]]], StyleBox["[x]", FontWeight->"Bold"], ". Under what conditions does the accumulated length of the straight-line \ segments increase the slowest with each increment ", StyleBox["h ", FontSlant->"Italic"], "added to ", StyleBox["x", FontSlant->"Italic"], ", and under what conditions does it increase most rapidly?" }], "Text", PageWidth->PaperWidth], Cell[BoxData[{\(Clear[f, \[CapitalDelta]L, a, b, h, n];\), "\n", RowBox[{ RowBox[{\(f[x_]\), "=", StyleBox[\(x\^2\), FontColor->RGBColor[1, 0, 0]]}], ";"}], "\n", RowBox[{ RowBox[{"a", "=", StyleBox[\(-5\), FontColor->RGBColor[1, 0, 0]]}], ";"}], "\n", RowBox[{ RowBox[{"b", "=", StyleBox["5", FontColor->RGBColor[1, 0, 0]]}], ";"}], "\n", RowBox[{ RowBox[{"n", "=", StyleBox["10", FontColor->RGBColor[1, 0, 0]]}], ";"}], "\[IndentingNewLine]", \(lengths;\)}], "Input", PageWidth->PaperWidth], Cell[TextData[{ "You probably noticed that the arc length integrals for the function ", Cell[BoxData[ \(TraditionalForm\`f(x) = 5 \( sin(2 x)\)\)]], " are not elementary, giving ", StyleBox["EllipticE[ ]", FontWeight->"Bold"], " functions. Unlike most of the area and volume integrals that we consider \ in beginning calculus, the arc length integrals for elementary functions can \ easily give rise to non-elementary integrals." }], "Text", PageWidth->PaperWidth] }, Closed]] }, Open ]] }, FrontEndVersion->"4.0 for Microsoft Windows", ScreenRectangle->{{0, 1024}, {0, 695}}, AutoGeneratedPackage->None, WindowToolbars->"RulerBar", WindowSize->{710, 598}, WindowMargins->{{-11, Automatic}, {Automatic, 20}}, PrintingCopies->1, PrintingPageRange->{Automatic, Automatic} ] (*********************************************************************** Cached data follows. If you edit this Notebook file directly, not using Mathematica, you must remove the line containing CacheID at the top of the file. The cache data will then be recreated when you save this file from within Mathematica. ***********************************************************************) (*CellTagsOutline CellTagsIndex->{} *) (*CellTagsIndex CellTagsIndex->{} *) (*NotebookFileOutline Notebook[{ Cell[CellGroupData[{ Cell[1739, 51, 115, 3, 195, "Title"], Cell[1857, 56, 189, 5, 60, "Text"], Cell[2049, 63, 7579, 136, 19, "Input", CellOpen->False, InitializationCell->True], Cell[CellGroupData[{ Cell[9653, 203, 56, 1, 53, "Section"], Cell[9712, 206, 1702, 52, 193, "Text"], Cell[CellGroupData[{ Cell[11439, 262, 99, 2, 47, "Subsection"], Cell[11541, 266, 1415, 36, 299, "Text"] }, Closed]] }, Closed]], Cell[CellGroupData[{ Cell[13005, 308, 57, 1, 33, "Section"], Cell[13065, 311, 110, 2, 33, "Text"], Cell[13178, 315, 34777, 433, 270, 34660, 429, "GraphicsData", "Metafile", \ "Graphics"], Cell[47958, 750, 3343, 111, 321, "Text"], Cell[51304, 863, 415, 8, 150, "Input"], Cell[51722, 873, 1504, 44, 170, "Text"], Cell[53229, 919, 132, 3, 42, "Input"], Cell[53364, 924, 277, 6, 84, "Input"], Cell[53644, 932, 534, 17, 75, "Text"], Cell[54181, 951, 408, 15, 52, "Text"], Cell[54592, 968, 149, 4, 51, "Input"], Cell[54744, 974, 203, 6, 33, "Text"], Cell[54950, 982, 68, 2, 30, "Input"], Cell[55021, 986, 190, 6, 33, "Text"], Cell[55214, 994, 69, 2, 30, "Input"], Cell[55286, 998, 399, 11, 71, "Text"], Cell[55688, 1011, 108, 2, 30, "Input"], Cell[55799, 1015, 247, 8, 33, "Text"], Cell[56049, 1025, 251, 6, 70, "Input"], Cell[56303, 1033, 335, 10, 52, "Text"], Cell[56641, 1045, 104, 2, 31, "Input"], Cell[56748, 1049, 900, 29, 71, "Text"], Cell[57651, 1080, 237, 6, 70, "Input"], Cell[57891, 1088, 169, 4, 30, "Input"], Cell[58063, 1094, 79, 1, 33, "Text"], Cell[58145, 1097, 489, 14, 71, "Text"], Cell[58637, 1113, 154, 4, 42, "Input"], Cell[58794, 1119, 247, 6, 70, "Input"], Cell[59044, 1127, 495, 15, 58, "Text"], Cell[59542, 1144, 209, 5, 42, "Input"], Cell[59754, 1151, 350, 11, 52, "Text"] }, Closed]], Cell[CellGroupData[{ Cell[60141, 1167, 176, 6, 33, "Section"], Cell[60320, 1175, 110, 2, 33, "Text"], Cell[60433, 1179, 3516, 103, 443, "Text"], Cell[63952, 1284, 799, 23, 151, "Input"] }, Closed]], Cell[CellGroupData[{ Cell[64788, 1312, 60, 1, 33, "Section"], Cell[64851, 1315, 132, 2, 52, "Text"], Cell[64986, 1319, 43322, 538, 329, 43201, 534, "GraphicsData", "Metafile", \ "Graphics"], Cell[108311, 1859, 2910, 112, 204, "Text"], Cell[111224, 1973, 430, 8, 150, "Input"], Cell[111657, 1983, 692, 22, 75, "Text"], Cell[112352, 2007, 132, 3, 42, "Input"], Cell[112487, 2012, 278, 6, 84, "Input"], Cell[112768, 2020, 650, 19, 75, "Text"], Cell[113421, 2041, 402, 15, 52, "Text"], Cell[113826, 2058, 151, 4, 51, "Input"], Cell[113980, 2064, 385, 11, 71, "Text"], Cell[114368, 2077, 112, 2, 30, "Input"], Cell[114483, 2081, 246, 8, 33, "Text"], Cell[114732, 2091, 277, 6, 70, "Input"], Cell[115012, 2099, 314, 10, 52, "Text"], Cell[115329, 2111, 112, 2, 31, "Input"], Cell[115444, 2115, 898, 29, 71, "Text"], Cell[116345, 2146, 260, 6, 70, "Input"], Cell[116608, 2154, 169, 4, 30, "Input"], Cell[116780, 2160, 79, 1, 33, "Text"], Cell[116862, 2163, 485, 14, 71, "Text"], Cell[117350, 2179, 159, 4, 64, "Input"], Cell[117512, 2185, 250, 6, 70, "Input"], Cell[117765, 2193, 495, 15, 58, "Text"], Cell[118263, 2210, 210, 5, 42, "Input"], Cell[118476, 2217, 89, 1, 33, "Text"] }, Closed]], Cell[CellGroupData[{ Cell[118602, 2223, 178, 6, 33, "Section"], Cell[118783, 2231, 119, 5, 52, "Text"], Cell[118905, 2238, 2918, 88, 348, "Text"], Cell[121826, 2328, 806, 23, 151, "Input"] }, Closed]], Cell[CellGroupData[{ Cell[122669, 2356, 68, 1, 33, "Section"], Cell[122740, 2359, 103, 2, 33, "Text"], Cell[122846, 2363, 33110, 412, 251, 32991, 408, "GraphicsData", "Metafile", \ "Graphics"], Cell[155959, 2777, 499, 17, 52, "Text"], Cell[156461, 2796, 5589, 181, 261, "Text"], Cell[162053, 2979, 472, 10, 173, "Input"], Cell[162528, 2991, 700, 22, 75, "Text"], Cell[163231, 3015, 132, 3, 42, "Input"], Cell[163366, 3020, 314, 6, 84, "Input"], Cell[163683, 3028, 2080, 58, 89, "Text"], Cell[165766, 3088, 585, 21, 52, "Text"], Cell[166354, 3111, 151, 4, 51, "Input"], Cell[166508, 3117, 401, 11, 71, "Text"], Cell[166912, 3130, 112, 2, 30, "Input"], Cell[167027, 3134, 246, 8, 33, "Text"], Cell[167276, 3144, 277, 6, 70, "Input"], Cell[167556, 3152, 453, 16, 66, "Text"], Cell[168012, 3170, 194, 5, 41, "Input"], Cell[168209, 3177, 212, 7, 52, "Text"], Cell[168424, 3186, 236, 5, 70, "Input"], Cell[168663, 3193, 166, 4, 30, "Input"], Cell[168832, 3199, 499, 14, 71, "Text"], Cell[169334, 3215, 159, 4, 64, "Input"], Cell[169496, 3221, 288, 6, 70, "Input"], Cell[169787, 3229, 495, 15, 58, "Text"], Cell[170285, 3246, 210, 5, 42, "Input"], Cell[170498, 3253, 94, 1, 33, "Text"] }, Closed]], Cell[CellGroupData[{ Cell[170629, 3259, 179, 6, 33, "Section"], Cell[170811, 3267, 83, 2, 33, "Text"], Cell[170897, 3271, 3618, 107, 348, "Text"], Cell[174518, 3380, 621, 18, 130, "Input"], Cell[175142, 3400, 487, 11, 90, "Text"] }, Closed]] }, Open ]] } ] *) (*********************************************************************** End of Mathematica Notebook file. ***********************************************************************)