(************** Content-type: application/mathematica ************** CreatedBy='Mathematica 5.2' Mathematica-Compatible Notebook This notebook can be used with any Mathematica-compatible application, such as Mathematica, MathReader or Publicon. 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[ 9543, 379]*) (*NotebookOutlinePosition[ 39623, 1345]*) (* CellTagsIndexPosition[ 39579, 1341]*) (*WindowFrame->Normal*) Notebook[{ Cell[CellGroupData[{ Cell["Notebook 9", "Title"], Cell[CellGroupData[{ Cell["N9.0", "Section"], Cell["\<\ This notebook is short, but it does include implementations of the various \ differential operators discussed in Chapter 9. \ \>", "Text"], Cell["\<\ Loading the following package enables us to draw arrows on 2-dimensional \ plots:\ \>", "Text"], Cell["<"Verdana"], " that we have used previously. It places text in the specified font at a \ point with position vector ", StyleBox["v", FontFamily->"Verdana"], ". " }], "Text"], Cell["txb[A_, v_]:= Text[FontForm[A,{\"Helvetica-Bold\",18}], v]", \ "Definition"], Cell[TextData[{ "We shall continue to display a final plot using the command ", StyleBox["S", FontFamily->"Verdana"], ", whose definition from ", StyleBox["N6.0", FontFamily->"Verdana"], " we repeat here with a protection against the same symbol being \ accidentally used for another purpose. Without the use of", StyleBox[" S", FontFamily->"Verdana"], " or the ", StyleBox["DisplayFunction", FontFamily->"Verdana"], " command each time, the programs for Figures 9.1 and 9.2 would display \ each arrow separately, before combining them into a single plot. This is \ acceptable for simple diagrams, but it can be confusing for more complicated \ ones." }], "Text"], Cell["\<\ $DisplayFunction= Identity Unprotect[S] S[X__]:= Show[X, DisplayFunction->(Display[$Display,#1] &)] Protect[S]\ \>", "Definition"] }, Closed]], Cell[CellGroupData[{ Cell["N9.1", "Section"], Cell[TextData[{ "The following objects are used in the chapter's first diagram. The \ vectors", StyleBox[" o,p,v ", FontFamily->"Verdana"], "are used to specify the arrows, whilst", StyleBox[" r", FontFamily->"Verdana"], " is used to help offset the text. Data for the left-hand plot is given \ by", StyleBox[" z[1],", FontFamily->"Verdana"], " and for the right-hand plot by ", StyleBox["z[2]. ", FontFamily->"Verdana"], " Both plots are then compiled into the function", StyleBox[" zz.", FontFamily->"Verdana"] }], "Text"], Cell["\<\ o:= {0,0} v:= {3,2} p:= {1,-1} r:= {-.4,.8}\ \>", "Input"], Cell["\<\ z[1]:= {Hue[0], Thickness[.01], Arrow[o,v,HeadWidth->.8], PointSize[.04], Point[o], txb[\"v\",v/2+r]} z[2]:= {Hue[.7], Thickness[.01], Arrow[p,v+p,HeadWidth->.8], PointSize[.04], Point[p], txb[\"v\",v/2+p+r], txb[\"p\",p-2r/3]}\ \>", "Input"], Cell[TextData[{ "The axes are added using the ", StyleBox["Show ", FontFamily->"Verdana"], "command:" }], "Text"], Cell["\<\ zz[i_]:= Show[Graphics[z[i]], Axes->True, Ticks->None, AspectRatio->Automatic, PlotRange->{{-4,5},{-4,5}}] S @ GraphicsArray[Array[zz,2], GraphicsSpacing->.1, ImageSize->450]\ \>", "NumberedFigure"], Cell[TextData[{ "Similar commands are used in ", StyleBox["N9.1.1 ", FontFamily->"Verdana"], "in order to produce Figure 9.2." }], "Text"], Cell[CellGroupData[{ Cell["N9.1.1", "Subsection"], Cell[TextData[{ "Observe the spacing commands inside the argument o", StyleBox["f txb", FontFamily->"Verdana"], " in ", StyleBox["z[3].", FontFamily->"Verdana"] }], "Text"], Cell["\<\ o:= {0, 0} v:= {-3, 2} p:= {5, 1} k:= Thickness[.007] da:= Dashing[{.02, .02}] arr[v_,w_]:= Arrow[v, v+.98w, HeadWidth->.5, HeadCenter->.8, HeadLength->.05] z[1]:= {Hue[.9], da, k, arr[o, .98p], txb[\"p\", p/2 + {1.5, -.3}/2]} z[2]:= {Hue[.9], da, k, arr[o, p + v], txb[\"p+v\", (p + v)/2 + {-.2,.5}]} z[3]:= {Hue[.65], k, arr[p, v], PointSize[0.03], Point[p], txb[\"\\!\\(v\\_p\\)\", p + v/2 + {1, 1}/3]} zz[i_]:= Show[Graphics[z[i]], Axes->True, Ticks->None, AspectRatio->Automatic, PlotRange->{{-1,6},{-1,4}}, ImageSize->400] S @ Array[zz, 3] \ \>", "NumberedFigure"] }, Closed]] }, Closed]], Cell[CellGroupData[{ Cell["N9.4", "Section"], Cell[TextData[{ "The following program defines the gradient of a function ", StyleBox["f ", FontFamily->"Verdana"], "relative to an ordered set", StyleBox[" coor ", FontFamily->"Verdana"], "of coordinates:" }], "Text"], Cell["grad[f_,coor_]:= Table[D[f,coor[[i]]], {i,Length[coor]}]", "Definition"], Cell["\<\ The theoretical definition can be inspected by inserting a generic function \ of three variables:\ \>", "Text"], Cell["\<\ Clear[f] grad[f[x,y,z], {x,y,z}]\ \>", "Input"], Cell[TextData[{ "More systematic notation is useful for four or more variables. The \ string", StyleBox[" @@", FontFamily->"Verdana"], " is shorthand for the command ", StyleBox["Apply,", FontFamily->"Verdana"], " and has the practical effect of replacing curly brackets by square ones; \ it was already used in ", StyleBox["N8.6.", FontFamily->"Verdana"] }], "Text"], Cell["\<\ n:= 4 ay= Array[x,n] grad[f@@ay, ay]\ \>", "Input"], Cell[TextData[{ "The ", StyleBox["Array", FontFamily->"Verdana"], " command next is just a quicker way of using ", StyleBox["Table:", FontFamily->"Verdana"] }], "Text"], Cell["\<\ ay= Table[x[i], {i, n}] grad[f@@ay, ay]\ \>", "Input"], Cell["Here are some explicit examples:", "Text"], Cell["grad[(x y z)^3, {x,y,z}]", "Input"], Cell["grad[ArcTan[y/x], {x,y,z}]//Simplify", "Input"], Cell["\<\ r:= Sqrt[x^2 + y^2 + z^2] grad[r, {x,y,z}] //. r->d\ \>", "Input"], Cell["\<\ s:= Sum[x[i], {i,n}] p:= Product[x[i], {i,n}] grad[s/p, ay] Simplify[p %]\ \>", "Input"] }, Closed]], Cell[CellGroupData[{ Cell["N9.5", "Section"], Cell["\<\ We begin with the definitions of the divergence of a differentiable vector \ field and the Laplacian of a differentiable function.\ \>", "Text"], Cell["\<\ divergence[vf_,coor_]:= Sum[D[vf[[i]],coor[[i]]], {i,Length[coor]}]\ \>", "Definition"], Cell["\<\ laplacian[f_,coor_]:= Sum[D[f,{coor[[i]],2}], {i,Length[coor]}]\ \>", "Definition"], Cell["An example is provided by", "Text"], Cell["divergence[{x^a, y^b, z^c}, {x,y,z}]", "Input"], Cell[TextData[{ "The next computation will show that an appropriate power of ", StyleBox["r", FontFamily->"Verdana"], " satisfies Laplace's equation in dimension ", StyleBox["n.", FontFamily->"Verdana"] }], "Text"], Cell["\<\ Do[ay= Array[x, n]; r = Sqrt[Sum[x[i]^2, {i,n}]]; Print[Simplify[laplacian[r^(-n+2), ay]]], {n, 9}]\ \>", "Animation"], Cell["\<\ This confirms that the Laplacian has been defined correctly so as to equal \ the divergence of the gradient:\ \>", "Text"], Cell["\<\ f:= (x y z)^3 divergence[grad[f, {x,y,z}], {x,y,z}] laplacian[f, {x,y,z}]\ \>", "Input"] }, Closed]], Cell[CellGroupData[{ Cell["N9.7", "Section"], Cell["Exercise 1 is accomplished by", "Text"], Cell["\<\ V[p_, f_]:= Sum[p[[i]] D[f,x[i]], {i, 3}]/.Table[x[i]->p[[i]], {i,3}] V[{2,-1,4}, x[1] x[2]^2 x[3]^4]\ \>", "Input"], Cell[TextData[{ "In Exercise 3, we see that the zero set of ", StyleBox["F ", FontFamily->"Verdana"], "coincides with the coordinate axes, and therefore the first set ", StyleBox["A ", FontFamily->"Curlz MT"], "equals", StyleBox[" ", FontFamily->"Monotype Corsiva"], StyleBox["{(1,0,0), (0,1,0), (0,0,1)}.", FontFamily->"Verdana"], " The condition on the differential of ", StyleBox["F", FontFamily->"Verdana"], " is equivalent to the vanishing of the determinant" }], "Text"], Cell["Det[{{y,0,z}, {x,z,0}, {0,y,x}}]", "Input"], Cell[TextData[{ "Since the result is twice the product of ", StyleBox["x,y,z,", FontFamily->"Verdana"], " it follows that ", StyleBox["B", FontFamily->"Curlz MT"], " consists of circles of radius 1 belonging to each of the three coordinate \ planes." }], "Text"] }, Closed]] }, Open ]] }, FrontEndVersion->"5.2 for Microsoft Windows", ScreenRectangle->{{0, 1280}, {0, 717}}, AutoGeneratedPackage->None, ScreenStyleEnvironment->"Working", PrintingStyleEnvironment->"Working", ShowPageBreaks->False, WindowToolbars->"RulerBar", WindowSize->{1272, 683}, WindowMargins->{{0, Automatic}, {Automatic, 0}}, PrintingCopies->1, PrintingStartingPageNumber->283, PrintingPageRange->{Automatic, Automatic}, PageHeaders->{{Cell[ TextData[ { CounterBox[ "Page"]}], FontSlant -> Italic], None, Cell[ "NOTEBOOK 9", FontSlant -> Italic]}, { Cell[ "NOTEBOOK 9", FontSlant -> Italic], None, Inherited}}, PrintingOptions->{"PrintingMargins"->{{155, 20}, {150, 300}}, "PaperSize"->{Inherited, 1200}, "PageSize"->{720, 1200}, "PageHeaderMargins"->{275, 275}, "FirstPageHeader"->False, "RestPagesFooter"->False, "FacingPages"->True, "FirstPageFace"->Right}, CellLabelAutoDelete->True, FontTracking->"Wide", FontProperties->{"FontMonospaced"->True}, StyleDefinitions -> Notebook[{ Cell[CellGroupData[{ Cell["Style Definitions", "Subtitle", PageWidth->PaperWidth], Cell["\<\ Modify the definitions below to change the default appearance of all cells in \ a given style. Make modifications to any definition using commands in the Format menu.\ \>", "Text", PageWidth->PaperWidth], Cell[CellGroupData[{ Cell["Style Environment Names", "Section", PageWidth->PaperWidth], Cell[StyleData[All, "Working"], PageWidth->PaperWidth, CellBracketOptions->{"Color"->RGBColor[0.771908, 0.399634, 0.262867]}, ScriptMinSize->9], Cell[StyleData[All, "Printout"], PageWidth->PaperWidth, PrivateFontOptions->{"FontType"->"Outline"}] }, Open ]], Cell[CellGroupData[{ Cell["Notebook Options", "Section", PageWidth->PaperWidth], Cell["\<\ The options defined for the style below will be used at the Notebook level.\ \>", "Text", PageWidth->PaperWidth], Cell[StyleData["Notebook"], PageWidth->PaperWidth, CellFrameLabelMargins->6, StyleMenuListing->None] }, Closed]], Cell[CellGroupData[{ Cell["Styles for Headings", "Section", PageWidth->PaperWidth], Cell[CellGroupData[{ Cell[StyleData["Title"], PageWidth->PaperWidth, CellMargins->{{36, 20}, {0, 10}}, CellGroupingRules->{"TitleGrouping", 0}, PageBreakBelow->False, CellFrameMargins->{{100, 4}, {8, 10}}, InputAutoReplacements->{"TeX"->StyleBox[ RowBox[ {"T", AdjustmentBox[ "E", BoxMargins -> {{-0.075, -0.085}, {0, 0}}, BoxBaselineShift -> 0.5], "X"}]], "LaTeX"->StyleBox[ RowBox[ {"L", StyleBox[ AdjustmentBox[ "A", BoxMargins -> {{-0.36, -0.1}, {0, -0}}, BoxBaselineShift -> -0.2], FontSize -> Smaller], "T", AdjustmentBox[ "E", BoxMargins -> {{-0.075, -0.085}, {0, 0}}, BoxBaselineShift -> 0.5], "X"}]], "mma"->"Mathematica", "Mma"->"Mathematica", "MMA"->"Mathematica"}, TextAlignment->Left, LineSpacing->{1, 13}, CounterIncrements->"Title", CounterAssignments->{{"Section", 0}, {"Equation", 0}, {"Figure", 0}}, FontFamily->"Verdana", FontSize->36, FontColor->GrayLevel[0]], Cell[StyleData["Title", "Printout"], PageWidth->PaperWidth, FontSize->40] }, Closed]], Cell[CellGroupData[{ Cell[StyleData["Subtitle"], PageWidth->PaperWidth, CellDingbat->"\[FilledSquare]", CellMargins->{{54, 25}, {2, 30}}, CellGroupingRules->{"TitleGrouping", 10}, PageBreakBelow->False, InputAutoReplacements->{"TeX"->StyleBox[ RowBox[ {"T", AdjustmentBox[ "E", BoxMargins -> {{-0.075, -0.085}, {0, 0}}, BoxBaselineShift -> 0.5], "X"}]], "LaTeX"->StyleBox[ RowBox[ {"L", StyleBox[ AdjustmentBox[ "A", BoxMargins -> {{-0.36, -0.1}, {0, -0}}, BoxBaselineShift -> -0.2], FontSize -> Smaller], "T", AdjustmentBox[ "E", BoxMargins -> {{-0.075, -0.085}, {0, 0}}, BoxBaselineShift -> 0.5], "X"}]], "mma"->"Mathematica", "Mma"->"Mathematica", "MMA"->"Mathematica"}, TextAlignment->Left, CounterIncrements->"Subtitle", CounterAssignments->{{"Section", 0}, {"Equation", 0}, {"Figure", 0}}, FontSize->18, FontWeight->"Bold", FontSlant->"Plain", FontColor->GrayLevel[0]], Cell[StyleData["Subtitle", "Printout"], PageWidth->PaperWidth, FontSize->18, FontColor->GrayLevel[0]] }, Closed]], Cell[CellGroupData[{ Cell[StyleData["Subsubtitle"], PageWidth->PaperWidth, CellMargins->{{54, 25}, {30, 10}}, CellGroupingRules->{"TitleGrouping", 20}, PageBreakBelow->False, InputAutoReplacements->{"TeX"->StyleBox[ RowBox[ {"T", AdjustmentBox[ "E", BoxMargins -> {{-0.075, -0.085}, {0, 0}}, BoxBaselineShift -> 0.5], "X"}]], "LaTeX"->StyleBox[ RowBox[ {"L", StyleBox[ AdjustmentBox[ "A", BoxMargins -> {{-0.36, -0.1}, {0, -0}}, BoxBaselineShift -> -0.2], FontSize -> Smaller], "T", AdjustmentBox[ "E", BoxMargins -> {{-0.075, -0.085}, {0, 0}}, BoxBaselineShift -> 0.5], "X"}]], "mma"->"Mathematica", "Mma"->"Mathematica", "MMA"->"Mathematica"}, TextAlignment->Center, CounterIncrements->"Subsubtitle", CounterAssignments->{{"Section", 0}, {"Equation", 0}, {"Figure", 0}}, FontSize->14, FontSlant->"Italic"], Cell[StyleData["Subsubtitle", "Printout"], PageWidth->PaperWidth, FontSize->12] }, Closed]], Cell[CellGroupData[{ Cell[StyleData["Section"], PageWidth->PaperWidth, CellDingbat->"\[FilledSquare]", CellMargins->{{54, 25}, {2, 30}}, CellGroupingRules->{"SectionGrouping", 30}, PageBreakBelow->False, InputAutoReplacements->{"TeX"->StyleBox[ RowBox[ {"T", AdjustmentBox[ "E", BoxMargins -> {{-0.075, -0.085}, {0, 0}}, BoxBaselineShift -> 0.5], "X"}]], "LaTeX"->StyleBox[ RowBox[ {"L", StyleBox[ AdjustmentBox[ "A", BoxMargins -> {{-0.36, -0.1}, {0, -0}}, BoxBaselineShift -> -0.2], FontSize -> Smaller], "T", AdjustmentBox[ "E", BoxMargins -> {{-0.075, -0.085}, {0, 0}}, BoxBaselineShift -> 0.5], "X"}]], "mma"->"Mathematica", "Mma"->"Mathematica", "MMA"->"Mathematica"}, TextAlignment->Left, LineSpacing->{1, 9}, CounterIncrements->"Section", CounterAssignments->{{"Subsection", 0}, {"Subsubsection", 0}}, FontFamily->"Verdana", FontSize->24, FontWeight->"Plain", FontColor->GrayLevel[0]], Cell[StyleData["Section", "Printout"], PageWidth->PaperWidth, FontSize->12, FontColor->GrayLevel[0]] }, Open ]], Cell[CellGroupData[{ Cell[StyleData["Subsection"], PageWidth->PaperWidth, CellDingbat->"\[FilledSmallSquare]", CellMargins->{{54, 25}, {2, 12}}, CellGroupingRules->{"SectionGrouping", 40}, PageBreakBelow->False, CellFrameMargins->{{2, 12}, {0, 12}}, InputAutoReplacements->{"TeX"->StyleBox[ RowBox[ {"T", AdjustmentBox[ "E", BoxMargins -> {{-0.075, -0.085}, {0, 0}}, BoxBaselineShift -> 0.5], "X"}]], "LaTeX"->StyleBox[ RowBox[ {"L", StyleBox[ AdjustmentBox[ "A", BoxMargins -> {{-0.36, -0.1}, {0, -0}}, BoxBaselineShift -> -0.2], FontSize -> Smaller], "T", AdjustmentBox[ "E", BoxMargins -> {{-0.075, -0.085}, {0, 0}}, BoxBaselineShift -> 0.5], "X"}]], "mma"->"Mathematica", "Mma"->"Mathematica", "MMA"->"Mathematica"}, CounterIncrements->"Subsection", CounterAssignments->{{"Subsubsection", 0}}, FontFamily->"Verdana", FontSize->16, FontWeight->"Plain", FontSlant->"Plain", FontColor->GrayLevel[0.4]], Cell[StyleData["Subsection", "Printout"], PageWidth->PaperWidth, FontSize->10] }, Open ]], Cell[CellGroupData[{ Cell[StyleData["Subsubsection"], PageWidth->PaperWidth, CellMargins->{{54, 25}, {2, 12}}, CellGroupingRules->{"SectionGrouping", 50}, PageBreakBelow->False, InputAutoReplacements->{"TeX"->StyleBox[ RowBox[ {"T", AdjustmentBox[ "E", BoxMargins -> {{-0.075, -0.085}, {0, 0}}, BoxBaselineShift -> 0.5], "X"}]], "LaTeX"->StyleBox[ RowBox[ {"L", StyleBox[ AdjustmentBox[ "A", BoxMargins -> {{-0.36, -0.1}, {0, -0}}, BoxBaselineShift -> -0.2], FontSize -> Smaller], "T", AdjustmentBox[ "E", BoxMargins -> {{-0.075, -0.085}, {0, 0}}, BoxBaselineShift -> 0.5], "X"}]], "mma"->"Mathematica", "Mma"->"Mathematica", "MMA"->"Mathematica"}, CounterIncrements->"Subsubsection", FontSlant->"Italic", FontColor->RGBColor[0.771908, 0.399634, 0.262867]], Cell[StyleData["Subsubsection", "Printout"], PageWidth->PaperWidth, FontSize->9, FontColor->GrayLevel[0]] }, Closed]] }, Open ]], Cell[CellGroupData[{ Cell["Styles for Body Text", "Section", PageWidth->PaperWidth], Cell[CellGroupData[{ Cell[StyleData["Text"], PageWidth->PaperWidth, CellMargins->{{54, 25}, {6, 6}}, CellFrameMargins->{{4, 10}, {6, 0}}, CellFrameLabelMargins->4, InputAutoReplacements->{"TeX"->StyleBox[ RowBox[ {"T", AdjustmentBox[ "E", BoxMargins -> {{-0.075, -0.085}, {0, 0}}, BoxBaselineShift -> 0.5], "X"}]], "LaTeX"->StyleBox[ RowBox[ {"L", StyleBox[ AdjustmentBox[ "A", BoxMargins -> {{-0.36, -0.1}, {0, -0}}, BoxBaselineShift -> -0.2], FontSize -> Smaller], "T", AdjustmentBox[ "E", BoxMargins -> {{-0.075, -0.085}, {0, 0}}, BoxBaselineShift -> 0.5], "X"}]], "mma"->"Mathematica", "Mma"->"Mathematica", "MMA"->"Mathematica"}, TextJustification->1, Hyphenation->True, LineSpacing->{1.25, 0}, CounterIncrements->"Text", FontFamily->"Georgia", FontSize->12, FontColor->RGBColor[0, 0.2, 0]], Cell[StyleData["Text", "Printout"], PageWidth->PaperWidth, LineSpacing->{1.5, 0}, FontSize->10] }, Closed]], Cell[CellGroupData[{ Cell[StyleData["SmallText"], PageWidth->PaperWidth, CellFrame->{{0, 0}, {0, 0.25}}, CellMargins->{{72, 44}, {6, 6}}, CellFrameMargins->2, InputAutoReplacements->{"TeX"->StyleBox[ RowBox[ {"T", AdjustmentBox[ "E", BoxMargins -> {{-0.075, -0.085}, {0, 0}}, BoxBaselineShift -> 0.5], "X"}]], "LaTeX"->StyleBox[ RowBox[ {"L", StyleBox[ AdjustmentBox[ "A", BoxMargins -> {{-0.36, -0.1}, {0, -0}}, BoxBaselineShift -> -0.2], FontSize -> Smaller], "T", AdjustmentBox[ "E", BoxMargins -> {{-0.075, -0.085}, {0, 0}}, BoxBaselineShift -> 0.5], "X"}]], "mma"->"Mathematica", "Mma"->"Mathematica", "MMA"->"Mathematica"}, TextJustification->1, Hyphenation->True, LineSpacing->{1, 2}, CounterIncrements->"SmallText", FontSize->10], Cell[StyleData["SmallText", "Printout"], PageWidth->PaperWidth, LineSpacing->{1, 3}, FontSize->9] }, Closed]] }, Open ]], Cell[CellGroupData[{ Cell["Styles for Input/Output", "Section", PageWidth->PaperWidth], Cell["\<\ The cells in this section define styles used for input and output to the \ kernel. Be careful when modifying, renaming, or removing these styles, \ because the front end associates special meanings with these style names.\ \>", "Text", PageWidth->PaperWidth], Cell[CellGroupData[{ Cell[StyleData["Input"], PageWidth->PaperWidth, CellFrame->True, CellMargins->{{72, 25}, {8, 12}}, Evaluatable->True, CellGroupingRules->"InputGrouping", CellHorizontalScrolling->True, PageBreakWithin->False, GroupPageBreakWithin->False, CellLabelMargins->{{33, Inherited}, {Inherited, Inherited}}, TextAlignment->Left, HyphenationOptions->{"HyphenationCharacter"->"\[Continuation]"}, AutoItalicWords->{}, LanguageCategory->"Formula", ShowStringCharacters->True, NumberMarks->True, LinebreakAdjustments->{0.85, 2, 10, 0, 1}, CounterIncrements->"Input", FontFamily->"Verdana", FontSize->12, FontWeight->"Plain", Background->RGBColor[1, 1, 0.700008], FontVariations->{"CompatibilityType"->0}], Cell[StyleData["Input", "Printout"], PageWidth->PaperWidth, LinebreakAdjustments->{0.85, 2, 10, 1, 1}, FontSize->9.5] }, Closed]], Cell[CellGroupData[{ Cell[StyleData["Output"], PageWidth->PaperWidth, CellMargins->{{72, 25}, {12, 4}}, CellEditDuplicate->True, CellGroupingRules->"OutputGrouping", CellHorizontalScrolling->True, PageBreakWithin->False, GroupPageBreakWithin->False, GeneratedCell->True, CellAutoOverwrite->True, CellLabelMargins->{{33, Inherited}, {Inherited, Inherited}}, DefaultFormatType->DefaultOutputFormatType, TextAlignment->Left, HyphenationOptions->{"HyphenationCharacter"->"\[Continuation]"}, AutoItalicWords->{}, LanguageCategory->"Formula", FormatType->InputForm, CounterIncrements->"Output", FontFamily->"Courier", FontSize->12, FontColor->RGBColor[0, 0, 1]], Cell[StyleData["Output", "Printout"], PageWidth->PaperWidth, FontSize->9.5] }, Closed]], Cell[CellGroupData[{ Cell[StyleData["Message"], PageWidth->PaperWidth, CellDingbat->"\[LongDash]", CellMargins->{{72, 25}, {12, 4}}, CellGroupingRules->"OutputGrouping", PageBreakWithin->False, GroupPageBreakWithin->False, GeneratedCell->True, CellAutoOverwrite->True, ShowCellLabel->False, CellLabelMargins->{{33, Inherited}, {Inherited, Inherited}}, DefaultFormatType->DefaultOutputFormatType, HyphenationOptions->{"HyphenationCharacter"->"\[Continuation]"}, AutoItalicWords->{}, FormatType->InputForm, CounterIncrements->"Message", StyleMenuListing->None, FontFamily->"Helvetica", FontSize->12, FontWeight->"Plain", FontSlant->"Plain", FontTracking->"Plain", FontColor->RGBColor[1, 0, 0], FontVariations->{"Underline"->False, "Outline"->False, "Shadow"->False, "StrikeThrough"->False, "Masked"->False, "CompatibilityType"->0, "RotationAngle"->0}], Cell[StyleData["Message", "Printout"], PageWidth->PaperWidth, FontSize->8] }, Closed]], Cell[CellGroupData[{ Cell[StyleData["Print"], PageWidth->PaperWidth, CellMargins->{{72, 25}, {12, 4}}, CellGroupingRules->"OutputGrouping", CellHorizontalScrolling->True, PageBreakWithin->False, GroupPageBreakWithin->False, GeneratedCell->True, CellAutoOverwrite->True, ShowCellLabel->False, CellLabelMargins->{{33, Inherited}, {Inherited, Inherited}}, DefaultFormatType->DefaultOutputFormatType, TextAlignment->Left, HyphenationOptions->{"HyphenationCharacter"->"\[Continuation]"}, AutoItalicWords->{}, FormatType->InputForm, CounterIncrements->"Print", StyleMenuListing->None], Cell[StyleData["Print", "Printout"], PageWidth->PaperWidth, FontSize->9.5] }, Closed]], Cell[CellGroupData[{ Cell[StyleData["Graphics"], PageWidth->PaperWidth, CellMargins->{{72, 25}, {12, 4}}, CellGroupingRules->"GraphicsGrouping", CellHorizontalScrolling->True, PageBreakWithin->False, GeneratedCell->True, CellAutoOverwrite->True, ShowCellLabel->False, DefaultFormatType->DefaultOutputFormatType, FormatType->InputForm, CounterIncrements->"Graphics", ImageMargins->{{35, Inherited}, {Inherited, 0}}, StyleMenuListing->None, FontSize->10], Cell[StyleData["Graphics", "Printout"], PageWidth->PaperWidth, FontSize->8] }, Closed]], Cell[CellGroupData[{ Cell[StyleData["CellLabel"], PageWidth->PaperWidth, CellLabelAutoDelete->False, StyleMenuListing->None, FontSize->10, FontSlant->"Italic", FontColor->RGBColor[0.551492, 0.231144, 0.313466]], Cell[StyleData["CellLabel", "Printout"], PageWidth->PaperWidth, FontSize->8, FontColor->GrayLevel[0]] }, Closed]] }, Open ]], Cell[CellGroupData[{ Cell["Hyperlink Styles", "Section", PageWidth->PaperWidth], Cell["\<\ The cells below define styles useful for making hypertext ButtonBoxes. The \ \"Hyperlink\" style is for links within the same Notebook, or between \ Notebooks.\ \>", "Text", PageWidth->PaperWidth], Cell[CellGroupData[{ Cell[StyleData["Hyperlink"], PageWidth->PaperWidth, StyleMenuListing->None, ButtonStyleMenuListing->Automatic, FontColor->RGBColor[0, 0, 1], FontVariations->{"Underline"->True}, ButtonBoxOptions->{ButtonFunction:>(FrontEndExecute[ { FrontEnd`NotebookLocate[ #2]}]&), Active->True, ButtonNote->ButtonData}], Cell[StyleData["Hyperlink", "Printout"], PageWidth->PaperWidth, FontSize->10, FontColor->GrayLevel[0], FontVariations->{"Underline"->False}] }, Closed]], Cell["\<\ The following styles are for linking automatically to the on-line help \ system.\ \>", "Text", PageWidth->PaperWidth], Cell[CellGroupData[{ Cell[StyleData["MainBookLink"], PageWidth->PaperWidth, StyleMenuListing->None, ButtonStyleMenuListing->Automatic, FontColor->RGBColor[0, 0, 1], FontVariations->{"Underline"->True}, ButtonBoxOptions->{ButtonFunction:>(FrontEndExecute[ { FrontEnd`HelpBrowserLookup[ "MainBook", #]}]&), Active->True, ButtonFrame->"None"}], Cell[StyleData["MainBookLink", "Printout"], PageWidth->PaperWidth, FontSize->10, FontColor->GrayLevel[0], FontVariations->{"Underline"->False}] }, Closed]], Cell[CellGroupData[{ Cell[StyleData["AddOnsLink"], PageWidth->PaperWidth, StyleMenuListing->None, ButtonStyleMenuListing->Automatic, FontFamily->"Courier", FontColor->RGBColor[0, 0, 1], FontVariations->{"Underline"->True}, ButtonBoxOptions->{ButtonFunction:>(FrontEndExecute[ { FrontEnd`HelpBrowserLookup[ "AddOns", #]}]&), Active->True, ButtonFrame->"None"}], Cell[StyleData["AddOnsLink", "Printout"], PageWidth->PaperWidth, FontSize->10, FontColor->GrayLevel[0], FontVariations->{"Underline"->False}] }, Closed]], Cell[CellGroupData[{ Cell[StyleData["RefGuideLink"], PageWidth->PaperWidth, StyleMenuListing->None, ButtonStyleMenuListing->Automatic, FontFamily->"Courier", FontColor->RGBColor[0, 0, 1], FontVariations->{"Underline"->True}, ButtonBoxOptions->{ButtonFunction:>(FrontEndExecute[ { FrontEnd`HelpBrowserLookup[ "RefGuide", #]}]&), Active->True, ButtonFrame->"None"}], Cell[StyleData["RefGuideLink", "Printout"], PageWidth->PaperWidth, FontSize->10, FontColor->GrayLevel[0], FontVariations->{"Underline"->False}] }, Closed]], Cell[CellGroupData[{ Cell[StyleData["GettingStartedLink"], PageWidth->PaperWidth, StyleMenuListing->None, ButtonStyleMenuListing->Automatic, FontColor->RGBColor[0, 0, 1], FontVariations->{"Underline"->True}, ButtonBoxOptions->{ButtonFunction:>(FrontEndExecute[ { FrontEnd`HelpBrowserLookup[ "GettingStarted", #]}]&), Active->True, ButtonFrame->"None"}], Cell[StyleData["GettingStartedLink", "Printout"], PageWidth->PaperWidth, FontSize->10, FontColor->GrayLevel[0], FontVariations->{"Underline"->False}] }, Closed]], Cell[CellGroupData[{ Cell[StyleData["OtherInformationLink"], PageWidth->PaperWidth, StyleMenuListing->None, ButtonStyleMenuListing->Automatic, FontColor->RGBColor[0, 0, 1], FontVariations->{"Underline"->True}, ButtonBoxOptions->{ButtonFunction:>(FrontEndExecute[ { FrontEnd`HelpBrowserLookup[ "OtherInformation", #]}]&), Active->True, ButtonFrame->"None"}], Cell[StyleData["OtherInformationLink", "Printout"], PageWidth->PaperWidth, FontSize->10, FontColor->GrayLevel[0], FontVariations->{"Underline"->False}] }, Closed]] }, Closed]], Cell[CellGroupData[{ Cell["Palette Styles", "Section", PageWidth->PaperWidth], Cell["\<\ The cells below define styles that define standard ButtonFunctions, for use \ in palette buttons.\ \>", "Text", PageWidth->PaperWidth], Cell[StyleData["Paste"], PageWidth->PaperWidth, StyleMenuListing->None, ButtonStyleMenuListing->Automatic, ButtonBoxOptions->{ButtonFunction:>(FrontEndExecute[ { FrontEnd`NotebookApply[ FrontEnd`InputNotebook[ ], #, After]}]&)}], Cell[StyleData["Evaluate"], PageWidth->PaperWidth, StyleMenuListing->None, ButtonStyleMenuListing->Automatic, ButtonBoxOptions->{ButtonFunction:>(FrontEndExecute[ { FrontEnd`NotebookApply[ FrontEnd`InputNotebook[ ], #, All], SelectionEvaluate[ FrontEnd`InputNotebook[ ], All]}]&)}], Cell[StyleData["EvaluateCell"], PageWidth->PaperWidth, StyleMenuListing->None, ButtonStyleMenuListing->Automatic, ButtonBoxOptions->{ButtonFunction:>(FrontEndExecute[ { FrontEnd`NotebookApply[ FrontEnd`InputNotebook[ ], #, All], FrontEnd`SelectionMove[ FrontEnd`InputNotebook[ ], All, Cell, 1], FrontEnd`SelectionEvaluateCreateCell[ FrontEnd`InputNotebook[ ], All]}]&)}], Cell[StyleData["CopyEvaluate"], PageWidth->PaperWidth, StyleMenuListing->None, ButtonStyleMenuListing->Automatic, ButtonBoxOptions->{ButtonFunction:>(FrontEndExecute[ { FrontEnd`SelectionCreateCell[ FrontEnd`InputNotebook[ ], All], FrontEnd`NotebookApply[ FrontEnd`InputNotebook[ ], #, All], FrontEnd`SelectionEvaluate[ FrontEnd`InputNotebook[ ], All]}]&)}], Cell[StyleData["CopyEvaluateCell"], PageWidth->PaperWidth, StyleMenuListing->None, ButtonStyleMenuListing->Automatic, ButtonBoxOptions->{ButtonFunction:>(FrontEndExecute[ { FrontEnd`SelectionCreateCell[ FrontEnd`InputNotebook[ ], All], FrontEnd`NotebookApply[ FrontEnd`InputNotebook[ ], #, All], FrontEnd`SelectionEvaluateCreateCell[ FrontEnd`InputNotebook[ ], All]}]&)}] }, Closed]], Cell[CellGroupData[{ Cell["Styles for Automatic Numbering", "Section", PageWidth->PaperWidth], Cell["\<\ The following styles are useful for numbered equations, figures, etc. They \ automatically give the cell a FrameLabel containing a reference to a \ particular counter, and also increment that counter.\ \>", "Text", PageWidth->PaperWidth], Cell[CellGroupData[{ Cell[StyleData["NumberedEquation"], PageWidth->PaperWidth, CellMargins->{{72, 10}, {0, 10}}, CellFrameLabels->{{None, Cell[ TextData[ {"(", CounterBox[ "NumberedEquation"], ")"}]]}, {None, None}}, DefaultFormatType->DefaultInputFormatType, HyphenationOptions->{"HyphenationCharacter"->"\[Continuation]"}, CounterIncrements->"NumberedEquation", FormatTypeAutoConvert->False], Cell[StyleData["NumberedEquation", "Printout"], PageWidth->PaperWidth, FontSize->10] }, Closed]], Cell[CellGroupData[{ Cell[StyleData["NumberedFigure"], PageWidth->PaperWidth, CellFrame->True, CellMargins->{{72, 25}, {8, 12}}, Evaluatable->True, CellGroupingRules->"InputGrouping", CellHorizontalScrolling->True, PageBreakWithin->False, GroupPageBreakWithin->False, CellLabelMargins->{{33, Inherited}, {Inherited, Inherited}}, CellFrameLabels->{{None, None}, {Cell[ TextData[ {"Figure 9.", CounterBox[ "NumberedFigure"]}], FontSlant -> Italic, FontFamily -> "Georgia", FontColor -> RGBColor[ .5, .1, .1]], None}}, DefaultFormatType->DefaultInputFormatType, TextAlignment->Left, HyphenationOptions->{"HyphenationCharacter"->"\[Continuation]"}, AutoItalicWords->{}, LanguageCategory->"Formula", ShowStringCharacters->True, NumberMarks->True, LinebreakAdjustments->{0.85, 2, 10, 0, 1}, CounterIncrements->"NumberedFigure", FormatTypeAutoConvert->False, FontFamily->"Verdana", FontSize->12, FontWeight->"Plain", Background->RGBColor[1, 0.8, 0.700008]], Cell[StyleData["NumberedFigure", "Printout"], PageWidth->PaperWidth, FontSize->10] }, Open ]], Cell[CellGroupData[{ Cell[StyleData["NumberedTable"], PageWidth->PaperWidth, CellMargins->{{72, 145}, {2, 10}}, CellFrameLabels->{{None, None}, {Cell[ TextData[ {"Table ", CounterBox[ "NumberedTable"]}]], None}}, TextAlignment->Center, CounterIncrements->"NumberedTable", FormatTypeAutoConvert->False], Cell[StyleData["NumberedTable", "Printout"], PageWidth->PaperWidth, FontSize->10] }, Closed]] }, Open ]], Cell[CellGroupData[{ Cell["Formulas and Programming", "Section", PageWidth->PaperWidth], Cell[StyleData["Definition"], PageWidth->PaperWidth, CellFrame->True, CellMargins->{{72, 25}, {8, 12}}, Evaluatable->True, CellGroupingRules->"InputGrouping", CellHorizontalScrolling->True, PageBreakWithin->False, GroupPageBreakWithin->False, InitializationCell->True, CellLabelMargins->{{33, Inherited}, {Inherited, Inherited}}, DefaultFormatType->DefaultInputFormatType, TextAlignment->Left, HyphenationOptions->{"HyphenationCharacter"->"\[Continuation]"}, AutoItalicWords->{}, LanguageCategory->"Formula", ShowStringCharacters->True, NumberMarks->True, LinebreakAdjustments->{0.85, 2, 10, 0, 1}, CounterIncrements->"Input", FormatTypeAutoConvert->False, FontFamily->"Verdana", FontSize->12, FontWeight->"Plain", Background->RGBColor[0.8, 1, 1]], Cell[StyleData["Miniprogram"], PageWidth->PaperWidth, CellFrame->True, CellDingbat->None, CellMargins->{{72, 25}, {8, 12}}, Evaluatable->True, CellGroupingRules->"InputGrouping", CellHorizontalScrolling->True, PageBreakWithin->False, GroupPageBreakWithin->False, InitializationCell->True, CellLabelMargins->{{33, Inherited}, {Inherited, Inherited}}, DefaultFormatType->DefaultInputFormatType, TextAlignment->Left, HyphenationOptions->{"HyphenationCharacter"->"\[Continuation]"}, AutoItalicWords->{}, LanguageCategory->"Formula", ShowStringCharacters->True, NumberMarks->True, LinebreakAdjustments->{0.85, 2, 10, 0, 1}, CounterIncrements->"Input", FormatTypeAutoConvert->False, FontFamily->"Verdana", FontSize->12, FontWeight->"Plain", Background->RGBColor[0.8, 1, 0.700008]], Cell[StyleData["Animation"], PageWidth->PaperWidth, CellFrame->True, CellMargins->{{72, 25}, {8, 12}}, Evaluatable->True, CellGroupingRules->"InputGrouping", CellHorizontalScrolling->True, PageBreakWithin->False, GroupPageBreakWithin->False, InitializationCell->True, CellLabelMargins->{{33, Inherited}, {Inherited, Inherited}}, DefaultFormatType->DefaultInputFormatType, TextAlignment->Left, HyphenationOptions->{"HyphenationCharacter"->"\[Continuation]"}, AutoItalicWords->{}, LanguageCategory->"Formula", ShowStringCharacters->True, NumberMarks->True, LinebreakAdjustments->{0.85, 2, 10, 0, 1}, CounterIncrements->"Input", FormatTypeAutoConvert->False, FontFamily->"Verdana", FontSize->12, FontWeight->"Plain", FontColor->GrayLevel[1], Background->RGBColor[0.4, 0.4, 1]], Cell[CellGroupData[{ Cell[StyleData["Package"], PageWidth->PaperWidth, CellFrame->True, CellMargins->{{72, 25}, {8, 12}}, Evaluatable->True, CellGroupingRules->"InputGrouping", CellHorizontalScrolling->True, PageBreakWithin->False, GroupPageBreakWithin->False, InitializationCell->True, CellLabelMargins->{{33, Inherited}, {Inherited, Inherited}}, DefaultFormatType->DefaultInputFormatType, TextAlignment->Left, HyphenationOptions->{"HyphenationCharacter"->"\[Continuation]"}, AutoItalicWords->{}, LanguageCategory->"Formula", ShowStringCharacters->True, NumberMarks->True, LinebreakAdjustments->{0.85, 2, 10, 0, 1}, CounterIncrements->"Input", FormatTypeAutoConvert->False, FontFamily->"Verdana", FontSize->12, FontWeight->"Plain", Background->RGBColor[0.900008, 0.800015, 1]], Cell[StyleData["Program", "Printout"], PageWidth->PaperWidth, FontSize->9.5] }, Open ]] }, Open ]] }, Open ]] }] ] (******************************************************************* 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[1776, 53, 27, 0, 68, "Title"], Cell[CellGroupData[{ Cell[1828, 57, 23, 0, 71, "Section"], Cell[1854, 59, 148, 3, 50, "Text"], Cell[2005, 64, 105, 3, 31, "Text"], Cell[2113, 69, 36, 0, 52, "Package"], Cell[2152, 71, 290, 9, 50, "Text"], Cell[2445, 82, 82, 1, 52, "Definition"], Cell[2530, 85, 699, 18, 126, "Text"], Cell[3232, 105, 143, 5, 100, "Definition"] }, Closed]], Cell[CellGroupData[{ Cell[3412, 115, 23, 0, 45, "Section"], Cell[3438, 117, 566, 18, 88, "Text"], Cell[4007, 137, 68, 5, 100, "Input"], Cell[4078, 144, 263, 6, 116, "Input"], Cell[4344, 152, 123, 5, 31, "Text"], Cell[4470, 159, 215, 5, 123, "NumberedFigure"], Cell[4688, 166, 148, 5, 31, "Text"], Cell[CellGroupData[{ Cell[4861, 175, 28, 0, 34, "Subsection"], Cell[4892, 177, 188, 7, 31, "Text"], Cell[5083, 186, 598, 17, 315, "NumberedFigure"] }, Closed]] }, Closed]], Cell[CellGroupData[{ Cell[5730, 209, 23, 0, 45, "Section"], Cell[5756, 211, 236, 8, 50, "Text"], Cell[5995, 221, 78, 0, 52, "Definition"], Cell[6076, 223, 121, 3, 50, "Text"], Cell[6200, 228, 57, 3, 68, "Input"], Cell[6260, 233, 392, 12, 69, "Text"], Cell[6655, 247, 61, 4, 84, "Input"], Cell[6719, 253, 184, 7, 31, "Text"], Cell[6906, 262, 64, 3, 68, "Input"], Cell[6973, 267, 48, 0, 31, "Text"], Cell[7024, 269, 41, 0, 52, "Input"], Cell[7068, 271, 53, 0, 52, "Input"], Cell[7124, 273, 76, 3, 68, "Input"], Cell[7203, 278, 98, 5, 100, "Input"] }, Closed]], Cell[CellGroupData[{ Cell[7338, 288, 23, 0, 45, "Section"], Cell[7364, 290, 154, 3, 50, "Text"], Cell[7521, 295, 97, 2, 52, "Definition"], Cell[7621, 299, 93, 2, 52, "Definition"], Cell[7717, 303, 41, 0, 31, "Text"], Cell[7761, 305, 53, 0, 52, "Input"], Cell[7817, 307, 230, 7, 50, "Text"], Cell[8050, 316, 137, 5, 100, "Animation"], Cell[8190, 323, 132, 3, 50, "Text"], Cell[8325, 328, 98, 4, 84, "Input"] }, Closed]], Cell[CellGroupData[{ Cell[8460, 337, 23, 0, 45, "Section"], Cell[8486, 339, 45, 0, 31, "Text"], Cell[8534, 341, 126, 3, 68, "Input"], Cell[8663, 346, 517, 16, 70, "Text"], Cell[9183, 364, 49, 0, 52, "Input"], Cell[9235, 366, 280, 9, 51, "Text"] }, Closed]] }, Open ]] } ] *) (******************************************************************* End of Mathematica Notebook file. *******************************************************************)