(*********************************************************************** Mathematica-Compatible Notebook This notebook can be used on any computer system with Mathematica 3.0, MathReader 3.0, or any compatible application. The data for the notebook starts with the line of 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[ 67518, 2152]*) (*NotebookOutlinePosition[ 68188, 2176]*) (* CellTagsIndexPosition[ 68144, 2172]*) (*WindowFrame->Normal*) Notebook[{ Cell["\<\ Examples for Section 8.11 Applications of Power Series\ \>", "Subsection"], Cell["p. 697", "Subsection"], Cell[CellGroupData[{ Cell["Binomial Series", "Subsection"], Cell[CellGroupData[{ Cell["7.", "Subsubsection"], Cell[TextData[{ "Find the first four terms of the binomial series for ", Cell[BoxData[ \(TraditionalForm\`f(x)\ = \ \((1 + x\^3)\)\^\(\(-1\)/2\)\)]], ".\n\n", StyleBox["Solution.", FontSlant->"Italic"], " The binomial formula is: \n", Cell[BoxData[ FormBox[ RowBox[{\(\((1 + u)\)\^m\), "=", RowBox[{ RowBox[{"1", "+", \(m\ u\), " ", "+", " ", RowBox[{ RowBox[{"(", GridBox[{ {"m"}, {"2"} }], ")"}], \(u\^2\)}], "+", " ", RowBox[{ RowBox[{"(", GridBox[{ {"m"}, {"3"} }], ")"}], \(u\^3\)}], "+"}], "..."}]}], TraditionalForm]]], "\nWhen ", Cell[BoxData[ \(TraditionalForm\`\(m = \)\)]], "-1/2 and ", Cell[BoxData[ \(TraditionalForm\`u = x\^3\)]], " we get: \n", Cell[BoxData[ FormBox[ RowBox[{\(\((1 + x\^3)\)\^\(\(-1\)/2\)\), "=", RowBox[{ RowBox[{ RowBox[{"1", "+", \(\((\(-\(1\/2\)\))\) x\^3\), "+", RowBox[{ RowBox[{"(", GridBox[{ {\(\(-1\)/2\)}, {"2"} }], ")"}], \(\((x\^3)\)\^2\)}], "+", RowBox[{ RowBox[{"(", GridBox[{ {\(\(-1\)/2\)}, {"3"} }], ")"}], \(\((x\^3)\)\^3\)}], "+"}], "..."}], " ", "=", \(1 - \(1\/2\) x\^3 + \(\(\ \((\(-1\)/2)\) \((\(-3\)/2)\)\)\/2\) x\^6 + \(\(\ \((\(-1\)/2)\) \((\(-3\)/2)\) \((\(-5\)/2)\)\)\/\(3*2 \)\) x\^9 + ... = 1 - \(1\/2\) x\^3 + \(\(\ 3\)\/8\) x\^6 - \(5\/16\) x\^9 + ... \)}]}], TraditionalForm]]] }], "Text"], Cell[CellGroupData[{ Cell[BoxData[ \(Series[\((1 + x\^3)\)\^\(\(-1\)/2\), {x, 0, 9}]\)], "Input"], Cell[BoxData[ InterpretationBox[ RowBox[{ "1", "-", \(x\^3\/2\), "+", \(\(3\ x\^6\)\/8\), "-", \(\(5\ x\^9\)\/16\), "+", InterpretationBox[\(O[x]\^10\), SeriesData[ x, 0, {}, 0, 10, 1]]}], SeriesData[ x, 0, {1, 0, 0, Rational[ -1, 2], 0, 0, Rational[ 3, 8], 0, 0, Rational[ -5, 16]}, 0, 10, 1]]], "Output"] }, Open ]] }, Open ]], Cell[CellGroupData[{ Cell["8.", "Subsubsection"], Cell[TextData[{ "Find the first four terms of the binomial series for ", Cell[BoxData[ \(TraditionalForm\`f(x)\ = \ \((1 + x\^2)\)\^\(\(-1\)/3\)\)]], ".\n\n", StyleBox["Solution", FontSlant->"Italic"], ". Let's let ", StyleBox["Mathematica", FontSlant->"Italic"], " do more of the work." }], "Text"], Cell[BoxData[ \(binom[m_, k_]\ := \ \(\[Product]\+\(i = 0\)\%\(k - 1\)\((m - i)\)\)\/\(k!\)\)], "Input"], Cell[BoxData[ \(bseries[u_, m_]\ := \[Sum]\+\(k = 0\)\%\[Infinity]\((binom[m, k] u\^k)\)\)], "Input"], Cell[BoxData[ \(bpoly[u_, m_, N_]\ := \[Sum]\+\(k = 0\)\%N\((binom[m, k] u\^k)\)\)], "Input"], Cell[CellGroupData[{ Cell[BoxData[ \(bseries[x\^2, \(-1\)/3]\)], "Input"], Cell[BoxData[ \(1\/\((1 + x\^2)\)\^\(1/3\)\)], "Output"] }, Open ]], Cell[CellGroupData[{ Cell[BoxData[ \(bpoly[x\^2, \(-1\)/3, 5]\)], "Input"], Cell[BoxData[ \(1 - x\^2\/3 + \(2\ x\^4\)\/9 - \(14\ x\^6\)\/81 + \(35\ x\^8\)\/243 - \(91\ x\^10\)\/729\)], "Output"] }, Open ]] }, Open ]], Cell[CellGroupData[{ Cell["10.", "Subsubsection"], Cell[TextData[{ "Find the first four terms of the binomial series for ", Cell[BoxData[ \(TraditionalForm\`f(x)\ = \ \((1 - 2\/x)\)\^\(1/3\)\)]], "." }], "Text"], Cell[CellGroupData[{ Cell[BoxData[ \(bseries[\(-\(2\/x\)\), 1/3]\)], "Input"], Cell[BoxData[ \(\((\(\(-2\) + x\)\/x)\)\^\(1/3\)\)], "Output"] }, Open ]], Cell[CellGroupData[{ Cell[BoxData[ \(bpoly[\(-\(2\/x\)\), 1/3, 5]\)], "Input"], Cell[BoxData[ \(1 - 704\/\(729\ x\^5\) - 160\/\(243\ x\^4\) - 40\/\(81\ x\^3\) - 4\/\(9\ x\^2\) - 2\/\(3\ x\)\)], "Output"] }, Open ]] }, Open ]] }, Open ]], Cell[CellGroupData[{ Cell["Initial Value Problems", "Subsection"], Cell[CellGroupData[{ Cell["24.", "Subsubsection"], Cell[TextData[{ "Find a power series solution for the initial value problem ", Cell[BoxData[ \(TraditionalForm\`\((1 + x\^2)\) y'\ + \ 2 x\ y\ = \ 0\)]], ", ", Cell[BoxData[ \(TraditionalForm\`y(0)\ = \ 3\)]] }], "Text"], Cell[CellGroupData[{ Cell[BoxData[ \(DSolve[{\((1 + x\^2)\) \(y'\)[x]\ + \ 2\ x\ y[x] == 0, \ y[0] == 3}, y[x], x]\)], "Input"], Cell[BoxData[ \({{y[x] \[Rule] 3\/\(1 + x\^2\)}}\)], "Output"] }, Open ]], Cell[CellGroupData[{ Cell[BoxData[ \(Series[3\/\(1 + x\^2\), {x, 0, 8}]\)], "Input"], Cell[BoxData[ InterpretationBox[ RowBox[{ "3", "-", \(3\ x\^2\), "+", \(3\ x\^4\), "-", \(3\ x\^6\), "+", \(3\ x\^8\), "+", InterpretationBox[\(O[x]\^9\), SeriesData[ x, 0, {}, 0, 9, 1]]}], SeriesData[ x, 0, {3, 0, -3, 0, 3, 0, -3, 0, 3}, 0, 9, 1]]], "Output"] }, Open ]], Cell[TextData[{ "To get a power series solution we write\n", Cell[BoxData[ \(TraditionalForm\`y = c\_0 + \(c\_1\) x + \(c\_2\) x\^2 + \ ... \)]], "\nNote that the initial condition gives: ", Cell[BoxData[ \(TraditionalForm\`3\ = \ \(y(0)\ = \ c\_0\)\)]], ". The derivative is \n", Cell[BoxData[ FormBox[ RowBox[{ RowBox[{ FormBox[\(y' = c\_1 + 2 \( c\_2\) x\), "TraditionalForm"], "+", \(3 \( c\_3\) x\^2\), "+"}], "..."}], TraditionalForm]]], "\nso\n", Cell[BoxData[ FormBox[ RowBox[{\(\((1 + x\^2)\) y' + 2\ x\ y\), " ", "=", " ", RowBox[{ RowBox[{ RowBox[{"(", RowBox[{ RowBox[{ FormBox[\(c\_1 + 2 \( c\_2\) x\), "TraditionalForm"], "+", \(3 \( c\_3\) x\^2\), "+"}], "..."}], ")"}], " ", "+", " ", RowBox[{\(x\^2\), " ", RowBox[{"(", RowBox[{ RowBox[{ FormBox[\(c\_1 + 2 \( c\_2\) x\), "TraditionalForm"], "+", \(3 \( c\_3\) x\^2\), "+"}], "..."}], ")"}]}], " ", "+", \(2\ x\ \ \((c\_0 + \(c\_1\) x + \(c\_2\) x\^2 + \ ... )\)\)}], "=", " ", RowBox[{ RowBox[{ RowBox[{ RowBox[{ FormBox[\(c\_1 + \((2 c\_2 + 2 c\_0)\) x\), "TraditionalForm"], "+", \(\((3 c\_3 + c\_1 + 2 c\_1)\) x\^2\), "+", \(\((4 c\_4 + 2 c\_2 + 2 c\_2)\) x\^3\), "+"}], "..."}], "+", \(\((\((n + 1)\) c\_\(n + 1\) + \((n - 1)\) c\_\(n - 1\) + 2 c\_\(n - 1\))\) x\^n\), "+"}], " ", "..."}]}]}], TraditionalForm]]], "\nThis series must equal 0, so we get:\n ", Cell[BoxData[ \(TraditionalForm\`c\_1 = 0\)]], "\n ", Cell[BoxData[ \(TraditionalForm\`2 c\_2 + 2 c\_0 = 0\)]], " or ", Cell[BoxData[ \(TraditionalForm\`c\_2 = \(\(-c\_0\) = \(-3\)\)\)]], "\n ", Cell[BoxData[ \(TraditionalForm\`3 c\_3 + 3 c\_1 = \ 0\)]], " or ", Cell[BoxData[ \(TraditionalForm\`c\_3 = \(\(-c\_1\) = \ 0\)\)]], "\n ", Cell[BoxData[ \(TraditionalForm\`4 c\_4 + \ 4 c\_2 = \ 0\)]], " or ", Cell[BoxData[ \(TraditionalForm\`c\_4 = \ \(\(-c\_2\) = \ 3\)\)]], "\nThe general term is:\n", Cell[BoxData[ FormBox[ RowBox[{" ", FormBox[\(n\ c\_n + n\ c\_\(n - 2\)\), "TraditionalForm"]}], TraditionalForm]]], "=0 or ", Cell[BoxData[ \(TraditionalForm \`c\_n = \ \(\(-c\_\(n - 2\)\) = \(\(c\_\(n - 4\) =. \) .. = \(\(\((\(-1\))\)\^\(n/2\)\) c\_0 = \ \(\((\(-1\))\)\^\(n/2\)\) 3\)\)\)\)]], " if ", Cell[BoxData[ \(TraditionalForm\`n\)]], " is even and ", Cell[BoxData[ \(TraditionalForm\`c\_n = 0\)]], " if ", Cell[BoxData[ \(TraditionalForm\`n\)]], " is odd. The solution is thus ", Cell[BoxData[ \(TraditionalForm \`y\ = \ \(3\ - \ 3 x\^2 + \ 3 x\^4 - \ ... = \ \(3 \((1 - x\^2 + x\^4 - ... )\)\ = \ 3\/\(1 + x\^2\)\)\)\)]] }], "Text"] }, Open ]], Cell[CellGroupData[{ Cell["31.", "Subsubsection"], Cell[TextData[{ "Find a power series solution for the initial value problem ", Cell[BoxData[ \(TraditionalForm\`\(y'\)'\ + \ \(x\^2\) y\ = \ x\)]], ", ", Cell[BoxData[ \(TraditionalForm\`y' \((0)\) = b\)]], ", ", Cell[BoxData[ \(TraditionalForm\`y(0) = a\)]], ".\n\n", StyleBox["Solution.", FontSlant->"Italic"], " We look for a solution of the form ", Cell[BoxData[ \(TraditionalForm \`y = \(a\_0 + \ \(a\_1\) x + \(a\_2\) x\^2 + ... \) + \(a\_n\) x\^n + ... \)]], ".\nTaking derivatives:\n", Cell[BoxData[ \(TraditionalForm \`y'\ = \ \(a\_1 + 2 \( a\_2\) x\ + 3 \( a\_3\) x\^2 + ... \) + n\ \(a\_n\) x\^\(n - 1\) + ... \)]], "\ny'' = ", Cell[BoxData[ FormBox[ RowBox[{ RowBox[{ RowBox[{ RowBox[{ FormBox[\(2 a\_2\), "TraditionalForm"], "+", \(6 \( a\_3\) x\), " ", "+", " ", \(12 \( a\_4\) x\^2\), "+"}], "..."}], "+", \(\(n(n - 1)\) \(a\_n\) x\^\(n - 2\)\), "+"}], "..."}], TraditionalForm]]], ".\nPlug these into the equation ", Cell[BoxData[ \(TraditionalForm\`\(y'\)'\ + \ \(x\^2\) y\ = \ x\)]], " gives: \n", Cell[BoxData[ FormBox[ RowBox[{ RowBox[{ RowBox[{"(", RowBox[{ RowBox[{ RowBox[{ RowBox[{ FormBox[\(2 a\_2\), "TraditionalForm"], "+", \(6 \( a\_3\) x\), " ", "+", " ", \(12 \( a\_4\) x\^2\), "+"}], "..."}], "+", \(\((n + 2)\) \((n + 1)\) \(a\_\(n + 2\)\) x\^n\), "+"}], "..."}], ")"}], "+", \(\(x\^2\)( \(a\_0 + \ \(a\_1\) x + \(a\_2\) x\^2 + ... \) + \(a\_\(n - 2\)\) x\^\(n - 2\) + ... )\)}], "=", "x"}], TraditionalForm]]], " \nCollecting terms: \n", Cell[BoxData[ FormBox[ RowBox[{ RowBox[{ RowBox[{ RowBox[{ FormBox[ RowBox[{ RowBox[{ RowBox[{ RowBox[{ RowBox[{ RowBox[{ FormBox[ \(2 a\_2 + 3*2 \( a\_3\) x + \((\(a\_0 + \)\ \)\), "TraditionalForm"], "4", "*", "3", \(a\_4\)}], ")"}], \(x\^2\)}], "+"}], "..."}], "+", \(( \((n + 2)\) \((n + 1)\) a\_\(n + 2\) + a\_\(n - 2\)) \)}], "TraditionalForm"], \(x\^\(n + 2\)\)}], "+"}], "..."}], "=", "x"}], TraditionalForm]]], " \nAlong with ", Cell[BoxData[ \(TraditionalForm\`y(0) = \(a\_0 = a\)\)]], " and y'(0)= ", Cell[BoxData[ \(TraditionalForm\`a\_1 = b\)]], ", this implies that ", Cell[BoxData[ \(TraditionalForm\`a\_2 = 0\)]], ", ", Cell[BoxData[ \(TraditionalForm\`3*2 a\_3 = 1\)]], ", ", Cell[BoxData[ \(TraditionalForm\`a\_0 + 4*3 a\_4 = 0\)]], ", ... , ", Cell[BoxData[ \(TraditionalForm \`\((n + 2)\) \((n + 1)\) a\_\(n + 2\) + a\_\(n - 2\)\ = \ 0\)]], ", ... . Therefore, ", Cell[BoxData[ \(TraditionalForm \`a\_4 = \ \(\(-\(1\/\(4*3\)\)\) a\_0 = \(-\(1\/\(4*3\)\)\) a\)\)]], ", ", Cell[BoxData[ \(TraditionalForm \`a\_5 = \ \(\(-\ \(1\/\(5*4\)\)\) a\_1 = \ \(-\ \(1\/\(5*4\)\)\) b\)\)]], ", ", Cell[BoxData[ \(TraditionalForm\`a\_6 = \(\(-\(1\/\(6*5\)\)\) a\_2 = 0\)\)]], ", ", Cell[BoxData[ \(TraditionalForm \`a\_7 = \(\(-\(1\/\(7*6\)\)\) a\_3 = \(-\(1\/\(7*6\)\)\) \((1\/6)\)\)\)]], ", ", Cell[BoxData[ \(TraditionalForm \`a\_8 = \(\(-\ \(1\/\(8*7\)\)\) a\_4 = \(\(-\(1\/\(8*7\)\)\) \((\(-\(1\/\(4*3\)\)\) a)\) = \(1\/\(8*7*4*3\ \)\) a\)\)\)]], ", ", Cell[BoxData[ \(TraditionalForm \`a\_9 = \(\(-\ \(1\/\(9*8\)\)\) a\_5 = \(\(-\(1\/\(9*8\)\)\) \((\(-\(1\/\(5*4\)\)\) a\_1)\) = \(1\/\(9*8*5*4\ \)\) b\)\)\)]], ", etc. The solution then looks like \n", Cell[BoxData[ \(TraditionalForm \`y\ = \ a\ + \ b\ x\ + \ \(1\/6\) x\^3 - \ \((a\/\(4*3\))\) x\^4 - \ \((b\/\(5*4\))\) x\^5 - \((1\/\(7*6*6\))\) x\^7 + \ \(a\/\(8*7*4*3\)\) x\^8 + \(b\/\(9*9*5*4\ \)\) x\^9 + ... \)]], "\n" }], "Text"] }, Open ]] }, Open ]], Cell[CellGroupData[{ Cell["Approximating Integrals", "Subsection"], Cell[CellGroupData[{ Cell["34.", "Subsubsection"], Cell[TextData[{ "The series for ", Cell[BoxData[ \(TraditionalForm\`\(e\^\(-x\) - 1\)\/x\)]], " is ", Cell[BoxData[ \(TraditionalForm \`\(\((1 - x + \(1\/\(2!\)\) x\^2 - \(1\/\(3!\)\) x\^3 + \ ... )\)\ - 1\)\/x = \(-1\) + \(1\/\(2!\)\) x - \(1\/\(3!\)\) x\^2 + \ ... \)]], " " }], "Text"], Cell[CellGroupData[{ Cell[BoxData[ \(Series[\(E\^\(-x\) - 1\)\/x, {x, 0, 5}]\)], "Input"], Cell[BoxData[ InterpretationBox[ RowBox[{ \(-1\), "+", \(x\/2\), "-", \(x\^2\/6\), "+", \(x\^3\/24\), "-", \(x\^4\/120\), "+", \(x\^5\/720\), "+", InterpretationBox[\(O[x]\^6\), SeriesData[ x, 0, {}, 0, 6, 1]]}], SeriesData[ x, 0, {-1, Rational[ 1, 2], Rational[ -1, 6], Rational[ 1, 24], Rational[ -1, 120], Rational[ 1, 720]}, 0, 6, 1]]], "Output"] }, Open ]], Cell[TextData[{ "Integrating from 0 to 0.2 gives:\n", Cell[BoxData[ \(TraditionalForm \`\(-\((0.2)\)\)\ + \ \(1\/\(2*\(2!\)\)\) \((0.2)\)\^2 - \ \(1\/\(3*\(3!\)\)\) \((0.2)\)\^3 + \ \(1\/\(4*\(4!\)\)\) \((0.2)\)\^4 - \ ... \)]], " \nThis is an alternating series, so the error in using the first ", Cell[BoxData[ \(TraditionalForm\`n\)]], " terms is less than the absolute value ofthe ", Cell[BoxData[ \(TraditionalForm\`n + 1\)]], "term: \n", Cell[BoxData[ \(TraditionalForm \`error\ < \ \(1\/\(\((n + 1)\)*\(\((n + 1)\)!\)\)\) \((0.2)\)\^\(n + 1\)\)]], ". A table of these values is:" }], "Text"], Cell[CellGroupData[{ Cell[BoxData[ \(\(Table[\ \(1\/\(\((n + 1)\)*\(\((n + 1)\)!\)\)\) \((0.2)\)\^\(n + 1\), {n, 1, 5}] \n\)\)], "Input"], Cell[BoxData[ \({0.0100000000000000022`, 0.000444444444444444552`, 0.000016666666666666674`, 5.33333333333333658`*^-7, 1.48148148148148255`*^-8}\)], "Output"] }, Open ]], Cell[TextData[{ "Thus, for ", Cell[BoxData[ \(TraditionalForm\`n = 2\)]], ", the approimation ", Cell[BoxData[ \(TraditionalForm \`\(-\((0.2)\)\)\ + \ \(1\/\(2*\(2!\)\)\) \((0.2)\)\^2\)]], " has an error is less than ", Cell[BoxData[ \(TraditionalForm\`10\^\(-3\)\)]], "." }], "Text"], Cell[CellGroupData[{ Cell[BoxData[ RowBox[{" ", FormBox[\(\(-\((0.2)\)\)\ + \ \(1\/\(2*\(2!\)\)\) \((0.2)\)\^2\), "TraditionalForm"]}]], "Input"], Cell[BoxData[ \(\(-0.19`\)\)], "Output"] }, Open ]], Cell[CellGroupData[{ Cell[BoxData[ \(\[Integral]\_0\%0.2\(\( E\^\(-x\) - 1\)\/x\) \[DifferentialD]x\)], "Input"], Cell[BoxData[ \(\(-0.190428296651325545`\)\)], "Output"] }, Open ]] }, Open ]], Cell[CellGroupData[{ Cell["46.", "Subsubsection"], Cell[TextData[{ " Find a polynomial that approximates ", Cell[BoxData[ \(TraditionalForm \`F(x)\ = \ \[Integral]\_0\%x\(\( ln(1 + t)\)\/t\) \[DifferentialD]t\)]], " for ", Cell[BoxData[ \(TraditionalForm\`x\)]], " in ", Cell[BoxData[ \(TraditionalForm\`\([0, 1]\)\)]], " with error less than ", Cell[BoxData[ \(TraditionalForm\`10\^\(-3\)\)]], ".\n", StyleBox["Solution. ", FontSlant->"Italic"], " The power series for ", Cell[BoxData[ \(TraditionalForm\`\(ln(1 + t)\)\/t\)]], " is ", Cell[BoxData[ \(TraditionalForm \`\(t - \(1\/2\) t\^2 + \(1\/3\) t\^3 - \ ... \)\/t = 1 - \(1\/2\) t + \(1\/3\) t\^2 - ... \)]] }], "Text"], Cell[CellGroupData[{ Cell[BoxData[ \(Series[Log[1 + t]\/t, {t, 0, 5}]\)], "Input"], Cell[BoxData[ InterpretationBox[ RowBox[{ "1", "-", \(t\/2\), "+", \(t\^2\/3\), "-", \(t\^3\/4\), "+", \(t\^4\/5\), "-", \(t\^5\/6\), "+", InterpretationBox[\(O[t]\^6\), SeriesData[ t, 0, {}, 0, 6, 1]]}], SeriesData[ t, 0, {1, Rational[ -1, 2], Rational[ 1, 3], Rational[ -1, 4], Rational[ 1, 5], Rational[ -1, 6]}, 0, 6, 1]]], "Output"] }, Open ]], Cell[TextData[{ "Integrating from 0 to ", Cell[BoxData[ \(TraditionalForm\`x\)]], " gives: ", Cell[BoxData[ \(TraditionalForm \`x\ - \ \(1\/2\^2\) x\^2 + \ \(1\/3\^2\) x\^3 - \ \(1\/4\^2\) x\^4 + \ ... \)]], " \nSince ", Cell[BoxData[ \(TraditionalForm\`0\ \[LessEqual] \ x\ \[LessEqual] \ 1\)]], ", this series is alternating and the error of using the first ", Cell[BoxData[ \(TraditionalForm\`n\)]], " terms to approximate the series is less than the absolute value of the ", Cell[BoxData[ \(TraditionalForm\`n + 1\)]], " term: ", Cell[BoxData[ \(TraditionalForm \`error\ < \ 1\/\(\((n + 1)\)\^2\ \) | x \( | \^\(n + 1\)\)\( \[LessEqual] 1\/\((n + 1)\)\^2\)\)]], ". the last inequality uses the given restriction that ", Cell[BoxData[ \(TraditionalForm\`0\ \[LessEqual] \ x\ \[LessEqual] \ 1\)]], ". To get the error ", Cell[BoxData[ \(TraditionalForm\`\( < \ 10\^\(-3\)\)\)]], "we should choose ", Cell[BoxData[ \(TraditionalForm\`n\)]], " such that ", Cell[BoxData[ \(TraditionalForm\`\((n + 1)\)\^2 > 10\^3\)]], ", or ", Cell[BoxData[ \(TraditionalForm\`n > \@10\^3 - 1 = 30.6228\)]], ". Thus, ", Cell[BoxData[ \(TraditionalForm\`n = 31\)]], " is sufficient." }], "Text"], Cell[CellGroupData[{ Cell[BoxData[ \(N[\@10\^3 - 1]\)], "Input"], Cell[BoxData[ \(30.6227766016837898`\)], "Output"] }, Open ]], Cell["The approximating polynomial is", "Text"], Cell[CellGroupData[{ Cell[BoxData[ \(approx = \[Sum]\+\(n = 1\)\%31\(\((\(-1\))\)\^\(n + 1\)\/n\^2\) x\^n\)], "Input"], Cell[BoxData[ \(x - x\^2\/4 + x\^3\/9 - x\^4\/16 + x\^5\/25 - x\^6\/36 + x\^7\/49 - x\^8\/64 + x\^9\/81 - x\^10\/100 + x\^11\/121 - x\^12\/144 + x\^13\/169 - x\^14\/196 + x\^15\/225 - x\^16\/256 + x\^17\/289 - x\^18\/324 + x\^19\/361 - x\^20\/400 + x\^21\/441 - x\^22\/484 + x\^23\/529 - x\^24\/576 + x\^25\/625 - x\^26\/676 + x\^27\/729 - x\^28\/784 + x\^29\/841 - x\^30\/900 + x\^31\/961\)], "Output"] }, Open ]], Cell[BoxData[ \(F[x_]\ := \ \[Integral]\_0\%x\( Log[1 + t]\/t\) \[DifferentialD]t\)], "Input"], Cell[CellGroupData[{ Cell[BoxData[ \(Plot[{F[x], approx}, {x, 0, 1}, PlotStyle \[Rule] {RGBColor[1, 0, 0], RGBColor[0, 0, 1]}]\)], "Input"], Cell[GraphicsData["PostScript", "\<\ %! %%Creator: Mathematica %%AspectRatio: .61803 MathPictureStart /Mabs { Mgmatrix idtransform Mtmatrix dtransform } bind def /Mabsadd { Mabs 3 -1 roll add 3 1 roll add exch } bind def %% Graphics %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10 scalefont setfont % Scaling calculations 0.0238095 0.952381 0.0147151 0.715219 [ [.21429 .00222 -9 -9 ] [.21429 .00222 9 0 ] [.40476 .00222 -9 -9 ] [.40476 .00222 9 0 ] [.59524 .00222 -9 -9 ] [.59524 .00222 9 0 ] [.78571 .00222 -9 -9 ] [.78571 .00222 9 0 ] [.97619 .00222 -3 -9 ] [.97619 .00222 3 0 ] [.01131 .15776 -18 -4.5 ] [.01131 .15776 0 4.5 ] [.01131 .3008 -18 -4.5 ] [.01131 .3008 0 4.5 ] [.01131 .44385 -18 -4.5 ] [.01131 .44385 0 4.5 ] [.01131 .58689 -18 -4.5 ] [.01131 .58689 0 4.5 ] [ 0 0 0 0 ] [ 1 .61803 0 0 ] ] MathScale % Start of Graphics 1 setlinecap 1 setlinejoin newpath 0 g .25 Mabswid [ ] 0 setdash .21429 .01472 m .21429 .02097 L s [(0.2)] .21429 .00222 0 1 Mshowa .40476 .01472 m .40476 .02097 L s [(0.4)] .40476 .00222 0 1 Mshowa .59524 .01472 m .59524 .02097 L s [(0.6)] .59524 .00222 0 1 Mshowa .78571 .01472 m .78571 .02097 L s [(0.8)] .78571 .00222 0 1 Mshowa .97619 .01472 m .97619 .02097 L s [(1)] .97619 .00222 0 1 Mshowa .125 Mabswid .07143 .01472 m .07143 .01847 L s .11905 .01472 m .11905 .01847 L s .16667 .01472 m .16667 .01847 L s .2619 .01472 m .2619 .01847 L s .30952 .01472 m .30952 .01847 L s .35714 .01472 m .35714 .01847 L s .45238 .01472 m .45238 .01847 L s .5 .01472 m .5 .01847 L s .54762 .01472 m .54762 .01847 L s .64286 .01472 m .64286 .01847 L s .69048 .01472 m .69048 .01847 L s .7381 .01472 m .7381 .01847 L s .83333 .01472 m .83333 .01847 L s .88095 .01472 m .88095 .01847 L s .92857 .01472 m .92857 .01847 L s .25 Mabswid 0 .01472 m 1 .01472 L s .02381 .15776 m .03006 .15776 L s [(0.2)] .01131 .15776 1 0 Mshowa .02381 .3008 m .03006 .3008 L s [(0.4)] .01131 .3008 1 0 Mshowa .02381 .44385 m .03006 .44385 L s [(0.6)] .01131 .44385 1 0 Mshowa .02381 .58689 m .03006 .58689 L s [(0.8)] .01131 .58689 1 0 Mshowa .125 Mabswid .02381 .05048 m .02756 .05048 L s .02381 .08624 m .02756 .08624 L s .02381 .122 m .02756 .122 L s .02381 .19352 m .02756 .19352 L s .02381 .22928 m .02756 .22928 L s .02381 .26504 m .02756 .26504 L s .02381 .33656 m .02756 .33656 L s .02381 .37232 m .02756 .37232 L s .02381 .40809 m .02756 .40809 L s .02381 .47961 m .02756 .47961 L s .02381 .51537 m .02756 .51537 L s .02381 .55113 m .02756 .55113 L s .25 Mabswid .02381 0 m .02381 .61803 L s 0 0 m 1 0 L 1 .61803 L 0 .61803 L closepath clip newpath 1 0 0 r .5 Mabswid .02381 .01472 m .06244 .04344 L .10458 .07413 L .14415 .10238 L .18221 .12906 L .22272 .15694 L .26171 .1833 L .30316 .21084 L .34309 .23692 L .3815 .2616 L .42237 .28745 L .46172 .31195 L .49955 .33516 L .53984 .35951 L .57861 .38262 L .61984 .40683 L .65954 .42983 L .69774 .45166 L .73838 .47459 L .77751 .49638 L .81909 .51923 L .85916 .54097 L .89771 .56163 L .93871 .58334 L .97619 .60296 L s 0 0 1 r .02381 .01472 m .06244 .04344 L .10458 .07413 L .14415 .10238 L .18221 .12906 L .22272 .15694 L .26171 .1833 L .30316 .21084 L .34309 .23692 L .3815 .2616 L .42237 .28745 L .46172 .31195 L .49955 .33516 L .53984 .35951 L .57861 .38262 L .61984 .40683 L .65954 .42983 L .69774 .45166 L .73838 .47459 L .77751 .49638 L .81909 .51923 L .85916 .54097 L .89771 .56165 L .93871 .58344 L .97619 .60332 L s % End of Graphics MathPictureEnd \ \>"], "Graphics", ImageSize->{288, 177.938}, ImageMargins->{{43, 0}, {0, 0}}, ImageRegion->{{0, 1}, {0, 1}}, ImageCache->GraphicsData["Bitmap", "\<\ CF5dJ6E]HGAYHf4PAg9QL6QYHg 0?ooo`80003on03oool001D0oooo00<000000?ooo`3oool0403oool00`000?l0oooo0?ooo`3e0?oo o`005@3oool00`000000oooo0?ooo`0A0?ooo`80003om@3oool001D0oooo00<000000?ooo`3oool0 4`3oool00`000?l0oooo0?ooo`3b0?ooo`005@3oool00`000000oooo0?ooo`0D0?ooo`80003olP3o ool001D0oooo00<000000?ooo`3oool05P3oool00`000?l0oooo0?ooo`3_0?ooo`005@3oool00`00 0000oooo0?ooo`0G0?ooo`030000o`3oool0oooo0>h0oooo000E0?ooo`8000006@3oool20000onh0 oooo000E0?ooo`030000003oool0oooo01X0oooo00<0003o0?ooo`3oool0j`3oool001D0oooo00<0 00000?ooo`3oool06`3oool00`000?l0oooo0?ooo`3Z0?ooo`005@3oool00`000000oooo0?ooo`0L 0?ooo`80003ojP3oool001D0oooo00<000000?ooo`3oool07P3oool00`000?l0oooo0?ooo`3W0?oo o`005@3oool00`000000oooo0?ooo`0O0?ooo`80003oi`3oool001D0oooo00<000000?ooo`3oool0 8@3oool00`000?l0oooo0?ooo`3T0?ooo`005@3oool00`000000oooo0?ooo`0R0?ooo`030000o`3o ool0oooo0><0oooo000E0?ooo`030000003oool0oooo02<0oooo0P000?oS0?ooo`005@3oool20000 02H0oooo00<0003o0?ooo`3oool0h03oool001D0oooo00<000000?ooo`3oool09P3oool20000on00 oooo000E0?ooo`030000003oool0oooo02P0oooo00<0003o0?ooo`3oool0g@3oool001D0oooo00<0 00000?ooo`3oool0:@3oool20000omd0oooo000E0?ooo`030000003oool0oooo02/0oooo00<0003o 0?ooo`3oool0fP3oool001D0oooo00<000000?ooo`3oool0;03oool00`000?l0oooo0?ooo`3I0?oo o`005@3oool00`000000oooo0?ooo`0]0?ooo`80003of@3oool001D0oooo00<000000?ooo`3oool0 ;`3oool00`000?l0oooo0?ooo`3F0?ooo`005@3oool00`000000oooo0?ooo`0`0?ooo`030000o`3o ool0oooo0=D0oooo00020?ooo`800000103oool00`000000oooo0?ooo`020?ooo`@00000103oool0 0`000000oooo0?ooo`0a0?ooo`80003oe@3oool000050?ooo`000000oooo0?ooo`000000203oool0 0`000000oooo0?ooo`050?ooo`<00000<`3oool00`000?l0oooo0?ooo`3B0?ooo`0000D0oooo0000 003oool0oooo000000090?ooo`030000003oool0oooo00@0oooo00<000000?ooo`3oool0=03oool2 0000om80oooo00001@3oool000000?ooo`3oool0000000X0oooo00<000000?ooo`3oool00`3oool0 0`000000oooo0?ooo`0f0?ooo`030000o`3oool0oooo0@3oool001D0oooo00<000000?ooo`3oool0c`3oool20000ocL0oooo000E0?ooo`030000 003oool0oooo0=40oooo0P000?le0?ooo`005@3oool200000=@0oooo0P000?lc0?ooo`005@3oool0 0`000000oooo0?ooo`3E0?ooo`030000o`3oool0oooo0300oooo000E0?ooo`030000003oool0oooo 0=H0oooo0P000?l`0?ooo`005@3oool00`000000oooo0?ooo`3H0?ooo`80003o;P3oool001D0oooo 00<000000?ooo`3oool0fP3oool20000ob`0oooo000E0?ooo`030000003oool0oooo0=`0oooo0P00 0?lZ0?ooo`005@3oool00`000000oooo0?ooo`3N0?ooo`80003o:03oool001D0oooo00<000000?oo o`3oool0h03oool00`000?l0oooo0?ooo`0U0?ooo`005@3oool00`000000oooo0?ooo`3Q0?ooo`80 003o9@3oool001D0oooo00<000000?ooo`3oool0h`3oool20000ob<0oooo000E0?ooo`800000iP3o ool20000ob40oooo000E0?ooo`030000003oool0oooo0>L0oooo0P000?lO0?ooo`005@3oool00`00 0000oooo0?ooo`3Y0?ooo`80003o7@3oool001D0oooo00<000000?ooo`3oool0j`3oool00`000?l0 oooo0?ooo`0J0?ooo`005@3oool00`000000oooo0?ooo`3/0?ooo`80003o6P3oool001D0oooo00<0 00000?ooo`3oool0kP3oool20000oaP0oooo000E0?ooo`030000003oool0oooo0?00oooo0P000?lF 0?ooo`005@3oool00`000000oooo0?ooo`3b0?ooo`80003o503oool001D0oooo00<000000?ooo`3o ool0m03oool20000oa80oooo00020?ooo`800000103oool00`000000oooo0?ooo`030?ooo`800000 1@3oool00`000000oooo0?ooo`3f0?ooo`030000o`3oool0oooo00l0oooo00001@3oool000000?oo o`3oool0000000P0oooo00@000000?ooo`3oool00000103oool300000?L0oooo0P000?l?0?ooo`00 00D0oooo0000003oool0oooo000000080?ooo`040000003oool0oooo000000@0oooo00<000000?oo o`3oool0n@3oool20000o`d0oooo00001@3oool000000?ooo`3oool0000000T0oooo0P0000050?oo o`030000003oool0oooo0?/0oooo0P000?l;0?ooo`0000D0oooo0000003oool0oooo000000080?oo o`040000003oool0oooo000000@0oooo00<000000?ooo`3oool0o@3oool20000o`T0oooo00001@3o ool000000?ooo`3oool0000000P0oooo00@000000?ooo`3oool00000103oool00`000000oooo0?oo o`3o0?ooo`80003o1`3oool00080oooo0P00000:0?ooo`8000001@3oool00`000000oooo0?ooo`3o 0?ooo`T0oooo000E0?ooo`030000003oool0oooo0?l0oooo2@3oool001D0oooo00<000000?ooo`3o ool0o`3oool90?ooo`005@3oool00`000000oooo0?ooo`3o0?ooo`T0oooo0000\ \>"], ImageRangeCache->{{{0, 287}, {176.938, 0}} -> {-0.0825959, -0.0647262, 0.00385924, 0.00513894}}], Cell[BoxData[ TagBox[\(\[SkeletonIndicator] Graphics \[SkeletonIndicator]\), False, Editable->False]], "Output"] }, Open ]], Cell[TextData[{ "There is no apparent difference between the function and the \ approximation. We must plot the difference with a very small scale on the ", Cell[BoxData[ \(TraditionalForm\`y\)]], "-axis to see a difference appear near ", Cell[BoxData[ \(TraditionalForm\`x = 1\)]], ":" }], "Text"], Cell[CellGroupData[{ Cell[BoxData[ \(Plot[F[x] - approx, \ {x, 0, 1}, PlotRange \[Rule] {\(- .001\), .001}] \)], "Input"], Cell[GraphicsData["PostScript", "\<\ %! %%Creator: Mathematica %%AspectRatio: .61803 MathPictureStart /Mabs { Mgmatrix idtransform Mtmatrix dtransform } bind def /Mabsadd { Mabs 3 -1 roll add 3 1 roll add exch } bind def %% Graphics %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10 scalefont setfont % Scaling calculations 0.0238095 0.952381 0.309017 309.017 [ [.21429 .29652 -9 -9 ] [.21429 .29652 9 0 ] [.40476 .29652 -9 -9 ] [.40476 .29652 9 0 ] [.59524 .29652 -9 -9 ] [.59524 .29652 9 0 ] [.78571 .29652 -9 -9 ] [.78571 .29652 9 0 ] [.97619 .29652 -3 -9 ] [.97619 .29652 3 0 ] [.01131 0 -36 -4.5 ] [.01131 0 0 4.5 ] [.01131 .07725 -48 -4.5 ] [.01131 .07725 0 4.5 ] [.01131 .15451 -42 -4.5 ] [.01131 .15451 0 4.5 ] [.01131 .23176 -48 -4.5 ] [.01131 .23176 0 4.5 ] [.01131 .38627 -42 -4.5 ] [.01131 .38627 0 4.5 ] [.01131 .46353 -36 -4.5 ] [.01131 .46353 0 4.5 ] [.01131 .54078 -42 -4.5 ] [.01131 .54078 0 4.5 ] [.01131 .61803 -30 -4.5 ] [.01131 .61803 0 4.5 ] [ 0 0 0 0 ] [ 1 .61803 0 0 ] ] MathScale % Start of Graphics 1 setlinecap 1 setlinejoin newpath 0 g .25 Mabswid [ ] 0 setdash .21429 .30902 m .21429 .31527 L s [(0.2)] .21429 .29652 0 1 Mshowa .40476 .30902 m .40476 .31527 L s [(0.4)] .40476 .29652 0 1 Mshowa .59524 .30902 m .59524 .31527 L s [(0.6)] .59524 .29652 0 1 Mshowa .78571 .30902 m .78571 .31527 L s [(0.8)] .78571 .29652 0 1 Mshowa .97619 .30902 m .97619 .31527 L s [(1)] .97619 .29652 0 1 Mshowa .125 Mabswid .07143 .30902 m .07143 .31277 L s .11905 .30902 m .11905 .31277 L s .16667 .30902 m .16667 .31277 L s .2619 .30902 m .2619 .31277 L s .30952 .30902 m .30952 .31277 L s .35714 .30902 m .35714 .31277 L s .45238 .30902 m .45238 .31277 L s .5 .30902 m .5 .31277 L s .54762 .30902 m .54762 .31277 L s .64286 .30902 m .64286 .31277 L s .69048 .30902 m .69048 .31277 L s .7381 .30902 m .7381 .31277 L s .83333 .30902 m .83333 .31277 L s .88095 .30902 m .88095 .31277 L s .92857 .30902 m .92857 .31277 L s .25 Mabswid 0 .30902 m 1 .30902 L s .02381 0 m .03006 0 L s [(-0.001)] .01131 0 1 0 Mshowa .02381 .07725 m .03006 .07725 L s [(-0.00075)] .01131 .07725 1 0 Mshowa .02381 .15451 m .03006 .15451 L s [(-0.0005)] .01131 .15451 1 0 Mshowa .02381 .23176 m .03006 .23176 L s [(-0.00025)] .01131 .23176 1 0 Mshowa .02381 .38627 m .03006 .38627 L s [(0.00025)] .01131 .38627 1 0 Mshowa .02381 .46353 m .03006 .46353 L s [(0.0005)] .01131 .46353 1 0 Mshowa .02381 .54078 m .03006 .54078 L s [(0.00075)] .01131 .54078 1 0 Mshowa .02381 .61803 m .03006 .61803 L s [(0.001)] .01131 .61803 1 0 Mshowa .125 Mabswid .02381 .01545 m .02756 .01545 L s .02381 .0309 m .02756 .0309 L s .02381 .04635 m .02756 .04635 L s .02381 .0618 m .02756 .0618 L s .02381 .09271 m .02756 .09271 L s .02381 .10816 m .02756 .10816 L s .02381 .12361 m .02756 .12361 L s .02381 .13906 m .02756 .13906 L s .02381 .16996 m .02756 .16996 L s .02381 .18541 m .02756 .18541 L s .02381 .20086 m .02756 .20086 L s .02381 .21631 m .02756 .21631 L s .02381 .24721 m .02756 .24721 L s .02381 .26266 m .02756 .26266 L s .02381 .27812 m .02756 .27812 L s .02381 .29357 m .02756 .29357 L s .02381 .32447 m .02756 .32447 L s .02381 .33992 m .02756 .33992 L s .02381 .35537 m .02756 .35537 L s .02381 .37082 m .02756 .37082 L s .02381 .40172 m .02756 .40172 L s .02381 .41717 m .02756 .41717 L s .02381 .43262 m .02756 .43262 L s .02381 .44807 m .02756 .44807 L s .02381 .47898 m .02756 .47898 L s .02381 .49443 m .02756 .49443 L s .02381 .50988 m .02756 .50988 L s .02381 .52533 m .02756 .52533 L s .02381 .55623 m .02756 .55623 L s .02381 .57168 m .02756 .57168 L s .02381 .58713 m .02756 .58713 L s .02381 .60258 m .02756 .60258 L s .25 Mabswid .02381 0 m .02381 .61803 L s 0 0 m 1 0 L 1 .61803 L 0 .61803 L closepath clip newpath .5 Mabswid .02381 .30902 m .02605 .30902 L .02846 .30902 L .02962 .30902 L .03072 .30902 L .03171 .30902 L .03279 .30902 L .03397 .30902 L .03527 .30902 L .0379 .30902 L .04262 .30902 L .04755 .30902 L .04885 .30902 L .04959 .30902 L .05027 .30902 L .05152 .30902 L .05222 .30902 L .05285 .30902 L .05409 .30902 L .05479 .30902 L .05543 .30902 L .05661 .30902 L .05786 .30902 L .05899 .30902 L .06005 .30902 L .06244 .30902 L .07289 .30902 L .07417 .30902 L .07538 .30902 L .07664 .30902 L .07731 .30902 L .07803 .30902 L .07923 .30902 L .08051 .30902 L .08159 .30902 L .08278 .30902 L .0835 .30902 L .08415 .30902 L .08485 .30902 L .08561 .30902 L .08631 .30902 L .08696 .30902 L .08824 .30902 L .08895 .30902 L .08962 .30902 L .09034 .30902 L .09113 .30902 L .09195 .30902 L .09272 .30902 L .09342 .30902 L Mistroke .09418 .30902 L .09489 .30902 L .09555 .30902 L .0968 .30902 L .09749 .30902 L .09813 .30902 L .09884 .30902 L .09958 .30902 L .10081 .30902 L .10196 .30902 L .10323 .30902 L .10394 .30902 L .10458 .30902 L .10576 .30902 L .10687 .30902 L .10809 .30902 L .1094 .30902 L .1107 .30902 L .11136 .30902 L .11207 .30902 L .11334 .30902 L .11452 .30902 L .1237 .30902 L .12501 .30902 L .12574 .30902 L .12642 .30902 L .12766 .30902 L .12897 .30902 L .13015 .30902 L .13125 .30902 L .13246 .30902 L .13375 .30902 L .13447 .30902 L .13513 .30902 L .13586 .30902 L .13663 .30902 L .13793 .30902 L .13867 .30902 L .13936 .30902 L .14064 .30902 L .14182 .30902 L .14311 .30902 L .14377 .30902 L .14448 .30902 L .14579 .30902 L .14701 .30902 L .14764 .30902 L .14834 .30902 L .14907 .30902 L .14975 .30902 L Mistroke .15101 .30902 L .15215 .30902 L .15279 .30902 L .15348 .30902 L .15474 .30902 L .15596 .30902 L .15708 .30902 L .15836 .30902 L .15957 .30902 L .16062 .30902 L .16173 .30902 L .16295 .30902 L .16406 .30902 L .16537 .30902 L .16656 .30902 L .16722 .30902 L .16793 .30902 L .16923 .30902 L .17044 .30902 L .17173 .30902 L .17284 .30902 L .17405 .30902 L .17474 .30902 L .17547 .30902 L .17677 .30902 L .1775 .30902 L .17817 .30902 L .17891 .30902 L .1797 .30902 L .18039 .30902 L .18113 .30902 L .18183 .30902 L .18248 .30902 L .18371 .30902 L .18501 .30902 L .18622 .30902 L .18754 .30902 L .18879 .30902 L .18994 .30902 L .19107 .30902 L .19213 .30902 L .19335 .30902 L .19445 .30902 L .19569 .30902 L .19699 .30902 L .19811 .30902 L .19933 .30902 L .20065 .30902 L .20137 .30902 L .20206 .30902 L Mistroke .20269 .30902 L .20338 .30902 L .2046 .30902 L .20573 .30902 L .20679 .30902 L .20796 .30902 L .20922 .30902 L .21053 .30902 L .21178 .30902 L .2129 .30902 L .21412 .30902 L .21528 .30902 L .21633 .30902 L .21754 .30902 L .21868 .30902 L .21974 .30902 L .22071 .30902 L .22178 .30902 L .22291 .30902 L .22413 .30902 L .22482 .30902 L .22546 .30902 L .22663 .30902 L .22787 .30902 L .22897 .30902 L .23001 .30902 L .23115 .30902 L .23238 .30902 L .23497 .30902 L .23626 .30902 L .237 .30902 L .23768 .30902 L .23891 .30902 L .24003 .30902 L .24132 .30902 L .24254 .30902 L .2436 .30902 L .24476 .30902 L .24598 .30902 L .24712 .30902 L .24818 .30902 L .24915 .30902 L .25021 .30902 L .25134 .30902 L .25255 .30902 L .25368 .30902 L .25437 .30902 L .25501 .30902 L .25623 .30902 L .25739 .30902 L Mistroke .25846 .30902 L .25963 .30902 L .26087 .30902 L .2621 .30902 L .26279 .30902 L .26343 .30902 L .2646 .30902 L .26584 .30902 L .26695 .30902 L .268 .30902 L .26914 .30902 L .27037 .30902 L .27161 .30902 L .27231 .30902 L .27296 .30902 L .27364 .30902 L .27437 .30902 L .27568 .30902 L .27688 .30902 L .27818 .30902 L .27941 .30902 L .28054 .30902 L .2816 .30902 L .28274 .30902 L .28381 .30902 L .28479 .30902 L .28593 .30902 L .28718 .30902 L .28836 .30902 L .28946 .30902 L .29057 .30902 L .29163 .30902 L .29278 .30902 L .29402 .30902 L .29526 .30902 L .29656 .30902 L .29767 .30902 L .29888 .30902 L .3002 .30902 L .30141 .30902 L .30205 .30902 L .30274 .30902 L .30347 .30902 L .30415 .30902 L .30541 .30902 L .30655 .30902 L .30719 .30902 L .30788 .30902 L .30914 .30902 L .31036 .30902 L Mistroke .31148 .30902 L .31397 .30902 L .31508 .30902 L .31628 .30902 L .31742 .30902 L .31846 .30902 L .31967 .30902 L .32097 .30902 L .3222 .30902 L .32332 .30902 L .32463 .30902 L .32532 .30902 L .32605 .30902 L .32669 .30902 L .3274 .30902 L .32864 .30902 L .32932 .30902 L .33004 .30902 L .33132 .30902 L .33203 .30902 L .33269 .30902 L .33342 .30902 L .33419 .30902 L .33487 .30902 L .3356 .30902 L .33629 .30902 L .33692 .30902 L .33813 .30902 L .3394 .30902 L .34061 .30902 L .34193 .30902 L .34318 .30902 L .34433 .30902 L .34548 .30902 L .34652 .30902 L .34771 .30902 L .34884 .30902 L .35008 .30902 L .35138 .30902 L .3525 .30902 L .35372 .30902 L .35503 .30902 L .35577 .30902 L .35644 .30902 L .35775 .30902 L .35898 .30902 L .36003 .30902 L .3612 .30902 L .36233 .30902 L .36354 .30902 L Mistroke .36468 .30902 L .36572 .30902 L .36677 .30902 L .36776 .30902 L .3689 .30902 L .37012 .30902 L .37127 .30902 L .37232 .30902 L .37355 .30902 L .37424 .30902 L .37488 .30902 L .37605 .30902 L .3773 .30902 L .37851 .30902 L .3792 .30902 L .37984 .30902 L .381 .30902 L .38225 .30902 L .38335 .30902 L .38439 .30902 L .38553 .30902 L .38676 .30902 L .38799 .30902 L .38869 .30902 L .38934 .30902 L .39065 .30902 L .39139 .30902 L .39206 .30902 L .39326 .30902 L .39455 .30902 L .39578 .30902 L .39691 .30902 L .39797 .30902 L .3991 .30902 L .40017 .30902 L .40115 .30902 L .4023 .30902 L .40354 .30902 L .40472 .30902 L .40581 .30902 L .40705 .30902 L .40821 .30902 L .40925 .30902 L .41038 .30902 L .41161 .30902 L .41291 .30902 L .41402 .30902 L .41524 .30902 L .41655 .30902 L .41776 .30902 L Mistroke .41839 .30902 L .41908 .30902 L .41981 .30902 L .42049 .30902 L .42174 .30902 L .42288 .30902 L .42546 .30902 L .43477 .30902 L .43713 .30902 L .43842 .30902 L .43964 .30902 L .44034 .30902 L .44109 .30902 L .4424 .30902 L .44497 .30902 L .44637 .30902 L .44768 .30902 L .44834 .30902 L .44905 .30902 L .44983 .30902 L .45055 .30902 L .45181 .30902 L .45319 .30902 L .45569 .30902 L .45826 .30902 L .46103 .30902 L .46348 .30902 L .46605 .30902 L .46839 .30902 L .47094 .30902 L .47543 .30902 L .48068 .30902 L .48362 .30902 L .48629 .30902 L .4915 .30902 L .49642 .30902 L .50103 .30902 L .50611 .30902 L .51142 .30902 L .51639 .30902 L .52103 .30902 L .52527 .30902 L .53017 .30902 L .53483 .30902 L .53986 .30902 L .54441 .30902 L .54967 .30902 L .55463 .30902 L .55923 .30902 L .56346 .30902 L Mistroke .56811 .30902 L .57302 .30902 L .57797 .30902 L .58249 .30902 L .58771 .30902 L .59265 .30902 L .59721 .30902 L .60143 .30902 L .60606 .30902 L .61098 .30902 L .61587 .30902 L .62035 .30902 L .62527 .30902 L .63045 .30902 L .63497 .30902 L .63918 .30902 L .64415 .30902 L .64873 .30902 L .65378 .30902 L .65925 .30902 L .66408 .30902 L .66918 .30902 L .67803 .30902 L .68306 .30902 L .68777 .30902 L .69275 .30901 L .69818 .30901 L .7033 .30901 L .70805 .30901 L .71703 .30901 L .72205 .30901 L .72659 .30901 L .73148 .309 L .73664 .309 L .74587 .30899 L .75101 .30899 L .75581 .30898 L .76103 .30897 L .7667 .30896 L .77215 .30894 L .77718 .30892 L .78189 .3089 L .78709 .30887 L .7961 .30881 L .80103 .30876 L .80566 .30871 L .81552 .30856 L .82047 .30846 L .82588 .30833 L .83548 .30801 L Mistroke .8444 .3076 L .84946 .30729 L .85494 .30689 L .85978 .30647 L .86489 .30593 L .87457 .30458 L .88349 .30285 L .89295 .30031 L .9031 .29647 L .91268 .29135 L .92142 .28496 L .93132 .27503 L .94048 .26237 L .95054 .24322 L .96123 .21455 L .96894 .18671 L .97619 .15342 L Mfstroke % End of Graphics MathPictureEnd \ \>"], "Graphics", ImageSize->{288, 177.938}, ImageMargins->{{62, 0}, {0, 0}}, ImageRegion->{{0, 1}, {0, 1}}, ImageCache->GraphicsData["Bitmap", "\<\ CF5dJ6E]HGAYHf4PAg9QL6QYHg/0oooo000C0?ooo`040000003oool0oooo000000P0oooo00@000000?ooo`3oool000000P3o ool010000000oooo0?ooo`0000040?ooo`030000003oool0oooo00<0oooo00<000000?ooo`3oool0 jP3oool000d0oooo100000020?ooo`040000003oool0oooo000000P0oooo00@000000?ooo`3oool0 00000P3oool010000000oooo0?ooo`0000040?ooo`030000003oool0oooo00<0oooo00<000000?oo o`3oool0jP3oool001<0oooo00@000000?ooo`3oool00000203oool010000000oooo0?ooo`000002 0?ooo`040000003oool0oooo000000@0oooo00<000000?ooo`3oool00`3oool00`000000oooo0?oo o`3Z0?ooo`004`3oool010000000oooo0?ooo`0000080?ooo`040000003oool0oooo00000080oooo 00@000000?ooo`3oool000000P3oool3000000D0oooo00<000000?ooo`3oool0jP3oool001@0oooo 0P00000:0?ooo`800000103oool2000000D0oooo00<000000?ooo`3oool00`3oool00`000000oooo 0?ooo`3Z0?ooo`00<`3oool00`000000oooo0?ooo`3Z0?ooo`00<`3oool00`000000oooo0?ooo`3Z 0?ooo`00<`3oool00`000000oooo0?ooo`3Z0?ooo`00<`3oool00`000000oooo0?ooo`3Z0?ooo`00 <`3oool00`000000oooo0?ooo`3Z0?ooo`00<`3oool00`000000oooo0?ooo`3Z0?ooo`00<`3oool0 0`000000oooo0?ooo`3Z0?ooo`00<`3oool00`000000oooo0?ooo`3Z0?ooo`00<`3oool00`000000 oooo0?ooo`3Z0?ooo`00<`3oool00`000000oooo0?ooo`3Z0?ooo`00<`3oool00`000000oooo0?oo o`3Z0?ooo`00<`3oool00`000000oooo0?ooo`3Z0?ooo`00203oool2000000@0oooo00<000000?oo o`3oool00`3oool2000000@0oooo0P0000040?ooo`800000103oool00`000000oooo0?ooo`020?oo o`<000001@3oool00`000000oooo0?ooo`3Z0?ooo`001`3oool010000000oooo0?ooo`0000080?oo o`040000003oool0oooo00000080oooo00@000000?ooo`3oool000000P3oool010000000oooo0?oo o`0000030?ooo`030000003oool0oooo00D0oooo00<000000?ooo`3oool00P3oool200000>/0oooo 00070?ooo`040000003oool0oooo000000P0oooo00@000000?ooo`3oool000000P3oool010000000 oooo0?ooo`0000020?ooo`040000003oool0oooo000000@0oooo00<000000?ooo`3oool0103oool0 0`000000oooo0?ooo`020?ooo`030000003oool0oooo0>X0oooo00000`3oool00000000000020000 0080oooo00@000000?ooo`3oool00000203oool010000000oooo0?ooo`0000020?ooo`040000003o ool0oooo00000080oooo00@000000?ooo`3oool00000103oool010000000oooo0?ooo`3oool30000 00D0oooo00<000000?ooo`3oool0jP3oool000L0oooo00@000000?ooo`3oool00000203oool01000 0000oooo0?ooo`0000020?ooo`040000003oool0oooo00000080oooo00@000000?ooo`3oool00000 1@3oool010000000oooo0?ooo`0000070?ooo`030000003oool0oooo0>X0oooo00070?ooo`040000 003oool0oooo000000P0oooo00@000000?ooo`3oool000000P3oool010000000oooo0?ooo`000002 0?ooo`040000003oool0oooo00000080oooo00@000000?ooo`3oool000000P3oool00`000000oooo 0?ooo`050?ooo`030000003oool0oooo0>X0oooo00080?ooo`8000002P3oool2000000@0oooo0P00 00040?ooo`8000000`3oool400000080oooo100000040?ooo`030000003oool0oooo0>X0oooo000c 0?ooo`030000003oool0oooo0>X0oooo000c0?ooo`030000003oool0oooo0>X0oooo000c0?ooo`03 0000003oool0oooo0>X0oooo000c0?ooo`030000003oool0oooo0>X0oooo000c0?ooo`030000003o ool0oooo0>X0oooo000c0?ooo`030000003oool0oooo0>X0oooo000c0?ooo`030000003oool0oooo 0>X0oooo000c0?ooo`030000003oool0oooo0>X0oooo000c0?ooo`030000003oool0oooo0>X0oooo 000c0?ooo`030000003oool0oooo0>X0oooo000c0?ooo`030000003oool0oooo0>X0oooo000>0?oo o`800000103oool00`000000oooo0?ooo`030?ooo`800000103oool2000000@0oooo0P0000030?oo o`<000001@3oool00`000000oooo0?ooo`3Z0?ooo`003@3oool010000000oooo0?ooo`0000080?oo o`040000003oool0oooo00000080oooo00@000000?ooo`3oool000000P3oool010000000oooo0?oo o`0000050?ooo`030000003oool0oooo0080oooo00<000000?ooo`3oool0h`3oool00`000000oooo 0?ooo`040?ooo`003@3oool010000000oooo0?ooo`0000080?ooo`040000003oool0oooo00000080 oooo00@000000?ooo`3oool000000P3oool010000000oooo0?ooo`0000050?ooo`030000003oool0 oooo0080oooo0P00003T0?ooo`030000003oool0oooo00@0oooo00070?ooo`@000000P3oool01000 0000oooo0?ooo`0000080?ooo`040000003oool0oooo00000080oooo00@000000?ooo`3oool00000 0P3oool010000000oooo0?ooo`0000020?ooo`<000001@3oool00`000000oooo0?ooo`3S0?ooo`03 0000003oool0oooo00@0oooo000=0?ooo`040000003oool0oooo000000P0oooo00@000000?ooo`3o ool000000P3oool010000000oooo0?ooo`0000020?ooo`040000003oool0oooo00000080oooo00<0 00000?ooo`3oool01@3oool00`000000oooo0?ooo`3R0?ooo`030000003oool0oooo00D0oooo000= 0?ooo`040000003oool0oooo000000P0oooo00@000000?ooo`3oool000000P3oool010000000oooo 0?ooo`0000020?ooo`040000003oool0oooo00000080oooo00<000000?ooo`3oool01@3oool00`00 0000oooo0?ooo`3R0?ooo`030000003oool0oooo00D0oooo000>0?ooo`8000002P3oool2000000@0 oooo0P0000040?ooo`8000000`3oool4000000@0oooo00<000000?ooo`3oool0hP3oool00`000000 oooo0?ooo`050?ooo`00<`3oool00`000000oooo0?ooo`3R0?ooo`030000003oool0oooo00D0oooo 000c0?ooo`030000003oool0oooo0>40oooo00<000000?ooo`3oool01P3oool003<0oooo00<00000 0?ooo`3oool0h@3oool00`000000oooo0?ooo`060?ooo`00<`3oool00`000000oooo0?ooo`3Q0?oo o`030000003oool0oooo00H0oooo000c0?ooo`030000003oool0oooo0>00oooo00<000000?ooo`3o ool01`3oool003<0oooo00<000000?ooo`3oool0h03oool00`000000oooo0?ooo`070?ooo`00<`3o ool00`000000oooo0?ooo`3P0?ooo`030000003oool0oooo00L0oooo000c0?ooo`030000003oool0 oooo0>00oooo00<000000?ooo`3oool01`3oool003<0oooo00<000000?ooo`3oool0g`3oool00`00 0000oooo0?ooo`080?ooo`00<`3oool00`000000oooo0?ooo`3O0?ooo`030000003oool0oooo00P0 oooo000c0?ooo`030000003oool0oooo0=l0oooo00<000000?ooo`3oool0203oool003<0oooo00<0 00000?ooo`3oool0gP3oool00`000000oooo0?ooo`090?ooo`00203oool2000000@0oooo00<00000 0?ooo`3oool00`3oool2000000@0oooo0P0000040?ooo`8000000`3oool400000080oooo0`000005 0?ooo`030000003oool0oooo0=h0oooo00<000000?ooo`3oool02@3oool000L0oooo00@000000?oo o`3oool00000203oool010000000oooo0?ooo`0000020?ooo`040000003oool0oooo00000080oooo 00@000000?ooo`3oool000000P3oool00`000000oooo0?ooo`060?ooo`030000003oool0oooo0080 oooo0P00003O0?ooo`030000003oool0oooo00T0oooo00070?ooo`040000003oool0oooo000000P0 oooo00@000000?ooo`3oool000000P3oool010000000oooo0?ooo`0000020?ooo`040000003oool0 oooo000000<0oooo00<000000?ooo`3oool01@3oool00`000000oooo0?ooo`020?ooo`030000003o ool0oooo0=h0oooo00<000000?ooo`3oool02@3oool000030?ooo`0000000000008000000P3oool0 10000000oooo0?ooo`0000080?ooo`040000003oool0oooo00000080oooo00@000000?ooo`3oool0 00000P3oool010000000oooo0?ooo`0000040?ooo`040000003oool0oooo0?ooo`<000001@3oool0 0`000000oooo0?ooo`3M0?ooo`030000003oool0oooo00X0oooo00070?ooo`040000003oool0oooo 000000P0oooo00@000000?ooo`3oool000000P3oool010000000oooo0?ooo`0000020?ooo`040000 003oool0oooo000000D0oooo00@000000?ooo`3oool000001`3oool00`000000oooo0?ooo`3M0?oo o`030000003oool0oooo00X0oooo00070?ooo`040000003oool0oooo000000P0oooo00@000000?oo o`3oool000000P3oool010000000oooo0?ooo`0000020?ooo`040000003oool0oooo00000080oooo 00@000000?ooo`3oool000000P3oool00`000000oooo0?ooo`050?ooo`030000003oool0oooo0=`0 oooo00<000000?ooo`3oool02`3oool000P0oooo0P00000:0?ooo`800000103oool2000000@0oooo 0P0000040?ooo`8000000`3oool4000000@0oooo00<000000?ooo`3oool0g03oool00`000000oooo 0?ooo`0;0?ooo`00<`3oool00`000000oooo0?ooo`3K0?ooo`030000003oool0oooo00`0oooo000c 0?ooo`030000003oool0oooo0=/0oooo00<000000?ooo`3oool0303oool003<0oooo00<000000?oo o`3oool0fP3oool00`000000oooo0?ooo`0=0?ooo`00<`3oool00`000000oooo0?ooo`3I0?ooo`03 0000003oool0oooo00h0oooo000c0?ooo`030000003oool0oooo0=T0oooo00<000000?ooo`3oool0 3P3oool003<0oooo00<000000?ooo`3oool0903oool2000000@0oooo00<000000?ooo`3oool00P3o ool4000001l0oooo0P0000040?ooo`030000003oool0oooo00@0oooo00<000000?ooo`3oool07P3o ool2000000@0oooo00<000000?ooo`3oool00`3oool200000200oooo0P0000040?ooo`030000003o ool0oooo00<0oooo0P00000L0?ooo`030000003oool0oooo00H0oooo100000050?ooo`00<`3oool0 0`000000oooo0?ooo`0S0?ooo`040000003oool0oooo000000P0oooo00<000000?ooo`3oool07`3o ool010000000oooo0?ooo`00000:0?ooo`030000003oool0oooo01d0oooo00@000000?ooo`3oool0 0000203oool010000000oooo0?ooo`00000N0?ooo`040000003oool0oooo000000P0oooo00@00000 0?ooo`3oool000006P3oool00`000000oooo0?ooo`090?ooo`030000003oool0oooo00@0oooo000c 0?ooo`030000003oool0oooo02<0oooo00@000000?ooo`3oool000002@3oool00`000000oooo0?oo o`0N0?ooo`040000003oool0oooo000000L0oooo1@00000N0?ooo`040000003oool0oooo000000P0 oooo00@000000?ooo`3oool000007P3oool010000000oooo0?ooo`0000080?ooo`040000003oool0 oooo000001T0oooo00<000000?ooo`3oool02P3oool00`000000oooo0?ooo`040?ooo`00<`3oool0 0`000000oooo0?ooo`0S0?ooo`040000003oool0oooo000000X0oooo00<000000?ooo`3oool07@3o ool010000000oooo0?ooo`0000070?ooo`040000003oool0oooo000001l0oooo00@000000?ooo`3o ool00000203oool3000001l0oooo00@000000?ooo`3oool000002@3oool2000001P0oooo0P00000= 0?ooo`030000003oool0oooo00@0oooo000c0?ooo`030000003oool0oooo02<0oooo00@000000?oo o`3oool000002`3oool00`000000oooo0?ooo`0L0?ooo`040000003oool0oooo000000P0oooo00<0 00000?ooo`0000007`3oool010000000oooo0?ooo`0000080?ooo`030000003oool0oooo01l0oooo 00@000000?ooo`3oool00000203oool010000000oooo0?ooo`00000E0?ooo`8000003`3oool00`00 0000oooo0?ooo`040?ooo`00<`3oool00`000000oooo0?ooo`0S0?ooo`040000003oool0oooo0000 00P0oooo00@000000?ooo`3oool000007P3oool010000000oooo0?ooo`0000090?ooo`8000007`3o ool010000000oooo0?ooo`0000080?ooo`030000003oool0oooo01l0oooo00@000000?ooo`3oool0 0000203oool010000000oooo0?ooo`00000C0?ooo`8000003`3oool3000000H0oooo000c0?ooo`03 0000003oool0oooo02@0oooo0P00000:0?ooo`800000803oool2000000/0oooo00<000000?ooo`3o ool07P3oool2000000X0oooo0`00000O0?ooo`8000002P3oool200000180oooo0P00000C0?ooo`03 0000003oool0oooo00@0oooo000c0?ooo`030000003oool0oooo0X0oooo000c0?ooo`030000 003oool0oooo0>X0oooo000c0?ooo`030000003oool0oooo0>X0oooo000c0?ooo`030000003oool0 oooo0>X0oooo000c0?ooo`030000003oool0oooo0>X0oooo000c0?ooo`030000003oool0oooo0>X0 oooo000c0?ooo`030000003oool0oooo0>X0oooo000c0?ooo`030000003oool0oooo0>X0oooo000c 0?ooo`030000003oool0oooo0>X0oooo000c0?ooo`030000003oool0oooo0>X0oooo000c0?ooo`03 0000003oool0oooo0>X0oooo000c0?ooo`030000003oool0oooo0>X0oooo000c0?ooo`030000003o ool0oooo0>X0oooo000c0?ooo`030000003oool0oooo0>X0oooo00080?ooo`800000103oool00`00 0000oooo0?ooo`030?ooo`800000103oool2000000@0oooo0P0000030?ooo`@000000P3oool30000 00D0oooo00<000000?ooo`3oool0jP3oool000L0oooo00@000000?ooo`3oool00000203oool01000 0000oooo0?ooo`0000020?ooo`040000003oool0oooo00000080oooo00@000000?ooo`3oool00000 0P3oool00`000000oooo0?ooo`060?ooo`030000003oool0oooo0080oooo00<000000?ooo`3oool0 jP3oool000L0oooo00@000000?ooo`3oool00000203oool010000000oooo0?ooo`0000020?ooo`04 0000003oool0oooo00000080oooo00@000000?ooo`3oool000000`3oool00`000000oooo0?ooo`05 0?ooo`030000003oool0oooo0080oooo0P00003[0?ooo`001`3oool010000000oooo0?ooo`000008 0?ooo`040000003oool0oooo00000080oooo00@000000?ooo`3oool000000P3oool010000000oooo 0?ooo`0000040?ooo`040000003oool0oooo0?ooo`<000001@3oool00`000000oooo0?ooo`3Z0?oo o`001`3oool010000000oooo0?ooo`0000080?ooo`040000003oool0oooo00000080oooo00@00000 0?ooo`3oool000000P3oool010000000oooo0?ooo`0000050?ooo`040000003oool0oooo000000L0 oooo00<000000?ooo`3oool0jP3oool000L0oooo00@000000?ooo`3oool00000203oool010000000 oooo0?ooo`0000020?ooo`040000003oool0oooo00000080oooo00@000000?ooo`3oool000000P3o ool010000000oooo0?ooo`0000020?ooo`030000003oool0oooo00D0oooo00<000000?ooo`3oool0 jP3oool000P0oooo0P00000:0?ooo`800000103oool2000000@0oooo0P0000040?ooo`8000000`3o ool4000000@0oooo00<000000?ooo`3oool0jP3oool003<0oooo00<000000?ooo`3oool0jP3oool0 03<0oooo00<000000?ooo`3oool0jP3oool003<0oooo00<000000?ooo`3oool0jP3oool003<0oooo 00<000000?ooo`3oool0jP3oool003<0oooo00<000000?ooo`3oool0jP3oool003<0oooo00<00000 0?ooo`3oool0jP3oool003<0oooo00<000000?ooo`3oool0jP3oool003<0oooo00<000000?ooo`3o ool0jP3oool003<0oooo00<000000?ooo`3oool0jP3oool003<0oooo00<000000?ooo`3oool0jP3o ool003<0oooo00<000000?ooo`3oool0jP3oool003<0oooo00<000000?ooo`3oool0jP3oool000h0 oooo0P0000040?ooo`030000003oool0oooo00<0oooo0P0000040?ooo`800000103oool2000000<0 oooo0`0000050?ooo`030000003oool0oooo0>X0oooo000=0?ooo`040000003oool0oooo000000P0 oooo00@000000?ooo`3oool000000P3oool010000000oooo0?ooo`0000020?ooo`040000003oool0 oooo000000D0oooo00<000000?ooo`3oool00P3oool200000>/0oooo000=0?ooo`040000003oool0 oooo000000P0oooo00@000000?ooo`3oool000000P3oool010000000oooo0?ooo`0000020?ooo`04 0000003oool0oooo000000D0oooo00<000000?ooo`3oool00P3oool00`000000oooo0?ooo`3Z0?oo o`003@3oool010000000oooo0?ooo`0000080?ooo`040000003oool0oooo00000080oooo00@00000 0?ooo`3oool000000P3oool010000000oooo0?ooo`0000020?ooo`<000001@3oool00`000000oooo 0?ooo`3Z0?ooo`003@3oool010000000oooo0?ooo`0000080?ooo`040000003oool0oooo00000080 oooo00@000000?ooo`3oool000000P3oool010000000oooo0?ooo`0000020?ooo`030000003oool0 oooo00D0oooo00<000000?ooo`3oool0jP3oool000d0oooo00@000000?ooo`3oool00000203oool0 10000000oooo0?ooo`0000020?ooo`040000003oool0oooo00000080oooo00@000000?ooo`3oool0 00000P3oool00`000000oooo0?ooo`050?ooo`030000003oool0oooo0>X0oooo000>0?ooo`800000 2P3oool2000000@0oooo0P0000040?ooo`8000000`3oool4000000@0oooo00<000000?ooo`3oool0 jP3oool003<0oooo00<000000?ooo`3oool0jP3oool003<0oooo00<000000?ooo`3oool0jP3oool0 03<0oooo00<000000?ooo`3oool0jP3oool003<0oooo00<000000?ooo`3oool0jP3oool003<0oooo 00<000000?ooo`3oool0jP3oool003<0oooo00<000000?ooo`3oool0jP3oool003<0oooo00<00000 0?ooo`3oool0jP3oool003<0oooo00<000000?ooo`3oool0jP3oool003<0oooo00<000000?ooo`3o ool0jP3oool003<0oooo00<000000?ooo`3oool0jP3oool003<0oooo00<000000?ooo`3oool0jP3o ool003<0oooo00<000000?ooo`3oool0jP3oool000P0oooo0P0000040?ooo`030000003oool0oooo 00<0oooo0P0000040?ooo`800000103oool2000000@0oooo00<000000?ooo`3oool00P3oool30000 00D0oooo00<000000?ooo`3oool0jP3oool000L0oooo00@000000?ooo`3oool00000203oool01000 0000oooo0?ooo`0000020?ooo`040000003oool0oooo00000080oooo00@000000?ooo`3oool00000 0`3oool00`000000oooo0?ooo`050?ooo`030000003oool0oooo0080oooo0P00003[0?ooo`001`3o ool010000000oooo0?ooo`0000080?ooo`040000003oool0oooo00000080oooo00@000000?ooo`3o ool000000P3oool010000000oooo0?ooo`0000040?ooo`030000003oool0oooo00@0oooo00<00000 0?ooo`3oool00P3oool00`000000oooo0?ooo`3Z0?ooo`001`3oool010000000oooo0?ooo`000008 0?ooo`040000003oool0oooo00000080oooo00@000000?ooo`3oool000000P3oool010000000oooo 0?ooo`0000040?ooo`040000003oool0oooo0?ooo`<000001@3oool00`000000oooo0?ooo`3Z0?oo o`001`3oool010000000oooo0?ooo`0000080?ooo`040000003oool0oooo00000080oooo00@00000 0?ooo`3oool000000P3oool010000000oooo0?ooo`0000050?ooo`040000003oool0oooo000000L0 oooo00<000000?ooo`3oool0jP3oool000L0oooo00@000000?ooo`3oool00000203oool010000000 oooo0?ooo`0000020?ooo`040000003oool0oooo00000080oooo00@000000?ooo`3oool000000P3o ool010000000oooo0?ooo`0000020?ooo`030000003oool0oooo00D0oooo00<000000?ooo`3oool0 jP3oool000P0oooo0P00000:0?ooo`800000103oool2000000@0oooo0P0000030?ooo`@000000P3o ool4000000@0oooo00<000000?ooo`3oool0jP3oool003<0oooo00<000000?ooo`3oool0jP3oool0 03<0oooo00<000000?ooo`3oool0jP3oool003<0oooo00<000000?ooo`3oool0jP3oool003<0oooo 00<000000?ooo`3oool0jP3oool003<0oooo00<000000?ooo`3oool0jP3oool003<0oooo00<00000 0?ooo`3oool0jP3oool003<0oooo00<000000?ooo`3oool0jP3oool003<0oooo00<000000?ooo`3o ool0jP3oool003<0oooo00<000000?ooo`3oool0jP3oool003<0oooo00<000000?ooo`3oool0jP3o ool003<0oooo00<000000?ooo`3oool0jP3oool001@0oooo0P0000040?ooo`030000003oool0oooo 00<0oooo0P0000040?ooo`8000000`3oool4000000@0oooo00<000000?ooo`3oool0jP3oool001<0 oooo00@000000?ooo`3oool00000203oool010000000oooo0?ooo`0000020?ooo`040000003oool0 oooo000000@0oooo00<000000?ooo`3oool00`3oool00`000000oooo0?ooo`3Z0?ooo`004`3oool0 10000000oooo0?ooo`0000080?ooo`040000003oool0oooo00000080oooo00@000000?ooo`3oool0 0000103oool00`000000oooo0?ooo`030?ooo`800000j`3oool001<0oooo00@000000?ooo`3oool0 0000203oool010000000oooo0?ooo`0000020?ooo`040000003oool0oooo000000@0oooo00<00000 0?ooo`3oool0l03oool001<0oooo00@000000?ooo`3oool00000203oool010000000oooo0?ooo`00 00020?ooo`040000003oool0oooo000000@0oooo00<000000?ooo`3oool0l03oool001<0oooo00@0 00000?ooo`3oool00000203oool010000000oooo0?ooo`0000020?ooo`040000003oool0oooo0000 0080oooo0`00003b0?ooo`00503oool2000000X0oooo0P0000040?ooo`8000001@3oool00`000000 oooo0?ooo`3`0?ooo`00o`3ooolQ0?ooo`00o`3ooolQ0?ooo`00o`3ooolQ0?ooo`00o`3ooolQ0?oo o`00o`3ooolQ0?ooo`00o`3ooolQ0?ooo`00o`3ooolQ0?ooo`00o`3ooolQ0?ooo`00o`3ooolQ0?oo o`00\ \>"], ImageRangeCache->{{{0, 287}, {176.938, 0}} -> {-0.221625, -0.00118434, 0.00434366, 1.3387*^-5}}], Cell[BoxData[ TagBox[\(\[SkeletonIndicator] Graphics \[SkeletonIndicator]\), False, Editable->False]], "Output"] }, Open ]] }, Open ]] }, Open ]] }, FrontEndVersion->"X 3.0", ScreenRectangle->{{0, 1024}, {0, 768}}, ScreenStyleEnvironment->"Working", WindowSize->{520, 600}, WindowMargins->{{Automatic, 91}, {28, 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[1709, 49, 84, 3, 62, "Subsection"], Cell[1796, 54, 28, 0, 45, "Subsection"], Cell[CellGroupData[{ Cell[1849, 58, 37, 0, 45, "Subsection"], Cell[CellGroupData[{ Cell[1911, 62, 27, 0, 42, "Subsubsection"], Cell[1941, 64, 1919, 53, 171, "Text"], Cell[CellGroupData[{ Cell[3885, 121, 80, 1, 32, "Input"], Cell[3968, 124, 383, 10, 45, "Output"] }, Open ]] }, Open ]], Cell[CellGroupData[{ Cell[4400, 140, 27, 0, 42, "Subsubsection"], Cell[4430, 142, 329, 11, 68, "Text"], Cell[4762, 155, 116, 2, 45, "Input"], Cell[4881, 159, 113, 2, 50, "Input"], Cell[4997, 163, 101, 2, 51, "Input"], Cell[CellGroupData[{ Cell[5123, 169, 56, 1, 31, "Input"], Cell[5182, 172, 60, 1, 47, "Output"] }, Open ]], Cell[CellGroupData[{ Cell[5279, 178, 57, 1, 31, "Input"], Cell[5339, 181, 129, 2, 45, "Output"] }, Open ]] }, Open ]], Cell[CellGroupData[{ Cell[5517, 189, 28, 0, 42, "Subsubsection"], Cell[5548, 191, 173, 5, 34, "Text"], Cell[CellGroupData[{ Cell[5746, 200, 60, 1, 43, "Input"], Cell[5809, 203, 66, 1, 45, "Output"] }, Open ]], Cell[CellGroupData[{ Cell[5912, 209, 61, 1, 43, "Input"], Cell[5976, 212, 134, 2, 43, "Output"] }, Open ]] }, Open ]] }, Open ]], Cell[CellGroupData[{ Cell[6171, 221, 44, 0, 45, "Subsection"], Cell[CellGroupData[{ Cell[6240, 225, 28, 0, 42, "Subsubsection"], Cell[6271, 227, 244, 7, 32, "Text"], Cell[CellGroupData[{ Cell[6540, 238, 118, 2, 31, "Input"], Cell[6661, 242, 66, 1, 43, "Output"] }, Open ]], Cell[CellGroupData[{ Cell[6764, 248, 67, 1, 43, "Input"], Cell[6834, 251, 310, 7, 29, "Output"] }, Open ]], Cell[7159, 261, 3368, 98, 310, "Text"] }, Open ]], Cell[CellGroupData[{ Cell[10564, 364, 28, 0, 42, "Subsubsection"], Cell[10595, 366, 4666, 138, 357, "Text"] }, Open ]] }, Open ]], Cell[CellGroupData[{ Cell[15310, 510, 45, 0, 45, "Subsection"], Cell[CellGroupData[{ Cell[15380, 514, 28, 0, 42, "Subsubsection"], Cell[15411, 516, 341, 11, 42, "Text"], Cell[CellGroupData[{ Cell[15777, 531, 72, 1, 43, "Input"], Cell[15852, 534, 445, 12, 45, "Output"] }, Open ]], Cell[16312, 549, 686, 19, 109, "Text"], Cell[CellGroupData[{ Cell[17023, 572, 133, 3, 64, "Input"], Cell[17159, 577, 176, 3, 29, "Output"] }, Open ]], Cell[17350, 583, 323, 12, 34, "Text"], Cell[CellGroupData[{ Cell[17698, 599, 144, 3, 43, "Input"], Cell[17845, 604, 44, 1, 27, "Output"] }, Open ]], Cell[CellGroupData[{ Cell[17926, 610, 98, 2, 44, "Input"], Cell[18027, 614, 60, 1, 27, "Output"] }, Open ]] }, Open ]], Cell[CellGroupData[{ Cell[18136, 621, 28, 0, 42, "Subsubsection"], Cell[18167, 623, 725, 26, 80, "Text"], Cell[CellGroupData[{ Cell[18917, 653, 65, 1, 43, "Input"], Cell[18985, 656, 432, 12, 45, "Output"] }, Open ]], Cell[19432, 671, 1337, 42, 131, "Text"], Cell[CellGroupData[{ Cell[20794, 717, 47, 1, 37, "Input"], Cell[20844, 720, 54, 1, 27, "Output"] }, Open ]], Cell[20913, 724, 47, 0, 32, "Text"], Cell[CellGroupData[{ Cell[20985, 728, 108, 2, 62, "Input"], Cell[21096, 732, 442, 6, 121, "Output"] }, Open ]], Cell[21553, 741, 102, 2, 44, "Input"], Cell[CellGroupData[{ Cell[21680, 747, 129, 2, 43, "Input"], Cell[21812, 751, 16662, 406, 186, 3470, 239, "GraphicsData", "PostScript", "Graphics"], Cell[38477, 1159, 130, 3, 27, "Output"] }, Open ]], Cell[38622, 1165, 320, 9, 50, "Text"], Cell[CellGroupData[{ Cell[38967, 1178, 111, 2, 27, "Input"], Cell[39081, 1182, 28264, 960, 186, 11325, 746, "GraphicsData", "PostScript", "Graphics"], Cell[67348, 2144, 130, 3, 27, "Output"] }, Open ]] }, Open ]] }, Open ]] } ] *) (*********************************************************************** End of Mathematica Notebook file. ***********************************************************************)