(*********************************************************************** 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[ 17514, 782]*) (*NotebookOutlinePosition[ 18288, 809]*) (* CellTagsIndexPosition[ 18244, 805]*) (*WindowFrame->Normal*) Notebook[{ Cell[TextData[{ "NERCOMP ", StyleBox["\[FilledSmallCircle]", FontSlant->"Plain"], " Amherst College ", StyleBox["\[FilledSmallCircle]", FontSlant->"Plain"], " 22 Feb 2000" }], "Subsubtitle", TextAlignment->Center, TextJustification->0], Cell["Hero's method", "Title"], Cell[CellGroupData[{ Cell["The problem", "Section"], Cell[TextData[{ "\[FilledSmallCircle] Problem: To estimate ", Cell[BoxData[ \(TraditionalForm\`\@c\)]], " for c > 0\n\[FilledSmallCircle] Method: iteration" }], "Subsubsection", ParagraphSpacing->{0.5, 0}] }, Closed]], Cell[CellGroupData[{ Cell[TextData[{ "Function ", StyleBox["g", FontFamily->"Courier"], " to iterate" }], "Section"], Cell[CellGroupData[{ Cell["Define g", "Subsection"], Cell[BoxData[ \(g[x_]\ := \ \(1\/2\) \((x\ + \ c\/x)\)\)], "Input"], Cell[TextData[{ "Not really a function definition, but a ", StyleBox["rewrite rule.", FontSlant->"Italic"] }], "Text", CellDingbat->"\[FilledSmallCircle]"], Cell[TextData[{ "Form ", StyleBox["x_", FontFamily->"Courier"], " is a ", StyleBox["pattern", FontSlant->"Italic"], "." }], "Text", CellDingbat->"\[FilledSmallCircle]"], Cell[BoxData[ \(g[1]\)], "Input"], Cell[TextData[{ StyleBox["c", FontFamily->"Courier"], " is just a ", StyleBox["symbol", FontSlant->"Italic"], StyleBox[".", FontFamily->"Times New Roman", FontSlant->"Italic"], StyleBox[" ", FontFamily->"Times New Roman"] }], "Text", CellDingbat->"\[FilledSmallCircle]"], Cell[BoxData[ \(g[g[1]]\)], "Input"] }, Closed]], Cell[CellGroupData[{ Cell["Multiple arguments", "Subsection"], Cell[TextData[{ "Above, ", StyleBox["c", FontFamily->"Courier"], " is global to function ", StyleBox["g", FontFamily->"Courier"], " of 1 argument. Could use function of 2 arguments:" }], "Text"], Cell[BoxData[{ \(gg[cc_, \ x_]\ := \ \(1\/2\) \((x\ + \ cc\/x)\)\), "\n", \(gg[2, \ 1]\ \)}], "Input"] }, Closed]], Cell[CellGroupData[{ Cell[TextData[{ "Advanced topic: ", StyleBox["Everything", FontSlant->"Italic"], " is an expression." }], "Subsection"], Cell[BoxData[ \(FullForm[x\ + \ c/x]\)], "Input"], Cell[BoxData[ \(\(\(FullForm[\ Hold[\ g[x_]\ := \ \(1\/2\) \((x\ + \ c\/x)\)]\ ]\)\(\ \)\)\)], "Input"], Cell[BoxData[ \(\(\(FullForm[\ \ g[ x_]\ := \ \(1\/2\) \((x\ + \ c\/x)\)]\)\(\ \)\)\)], "Input"], Cell[TextData[{ " Always get a result, maybe the symbol ", StyleBox["Null", FontFamily->"Courier"], StyleBox[".", FontFamily->"Times New Roman"] }], "Text"] }, Closed]], Cell[CellGroupData[{ Cell[TextData[{ "Advanced topic: ", StyleBox["Head", FontFamily->"Courier"] }], "Subsection"], Cell[BoxData[ \(FullForm[3/2]\)], "Input"], Cell[BoxData[ \(Head[3/2]\)], "Input"] }, Closed]], Cell[CellGroupData[{ Cell["Advanced topic: Pure functions", "Subsection"], Cell[BoxData[ \(\(gg[2, \ #] &\)[1]\)], "Input"] }, Closed]], Cell[CellGroupData[{ Cell[TextData[{ "Using", StyleBox[" /. ", FontFamily->"Courier"], "for ", StyleBox["Rule", FontFamily->"Courier"] }], "Subsection"], Cell[BoxData[ \(g[1]\)], "Input"], Cell[BoxData[ \(g[1]\ /. \ c\ \[Rule] \ 2\)], "Input"], Cell[BoxData[ \(gg[cc, \ x0]\ /. \ {x0\ \[Rule] \ 1, \ cc\ \[Rule] \ 2}\)], "Input"] }, Closed]] }, Closed]], Cell[CellGroupData[{ Cell[TextData[{ "Iterating ", StyleBox["g", FontFamily->"Courier"] }], "Section"], Cell[CellGroupData[{ Cell[TextData[{ "Fix value of c to estimate ", Cell[BoxData[ \(TraditionalForm\`\@2\)]], " " }], "Subsection"], Cell[BoxData[ \(c\ = \ 2\)], "Input"], Cell[BoxData[ \(\(c\ = \ 2;\)\)], "Input"], Cell[TextData[{ StyleBox["Set", FontFamily->"Courier"], " ( ", StyleBox["=", FontFamily->"Courier"], " ) vs. ", StyleBox["SetDelayed", FontFamily->"Courier"], " (", StyleBox[" ", FontFamily->"Times"], StyleBox[":=", FontFamily->"Courier"], " )" }], "Subsubsection", CellDingbat->"\[FilledSmallCircle]"] }, Closed]], Cell[CellGroupData[{ Cell["Variations on evaluating", "Subsection"], Cell[BoxData[ \(\(?g\)\)], "Input"], Cell[BoxData[{ \(g[1]\ \ \ \ \ \ \ \ \), "\n", \(g[g[1]]\ \)}], "Input"], Cell[CellGroupData[{ Cell[TextData[{ StyleBox["Prefix", FontSlant->"Italic"], " input form:" }], "Subsubsection", CellDingbat->None], Cell[BoxData[ \(g@g[1]\)], "Input"], Cell[BoxData[ \(N[g@g[1]]\)], "Input"] }, Closed]], Cell[CellGroupData[{ Cell[TextData[{ StyleBox["Postfix", FontSlant->"Italic"], " input form:" }], "Subsubsection", CellDingbat->None], Cell[BoxData[ \(g@g[1]\ // \ N\)], "Input"] }, Closed]], Cell[CellGroupData[{ Cell["Display more digits:", "Subsubsection", CellDingbat->None], Cell[BoxData[ \(N[g@g[1], \ $MachinePrecision]\)], "Input"], Cell[BoxData[ \(NumberForm[N[g@g[1]], \ $MachinePrecision]\)], "Input"] }, Closed]], Cell[CellGroupData[{ Cell[TextData[{ "Using ", StyleBox["lists", FontSlant->"Italic"], ":" }], "Subsubsection", CellDingbat->None], Cell[BoxData[ \({\ N[g[1]], \ N[g@g[1]]\ }\)], "Input"], Cell[TextData[{ StyleBox["N", FontFamily->"Courier"], " has the attribute ", StyleBox["Listable", FontFamily->"Courier"], ":" }], "Text"], Cell[BoxData[ \(N[\ {g[1], \ g@g[1]}\ ]\)], "Input"] }, Closed]] }, Closed]], Cell[CellGroupData[{ Cell[TextData[{ "The initial estimate: a floating-point ", StyleBox["approximate real number", FontSlant->"Italic"] }], "Subsection"], Cell[BoxData[ \(\(x0\ = \ 1. \ ;\)\)], "Input"] }, Closed]], Cell[CellGroupData[{ Cell["Iterating\[LongDash]at last!", "Subsection"], Cell[BoxData[ \({x0, \ g[x0], \ g@g[x0], \ g@\(g@g[x0]\), \ g@\ \(g@\(g@g[x0]\)\)}\)], "Input"], Cell[CellGroupData[{ Cell[TextData[{ "List vs. ", StyleBox["compound expression", FontSlant->"Italic"], ":" }], "Subsubsection", CellDingbat->None], Cell[BoxData[ \(\((x0; \ g[x0]; \ g@g[x0]; \ g@\(g@g[x0]\); \ \ g@\(g@\(g@g[x0]\)\))\)\)], "Input"] }, Closed]], Cell[CellGroupData[{ Cell["Reusing previous values:", "Subsubsection"], Cell[BoxData[{ \(x0\), "\n", \(g[%]\), "\n", \(g[%]\)}], "Input"] }, Closed]] }, Closed]], Cell[CellGroupData[{ Cell["\"Functional\" method for iteration", "Subsection"], Cell[BoxData[ \(Nest[g, \ x0, \ 4]\)], "Input"], Cell[BoxData[ \(\(\(NestList[g, \ x0, \ 4]\)\(\ \)\)\)], "Input"], Cell[CellGroupData[{ Cell["Advanced topic: Lists as arguments", "Subsubsection"], Cell[BoxData[ \(Nest[g, \ {1. , \ 9. }, \ \ 4]\)], "Input"], Cell[BoxData[ \(Nest[g, \ x0, \ \ {2, \ 4}]\)], "Input"], Cell[BoxData[ \(Map[Nest[g, \ x0, \ #] &, \ {2, \ 4}]\)], "Input"], Cell[BoxData[ \(\(Nest[g, \ x0, \ #] &\)\ /@ \ {2, \ 4}\)], "Input"] }, Closed]] }, Closed]], Cell[CellGroupData[{ Cell["Fixed points", "Subsection"], Cell[BoxData[ \(FixedPoint[g, \ x0]\)], "Input"], Cell[BoxData[ \(NumberForm[%\ , \ $MachinePrecision]\)], "Input"], Cell[BoxData[ \(FixedPointList[g, \ x0]\ // \ NumberForm[#, \ $MachinePrecision] &\)], "Input"] }, Closed]], Cell[CellGroupData[{ Cell["How good are the estimates? ", "Subsection"], Cell[BoxData[{ \(NumberForm[N[\@2], \ $MachinePrecision]\), "\n", \(NumberForm[FixedPoint[g, \ x0], \ $MachinePrecision]\)}], "Input"] }, Closed]] }, Closed]], Cell[CellGroupData[{ Cell["\"Arbitrary precision\" approximate numbers", "Section"], Cell[BoxData[ \(Precision[1. ]\)], "Input"], Cell[BoxData[ \(Precision[1. ]\ \[Equal] \ $MachinePrecision\)], "Input"], Cell[BoxData[ \(1.`50\)], "Input"], Cell[BoxData[ \(Precision[%]\)], "Input"], Cell[BoxData[ \(\(x0\ = \ 1.`50;\)\)], "Input"], Cell[BoxData[ \(FixedPoint[g, \ x0]\)], "Input"], Cell[BoxData[ \(Precision[%]\)], "Input"], Cell[CellGroupData[{ Cell["You cannot get \"something for nothing\":", "Subsubsection", CellDingbat->None], Cell[BoxData[ \(NumberForm[FixedPoint[g, \ 1. ], \ 50]\)], "Input"], Cell[BoxData[ \(Precision[FixedPoint[g, \ 1. ]]\)], "Input"] }, Closed]] }, Closed]], Cell[CellGroupData[{ Cell["Procedural programs", "Section"], Cell["Use machine precision again:", "Text"], Cell[BoxData[ \(\(x0\ = \ 1. ;\)\)], "Input"], Cell[BoxData[ \(hero[c_, \ n_, \ x0_]\ := \ \n\t Module[{x\ = \ x0}, \n\t\tDo[ x\ = \ g[x], \ {n}]; \n\t\tx\[IndentingNewLine]\t]\)], "Input"], Cell[BoxData[ \(hero[2, \ 4, \ 1. ]\)], "Input"], Cell[BoxData[ \(herolist[c_, \ n_, \ x0_]\ := \ Module[{x\ = \ {x0}}, \n\t\tDo[ x\ = \ Append[x, \ g[Last[x]]], \ {n}]; x]\)], "Input"], Cell[BoxData[ \(herolist[2, \ 4, \ 1. ]\)], "Input"], Cell[CellGroupData[{ Cell["Advanced topic: Type checking", "Subsection"], Cell[BoxData[{ \(Clear[herolist]\), "\n", \(herolist[c_, \ n_Integer, \ x0_?Positive]\ := \ Module[{x\ = \ {x0}}, \n\t\tDo[ x\ = \ Append[x, \ g[Last[x]]], \ {n}]; x]\)}], "Input"], Cell[BoxData[ \(herolist[2, \ 4.1, \ 1. ]\)], "Input"], Cell[BoxData[ \(herolist[2, \ 4, \ \(-1. \)]\)], "Input"], Cell[BoxData[ \(herolist[2, \ 4, \ 1. ]\)], "Input"] }, Closed]], Cell[CellGroupData[{ Cell["Advanced topic: Defaults", "Subsection"], Cell[BoxData[{ \(herolist[c_, \ n_]\ := \ herolist[c, \ n, \ 1. ]\), "\n", \(herolist[2, \ 4]\), "\n", \(herolist[2, \ 4, \ 0.5]\)}], "Input"], Cell["No change to original definition!", "Text"] }, Closed]], Cell[CellGroupData[{ Cell["Advanced topic: Options", "Subsection"], Cell[BoxData[{ \(Clear[herolist]\), "\n", \(\(Options[herolist]\ = \ {Iterations\ \[Rule] \ 10, \ Start\ \[Rule] \ 1. };\)\)}], "Input"], Cell[BoxData[ \(herolist[c_, \ opts___?OptionQ]\ := \ Module[{x, \ x0, \ n}, \n\t\tn\ = \ \(Iterations\ /. \ {opts}\)\ /. \ Options[herolist]; \n\t\tx0\ = \ \(Start /. \ {opts}\)\ /. \ Options[herolist]; \n\t\tx\ = \ {x0}; \n\t\tDo[ x\ = \ Append[x, \ g[Last[x]]], \ {n}]; x]\)], "Input"], Cell[BoxData[ \(herolist[2]\)], "Input"], Cell[BoxData[ \(herolist[2, \ Start\ \[Rule] \ 0.5]\)], "Input"], Cell[BoxData[ \(herolist[2, Start\ \[Rule] \ 0.5, \ \ Iterations\ \[Rule] \ 4]\)], "Input"] }, Closed]] }, Closed]], Cell[CellGroupData[{ Cell["Recursive programs", "Section"], Cell[CellGroupData[{ Cell[TextData[{ "With ", StyleBox["If", FontFamily->"Courier"], " test" }], "Subsection"], Cell[BoxData[ \(rhero[n_, \ x0_]\ := \ \ Module[{}, \n\t\tIf[n\ == \ 0, \ x0, \ g@rhero[n - 1, \ x0]]]\)], "Input"], Cell[BoxData[{ \(rhero[4, \ 1. ]\), "\n", \(rhero[0, \ 1. ]\)}], "Input"] }, Closed]], Cell[CellGroupData[{ Cell["With pattern-matching and rewrite rules", "Subsection"], Cell[BoxData[{ \(\(rh[0, \ x_]\ = \ x;\)\), "\n", \(rh[n_, \ x_]\ := \ g@rh[n - 1, \ x]\)}], "Input"], Cell[BoxData[{ \(rh[4, \ 1. ]\), "\n", \(rh[0, \ 1. ]\)}], "Input"], Cell[BoxData[ \(\(?rh\)\)], "Input"] }, Closed]], Cell[CellGroupData[{ Cell["Advanced topic: \"Dynamic programming\"", "Subsection"], Cell[BoxData[{ \(\(drh[0, \ x_]\ = \ x;\)\), "\n", \(drh[n_, \ x_]\ := \ \(drh[n, \ x]\ = \ g@drh[n - 1, \ x]\)\)}], "Input"], Cell[BoxData[ \(\(?drh\)\)], "Input"], Cell[BoxData[ \(drh[1, \ 1. ]\)], "Input"], Cell[BoxData[ \(\(?drh\)\)], "Input"], Cell[BoxData[ \(drh[2, \ 1. ]\)], "Input"], Cell[BoxData[ \(\(?drh\)\)], "Input"] }, Closed]] }, Closed]], Cell[CellGroupData[{ Cell["Solve exactly", "Section"], Cell[BoxData[ \(Solve[g[x]\ == \ x, \ x]\)], "Input"] }, Closed]], Cell[CellGroupData[{ Cell["Visualizing fixed points", "Section"], Cell[BoxData[ \(Plot[{g[x], \ x}, \ {x, \ \(-2\), \ 2}]\)], "Input"], Cell[CellGroupData[{ Cell["Graphics objects", "Subsection"], Cell[BoxData[ \(bothGraphs\ = \ Plot[{g[x], \ x}, \ {x, \ \(-2\), \ 2}]\)], "Input"], Cell[BoxData[ \(cstFuncGraph\ = \ Plot[\@2, \ {x, \ \(-2\), \ 2}]\)], "Input"], Cell[BoxData[ \(Show[bothGraphs, \ cstFuncGraph]\)], "Input"] }, Closed]], Cell[CellGroupData[{ Cell["Enhancing graphs", "Subsection"], Cell[BoxData[ \(\(myg\ = \ Plot[{g[x], \ x}, \ {x, \ \(-2\), \ 2}, \ PlotPoints\ \[Rule] \ 80, \ PlotStyle\ \[Rule] \ {RGBColor[1, 0, 0], \ RGBColor[0, 0, 1]}, Frame\ \[Rule] \ True, \ FrameLabel\ \[Rule] \ \ \ {\*"\"\<\!\(1\/2\)(x + \!\(2\/x\))\>\"", \ "\<\>"}];\)\)], "Input"] }, Closed]] }, Closed]], Cell[CellGroupData[{ Cell["Cobweb diagram", "Section"], Cell["Based upon an original program by Frank Wattenberg.", "Text"], Cell[CellGroupData[{ Cell["Advanced topic: Usage message", "Subsection"], Cell[BoxData[ \(\(cobweb::usage\ = \n\ \ \ \*"\"\\"";\)\)], \ "Input"], Cell[BoxData[ \(\(?cobweb\)\)], "Input"] }, Closed]], Cell[CellGroupData[{ Cell["The program", "Subsection"], Cell[BoxData[ \(bounce[f_, \ x_]\ := \ Module[{fx, \ ffx}, \ fx\ = \ f[x]; \ ffx\ = \ f[fx]; \n\t{Line[{{x, \ f[x]}, {f[x], \ f[x]}, {f[x], \ f[f[x]]}}], \n\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Point[{f[x], \ f[f[x]]}]}]\)], "Input"], Cell[BoxData[ \(web[f_, \ n_, \ x0_]\ := \ Module[{x\ = \ x0, \ steps\ = \ {}}, \ \n\t Do[\ steps\ = \ Append[steps, \ bounce[f, \ x]]; \ x\ = \ f[x], \ {n}]; steps]\)], "Input"], Cell[BoxData[ \(cobweb[f_, \ lo_, \ hi_, \ n_, \ x0_]\ := \ Show[Plot[{f[x], \ x}, \ {x, \ lo, \ hi}, \ PlotRange\ \[Rule] \ {0, \ hi}, \ DisplayFunction\ \[Rule] \ Identity], \ Graphics[{PointSize[0.02], \ RGBColor[1, 0, 0], Dashing[{0.01}], \ Point[{x0, \ f[x0]}], \ web[f, \ n, \ x0]}], \[IndentingNewLine]AspectRatio\ \[Rule] \ Automatic, \ Axes\ \[Rule] \ Automatic, \ DisplayFunction\ \[Rule] \ $DisplayFunction]\)], "Input"] }, Closed]], Cell[CellGroupData[{ Cell["Run it", "Subsection"], Cell[BoxData[ \(g[x_]\ := \ 0.5 \((x\ + \ 2\/x)\)\)], "Input"], Cell[BoxData[ \(\(cobweb[g, \ 0, \ 10, \ 4, \ 9];\)\)], "Input"] }, Closed]], Cell[CellGroupData[{ Cell["Animate it", "Subsection"], Cell[BoxData[ \(cobwebEvolve[f_, \ lo_, \ hi_, \ n_, \ x0_]\ := \ Module[{i}, \ Table[cobweb[f, \ lo, \ hi, \ i, \ x0], {i, \ 0, \ n}]]\)], "Input"], Cell[BoxData[ \(\(cobwebEvolve[g, \ 0, \ 10, \ 7, \ 9];\)\)], "Input"] }, Closed]] }, Closed]], Cell[BoxData[ StyleBox[ ButtonBox[ RowBox[{" ", StyleBox[\(\(Main\)\(\ \)\(notebook\)\(\ \ \ \ \ \)\), FontVariations->{"Underline"->False}]}], ButtonData:>{ FrontEnd`FileName[ { Directory[ ]}, "NERCOMPISSIG.nb", CharacterEncoding -> "WindowsANSI"], None}, ButtonStyle->"Hyperlink", ButtonMargins->10, ButtonNote->"Open main notebook"], FontFamily->"Helvetica"]], "Subsubsection", TextAlignment->Center, TextJustification->0], Cell[TextData[{ "Copyright \[Copyright] 2000 by ", ButtonBox["Murray Eisenberg", ButtonData:>{ URL[ "mailto://murray@math.umass.edu"], None}, ButtonStyle->"Hyperlink"], ". All rights reserved." }], "SmallText", ShowGroupOpenCloseIcon->False, TextAlignment->Center, TextJustification->0] }, FrontEndVersion->"4.0 for Microsoft Windows", ScreenRectangle->{{0, 1024}, {0, 723}}, ScreenStyleEnvironment->"Presentation", WindowToolbars->{}, CellGrouping->Manual, WindowSize->{697, 681}, WindowMargins->{{147, Automatic}, {Automatic, -2}}, StyleDefinitions -> "TalkStyle.nb" ] (*********************************************************************** 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[1717, 49, 257, 10, 88, "Subsubtitle"], Cell[1977, 61, 30, 0, 67, "Title"], Cell[CellGroupData[{ Cell[2032, 65, 30, 0, 78, "Section"], Cell[2065, 67, 222, 6, 88, "Subsubsection"] }, Closed]], Cell[CellGroupData[{ Cell[2324, 78, 105, 5, 51, "Section"], Cell[CellGroupData[{ Cell[2454, 87, 30, 0, 66, "Subsection"], Cell[2487, 89, 73, 1, 72, "Input"], Cell[2563, 92, 165, 5, 41, "Text"], Cell[2731, 99, 189, 9, 41, "Text"], Cell[2923, 110, 37, 1, 56, "Input"], Cell[2963, 113, 303, 12, 41, "Text"], Cell[3269, 127, 40, 1, 56, "Input"] }, Closed]], Cell[CellGroupData[{ Cell[3346, 133, 40, 0, 66, "Subsection"], Cell[3389, 135, 213, 8, 41, "Text"], Cell[3605, 145, 113, 2, 95, "Input"] }, Closed]], Cell[CellGroupData[{ Cell[3755, 152, 130, 5, 66, "Subsection"], Cell[3888, 159, 54, 1, 56, "Input"], Cell[3945, 162, 133, 3, 72, "Input"], Cell[4081, 167, 112, 2, 66, "Input"], Cell[4196, 171, 170, 6, 37, "Text"] }, Closed]], Cell[CellGroupData[{ Cell[4403, 182, 102, 4, 68, "Subsection"], Cell[4508, 188, 46, 1, 56, "Input"], Cell[4557, 191, 42, 1, 50, "Input"] }, Closed]], Cell[CellGroupData[{ Cell[4636, 197, 53, 0, 66, "Subsection"], Cell[4692, 199, 52, 1, 56, "Input"] }, Closed]], Cell[CellGroupData[{ Cell[4781, 205, 147, 7, 68, "Subsection"], Cell[4931, 214, 37, 1, 56, "Input"], Cell[4971, 217, 60, 1, 56, "Input"], Cell[5034, 220, 91, 1, 56, "Input"] }, Closed]] }, Closed]], Cell[CellGroupData[{ Cell[5174, 227, 89, 4, 51, "Section"], Cell[CellGroupData[{ Cell[5288, 235, 122, 5, 70, "Subsection"], Cell[5413, 242, 42, 1, 56, "Input"], Cell[5458, 245, 47, 1, 56, "Input"], Cell[5508, 248, 344, 16, 55, "Subsubsection"] }, Closed]], Cell[CellGroupData[{ Cell[5889, 269, 46, 0, 66, "Subsection"], Cell[5938, 271, 39, 1, 56, "Input"], Cell[5980, 274, 81, 2, 79, "Input"], Cell[CellGroupData[{ Cell[6086, 280, 121, 5, 55, "Subsubsection"], Cell[6210, 287, 39, 1, 56, "Input"], Cell[6252, 290, 42, 1, 56, "Input"] }, Closed]], Cell[CellGroupData[{ Cell[6331, 296, 122, 5, 55, "Subsubsection"], Cell[6456, 303, 48, 1, 56, "Input"] }, Closed]], Cell[CellGroupData[{ Cell[6541, 309, 66, 1, 54, "Subsubsection"], Cell[6610, 312, 63, 1, 56, "Input"], Cell[6676, 315, 75, 1, 56, "Input"] }, Closed]], Cell[CellGroupData[{ Cell[6788, 321, 121, 6, 55, "Subsubsection"], Cell[6912, 329, 59, 1, 56, "Input"], Cell[6974, 332, 153, 7, 41, "Text"], Cell[7130, 341, 56, 1, 56, "Input"] }, Closed]] }, Closed]], Cell[CellGroupData[{ Cell[7235, 348, 141, 4, 66, "Subsection"], Cell[7379, 354, 52, 1, 56, "Input"] }, Closed]], Cell[CellGroupData[{ Cell[7468, 360, 50, 0, 66, "Subsection"], Cell[7521, 362, 106, 2, 56, "Input"], Cell[CellGroupData[{ Cell[7652, 368, 138, 6, 55, "Subsubsection"], Cell[7793, 376, 110, 2, 56, "Input"] }, Closed]], Cell[CellGroupData[{ Cell[7940, 383, 49, 0, 54, "Subsubsection"], Cell[7992, 385, 79, 3, 102, "Input"] }, Closed]] }, Closed]], Cell[CellGroupData[{ Cell[8120, 394, 57, 0, 66, "Subsection"], Cell[8180, 396, 51, 1, 56, "Input"], Cell[8234, 399, 69, 1, 56, "Input"], Cell[CellGroupData[{ Cell[8328, 404, 60, 0, 54, "Subsubsection"], Cell[8391, 406, 63, 1, 56, "Input"], Cell[8457, 409, 60, 1, 56, "Input"], Cell[8520, 412, 70, 1, 56, "Input"], Cell[8593, 415, 73, 1, 56, "Input"] }, Closed]] }, Closed]], Cell[CellGroupData[{ Cell[8715, 422, 34, 0, 66, "Subsection"], Cell[8752, 424, 52, 1, 56, "Input"], Cell[8807, 427, 69, 1, 56, "Input"], Cell[8879, 430, 107, 2, 79, "Input"] }, Closed]], Cell[CellGroupData[{ Cell[9023, 437, 50, 0, 66, "Subsection"], Cell[9076, 439, 143, 2, 85, "Input"] }, Closed]] }, Closed]], Cell[CellGroupData[{ Cell[9268, 447, 62, 0, 50, "Section"], Cell[9333, 449, 47, 1, 56, "Input"], Cell[9383, 452, 78, 1, 56, "Input"], Cell[9464, 455, 38, 1, 56, "Input"], Cell[9505, 458, 45, 1, 56, "Input"], Cell[9553, 461, 52, 1, 56, "Input"], Cell[9608, 464, 52, 1, 56, "Input"], Cell[9663, 467, 45, 1, 56, "Input"], Cell[CellGroupData[{ Cell[9733, 472, 87, 1, 54, "Subsubsection"], Cell[9823, 475, 71, 1, 56, "Input"], Cell[9897, 478, 64, 1, 56, "Input"] }, Closed]] }, Closed]], Cell[CellGroupData[{ Cell[10010, 485, 38, 0, 50, "Section"], Cell[10051, 487, 44, 0, 41, "Text"], Cell[10098, 489, 50, 1, 56, "Input"], Cell[10151, 492, 165, 3, 148, "Input"], Cell[10319, 497, 52, 1, 56, "Input"], Cell[10374, 500, 159, 3, 79, "Input"], Cell[10536, 505, 56, 1, 56, "Input"], Cell[CellGroupData[{ Cell[10617, 510, 52, 0, 66, "Subsection"], Cell[10672, 512, 209, 4, 125, "Input"], Cell[10884, 518, 58, 1, 56, "Input"], Cell[10945, 521, 61, 1, 56, "Input"], Cell[11009, 524, 56, 1, 56, "Input"] }, Closed]], Cell[CellGroupData[{ Cell[11102, 530, 47, 0, 66, "Subsection"], Cell[11152, 532, 157, 3, 102, "Input"], Cell[11312, 537, 49, 0, 41, "Text"] }, Closed]], Cell[CellGroupData[{ Cell[11398, 542, 46, 0, 66, "Subsection"], Cell[11447, 544, 159, 3, 79, "Input"], Cell[11609, 549, 354, 6, 148, "Input"], Cell[11966, 557, 44, 1, 56, "Input"], Cell[12013, 560, 69, 1, 56, "Input"], Cell[12085, 563, 104, 2, 56, "Input"] }, Closed]] }, Closed]], Cell[CellGroupData[{ Cell[12238, 571, 37, 0, 50, "Section"], Cell[CellGroupData[{ Cell[12300, 575, 99, 5, 68, "Subsection"], Cell[12402, 582, 141, 3, 79, "Input"], Cell[12546, 587, 82, 2, 73, "Input"] }, Closed]], Cell[CellGroupData[{ Cell[12665, 594, 61, 0, 66, "Subsection"], Cell[12729, 596, 112, 2, 79, "Input"], Cell[12844, 600, 76, 2, 79, "Input"], Cell[12923, 604, 40, 1, 56, "Input"] }, Closed]], Cell[CellGroupData[{ Cell[13000, 610, 62, 0, 66, "Subsection"], Cell[13065, 612, 146, 3, 79, "Input"], Cell[13214, 617, 41, 1, 56, "Input"], Cell[13258, 620, 46, 1, 56, "Input"], Cell[13307, 623, 41, 1, 56, "Input"], Cell[13351, 626, 46, 1, 56, "Input"], Cell[13400, 629, 41, 1, 56, "Input"] }, Closed]] }, Closed]], Cell[CellGroupData[{ Cell[13490, 636, 32, 0, 50, "Section"], Cell[13525, 638, 58, 1, 56, "Input"] }, Closed]], Cell[CellGroupData[{ Cell[13620, 644, 43, 0, 50, "Section"], Cell[13666, 646, 72, 1, 56, "Input"], Cell[CellGroupData[{ Cell[13763, 651, 38, 0, 66, "Subsection"], Cell[13804, 653, 89, 1, 56, "Input"], Cell[13896, 656, 83, 1, 62, "Input"], Cell[13982, 659, 65, 1, 56, "Input"] }, Closed]], Cell[CellGroupData[{ Cell[14084, 665, 38, 0, 66, "Subsection"], Cell[14125, 667, 340, 7, 122, "Input"] }, Closed]] }, Closed]], Cell[CellGroupData[{ Cell[14514, 680, 33, 0, 50, "Section"], Cell[14550, 682, 67, 0, 41, "Text"], Cell[CellGroupData[{ Cell[14642, 686, 52, 0, 66, "Subsection"], Cell[14697, 688, 243, 4, 125, "Input"], Cell[14943, 694, 44, 1, 56, "Input"] }, Closed]], Cell[CellGroupData[{ Cell[15024, 700, 33, 0, 66, "Subsection"], Cell[15060, 702, 290, 6, 125, "Input"], Cell[15353, 710, 213, 4, 102, "Input"], Cell[15569, 716, 525, 9, 194, "Input"] }, Closed]], Cell[CellGroupData[{ Cell[16131, 730, 28, 0, 66, "Subsection"], Cell[16162, 732, 68, 1, 72, "Input"], Cell[16233, 735, 68, 1, 56, "Input"] }, Closed]], Cell[CellGroupData[{ Cell[16338, 741, 33, 0, 66, "Subsection"], Cell[16374, 743, 169, 3, 79, "Input"], Cell[16546, 748, 74, 1, 56, "Input"] }, Closed]] }, Closed]], Cell[16647, 753, 547, 15, 53, "Subsubsection"], Cell[17197, 770, 313, 10, 37, "SmallText"] } ] *) (*********************************************************************** End of Mathematica Notebook file. ***********************************************************************)