(*********************************************************************** 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[ 13957, 653]*) (*NotebookOutlinePosition[ 14820, 683]*) (* CellTagsIndexPosition[ 14776, 679]*) (*WindowFrame->Normal*) Notebook[{ Cell["Linear Algebra", "Title", Evaluatable->False, CellHorizontalScrolling->False, TextAlignment->Center], Cell["\<\ Dennis Silverman Mathematical Physics 212A Department of Physics and Astronomy U.C. Irvine\ \>", "Subtitle", Evaluatable->False, CellHorizontalScrolling->False, TextAlignment->Center], Cell["", "Subsubtitle", Evaluatable->False, CellHorizontalScrolling->False, TextAlignment->Center], Cell[TextData["Vectors"], "Section", Evaluatable->False], Cell["Vectors are given as lists", "Subsubsection", PageWidth->Infinity], Cell[BoxData[ \(v := {a, b, c}\)], "Input", PageWidth->Infinity], Cell[BoxData[ \(w := {x, y, z}\)], "Input", PageWidth->Infinity], Cell[CellGroupData[{ Cell[BoxData[ \(k\ v\)], "Input", PageWidth->Infinity], Cell[BoxData[ \({a\ k, b\ k, c\ k}\)], "Output"] }, Open ]], Cell[CellGroupData[{ Cell[BoxData[ \(v + w\)], "Input", PageWidth->Infinity], Cell[BoxData[ \({a + x, b + y, c + z}\)], "Output"] }, Open ]], Cell["\<\ Functions are applied to each element in a vector Scalar Dot Product\ \>", "Subsubsection", PageWidth->Infinity], Cell[CellGroupData[{ Cell[BoxData[ \(v.w\)], "Input", PageWidth->Infinity], Cell[BoxData[ \(a\ x + b\ y + c\ z\)], "Output"] }, Open ]], Cell["Vector element", "Subsubsection", PageWidth->Infinity], Cell[CellGroupData[{ Cell[BoxData[ \(v\[LeftDoubleBracket]3\[RightDoubleBracket]\)], "Input", PageWidth->Infinity], Cell[BoxData[ \(c\)], "Output"] }, Open ]], Cell["Ways to generate vectors", "Subsubsection", PageWidth->Infinity], Cell[CellGroupData[{ Cell[BoxData[ \(Array[d, 6]\)], "Input", PageWidth->Infinity], Cell[BoxData[ \({d[1], d[2], d[3], d[4], d[5], d[6]}\)], "Output"] }, Open ]], Cell[CellGroupData[{ Cell[BoxData[ \(Table[i + 6, {i, 5}]\)], "Input", PageWidth->Infinity], Cell[BoxData[ \({7, 8, 9, 10, 11}\)], "Output"] }, Open ]], Cell[TextData["Matrices"], "Section", Evaluatable->False], Cell["Matrices are given by", "Subsubsection", PageWidth->Infinity], Cell[CellGroupData[{ Cell[BoxData[ \(m = {{m11, m12}, {m21, m22}}\)], "Input", PageWidth->Infinity], Cell[BoxData[ \({{m11, m12}, {m21, m22}}\)], "Output"] }, Open ]], Cell[CellGroupData[{ Cell[BoxData[ \(MatrixForm[m]\)], "Input", PageWidth->Infinity], Cell[BoxData[ TagBox[ RowBox[{"(", GridBox[{ {"m11", "m12"}, {"m21", "m22"} }], ")"}], (MatrixForm[ #]&)]], "Output"] }, Open ]], Cell["To generate a matrix", "Subsubsection", PageWidth->Infinity], Cell[BoxData[ \(A := Array[f, {3, 3}]\)], "Input", PageWidth->Infinity], Cell[CellGroupData[{ Cell[BoxData[ \(MatrixForm[A]\)], "Input", PageWidth->Infinity], Cell[BoxData[ TagBox[ RowBox[{"(", GridBox[{ {\(f[1, 1]\), \(f[1, 2]\), \(f[1, 3]\)}, {\(f[2, 1]\), \(f[2, 2]\), \(f[2, 3]\)}, {\(f[3, 1]\), \(f[3, 2]\), \(f[3, 3]\)} }], ")"}], (MatrixForm[ #]&)]], "Output"] }, Open ]], Cell[BoxData[ \(T := Table[3\ i - 3 + j, {i, 3}, {j, 3}]\)], "Input", PageWidth->Infinity], Cell[BoxData[ \(H := MatrixForm[T]\)], "Input", PageWidth->Infinity], Cell[CellGroupData[{ Cell[BoxData[ \(H\)], "Input", PageWidth->Infinity], Cell[BoxData[ TagBox[ RowBox[{"(", GridBox[{ {"1", "2", "3"}, {"4", "5", "6"}, {"7", "8", "9"} }], ")"}], (MatrixForm[ #]&)]], "Output"] }, Open ]], Cell[BoxData[ \(d := DiagonalMatrix[{a1, a2, a3}]\)], "Input", PageWidth->Infinity], Cell[CellGroupData[{ Cell[BoxData[ \(MatrixForm[d]\)], "Input", PageWidth->Infinity], Cell[BoxData[ TagBox[ RowBox[{"(", GridBox[{ {"a1", "0", "0"}, {"0", "a2", "0"}, {"0", "0", "a3"} }], ")"}], (MatrixForm[ #]&)]], "Output"] }, Open ]], Cell[BoxData[ \(iden := IdentityMatrix[3]\)], "Input", PageWidth->Infinity], Cell[CellGroupData[{ Cell[BoxData[ \(MatrixForm[iden]\)], "Input", PageWidth->Infinity], Cell[BoxData[ TagBox[ RowBox[{"(", GridBox[{ {"1", "0", "0"}, {"0", "1", "0"}, {"0", "0", "1"} }], ")"}], (MatrixForm[ #]&)]], "Output"] }, Open ]], Cell[CellGroupData[{ Cell[BoxData[ \(MatrixForm[Transpose[T]]\)], "Input", PageWidth->Infinity], Cell[BoxData[ TagBox[ RowBox[{"(", GridBox[{ {"1", "4", "7"}, {"2", "5", "8"}, {"3", "6", "9"} }], ")"}], (MatrixForm[ #]&)]], "Output"] }, Open ]], Cell[CellGroupData[{ Cell[BoxData[ \(T\)], "Input", PageWidth->Infinity], Cell[BoxData[ \({{1, 2, 3}, {4, 5, 6}, {7, 8, 9}}\)], "Output"] }, Open ]], Cell[CellGroupData[{ Cell[BoxData[ \(T\[LeftDoubleBracket]2, 3\[RightDoubleBracket]\)], "Input", PageWidth->Infinity], Cell[BoxData[ \(6\)], "Output"] }, Open ]], Cell["Third row", "Text", PageWidth->Infinity], Cell[CellGroupData[{ Cell[BoxData[ \(T\[LeftDoubleBracket]3\[RightDoubleBracket]\)], "Input", PageWidth->Infinity], Cell[BoxData[ \({7, 8, 9}\)], "Output"] }, Open ]], Cell["Third column", "Text", PageWidth->Infinity], Cell[CellGroupData[{ Cell[BoxData[ \(\(Transpose[T]\)\[LeftDoubleBracket]3\[RightDoubleBracket]\)], "Input", PageWidth->Infinity], Cell[BoxData[ \({3, 6, 9}\)], "Output"] }, Open ]], Cell[CellGroupData[{ Cell[BoxData[ \(Range[10]\)], "Input", PageWidth->Infinity], Cell[BoxData[ \({1, 2, 3, 4, 5, 6, 7, 8, 9, 10}\)], "Output"] }, Open ]], Cell["Matrix multiplication", "Subsubsection", PageWidth->Infinity], Cell[CellGroupData[{ Cell[BoxData[ \(m\)], "Input", PageWidth->Infinity], Cell[BoxData[ \({{m11, m12}, {m21, m22}}\)], "Output"] }, Open ]], Cell[BoxData[ \(p := {{p11, p12}, {p21, p22}}\)], "Input", PageWidth->Infinity], Cell[CellGroupData[{ Cell[BoxData[ \(MatrixForm[m.p]\)], "Input", PageWidth->Infinity], Cell[BoxData[ TagBox[ RowBox[{"(", GridBox[{ {\(m11\ p11 + m12\ p21\), \(m11\ p12 + m12\ p22\)}, {\(m21\ p11 + m22\ p21\), \(m21\ p12 + m22\ p22\)} }], ")"}], (MatrixForm[ #]&)]], "Output"] }, Open ]], Cell["Matrix products with vectors", "Subsubsection", PageWidth->Infinity], Cell[BoxData[ \(x := {x1, x2}\)], "Input", PageWidth->Infinity], Cell[CellGroupData[{ Cell[BoxData[ \(MatrixForm[m.x]\)], "Input", PageWidth->Infinity], Cell[BoxData[ InterpretationBox[ RowBox[{"(", GridBox[{ {\(m11\ x1 + m12\ x2\)}, {\(m21\ x1 + m22\ x2\)} }], ")"}], MatrixForm[ { Plus[ Times[ m11, x1], Times[ m12, x2]], Plus[ Times[ m21, x1], Times[ m22, x2]]}]]], "Output"] }, Open ]], Cell[CellGroupData[{ Cell[BoxData[ \(MatrixForm[x.m]\)], "Input", PageWidth->Infinity], Cell[BoxData[ InterpretationBox[ RowBox[{"(", GridBox[{ {\(m11\ x1 + m21\ x2\)}, {\(m12\ x1 + m22\ x2\)} }], ")"}], MatrixForm[ { Plus[ Times[ m11, x1], Times[ m21, x2]], Plus[ Times[ m12, x1], Times[ m22, x2]]}]]], "Output"] }, Open ]], Cell[BoxData[ \(y := {y1, y2}\)], "Input", PageWidth->Infinity], Cell[CellGroupData[{ Cell[BoxData[ \(x.m.y\)], "Input", PageWidth->Infinity], Cell[BoxData[ \(\((m11\ x1 + m21\ x2)\)\ y1 + \((m12\ x1 + m22\ x2)\)\ y2\)], "Output"] }, Open ]], Cell[CellGroupData[{ Cell[BoxData[ \(Inverse[m]\)], "Input", PageWidth->Infinity], Cell[BoxData[ \({{m22\/\(\(-m12\)\ m21 + m11\ m22\), \(-\(m12\/\(\(-m12\)\ m21 + m11\ m22\)\)\)}, { \(-\(m21\/\(\(-m12\)\ m21 + m11\ m22\)\)\), m11\/\(\(-m12\)\ m21 + m11\ m22\)}}\)], "Output"] }, Open ]], Cell[CellGroupData[{ Cell[BoxData[ \(Det[m]\)], "Input", PageWidth->Infinity], Cell[BoxData[ \(\(-m12\)\ m21 + m11\ m22\)], "Output"] }, Open ]], Cell[CellGroupData[{ Cell[BoxData[ \(Det[T]\)], "Input", PageWidth->Infinity], Cell[BoxData[ \(0\)], "Output"] }, Open ]], Cell["The trace is given by the sum over diagonal elements", "Subsubsection", PageWidth->Infinity], Cell[BoxData[ \(tr := \[Sum]\+\(i = 1\)\%3 T\[LeftDoubleBracket]i, i\[RightDoubleBracket]\)], "Input", PageWidth->Infinity], Cell[CellGroupData[{ Cell[BoxData[ \(tr\)], "Input", PageWidth->Infinity], Cell[BoxData[ \(15\)], "Output"] }, Open ]], Cell[TextData["Eigenvalues and Eigenvectors"], "Section", Evaluatable->False], Cell[CellGroupData[{ Cell[BoxData[ \(Eigenvalues[T]\)], "Input", PageWidth->Infinity], Cell[BoxData[ \({0, 3\/2\ \((5 - \@33)\), 3\/2\ \((5 + \@33)\)}\)], "Output"] }, Open ]], Cell[BoxData[ \(evt := Eigenvectors[T]\)], "Input", PageWidth->Infinity], Cell[CellGroupData[{ Cell[BoxData[ \(evt\)], "Input", PageWidth->Infinity], Cell[BoxData[ \({{1, \(-2\), 1}, {\(-\(\(15 - \@33\)\/\(\(-33\) + 7\ \@33\)\)\), \(4\ \((\(-6\) + \@33)\)\)\/\(\(-33\) + 7\ \@33\), 1}, { \(-\(\(\(-15\) - \@33\)\/\(33 + 7\ \@33\)\)\), \(4\ \((6 + \@33)\)\)\/\(33 + 7\ \@33\), 1}}\)], "Output"] }, Open ]], Cell[BoxData[ \(<< "\"\)], "Input", PageWidth->Infinity], Cell[BoxData[ \(nevt := N[evt]\)], "Input", PageWidth->Infinity], Cell[CellGroupData[{ Cell[BoxData[ \(nevt\)], "Input", PageWidth->Infinity], Cell[BoxData[ \({{1.`, \(-2.`\), 1.`}, {\(-1.2833494518006403`\), \(-0.141674725900320179`\), 1.`}, {0.283349451800640306`, 0.641674725900320197`, 1.`}}\)], "Output"] }, Open ]], Cell[CellGroupData[{ Cell[BoxData[ \(GramSchmidt[nevt]\)], "Input", PageWidth->Infinity], Cell[BoxData[ \({{0.408248290463863039`, \(-0.816496580927726078`\), 0.408248290463863039`}, {\(-0.785830238742067166`\), \(-0.0867513392566284835`\), 0.612327560228810163`}, { 0.4645472733876705`, 0.570795531228578045`, 0.677043789069485679`}} \)], "Output"] }, Open ]], Cell[CellGroupData[{ Cell[BoxData[ \(Normalize[nevt\[LeftDoubleBracket]1\[RightDoubleBracket]]\)], "Input", PageWidth->Infinity], Cell[BoxData[ \({0.408248290463863039`, \(-0.816496580927726078`\), 0.408248290463863039`}\)], "Output"] }, Open ]], Cell[CellGroupData[{ Cell[BoxData[ \(Projection[nevt\[LeftDoubleBracket]1\[RightDoubleBracket], nevt\[LeftDoubleBracket]2\[RightDoubleBracket]]\)], "Input", PageWidth->Infinity], Cell[BoxData[ \({0.`, 0.`, 0.`}\)], "Output"] }, Open ]], Cell[BoxData[ \(cp := CharacteristicPolynomial[T, eig]\)], "Input", PageWidth->Infinity], Cell[CellGroupData[{ Cell[BoxData[ \(cp\)], "Input", PageWidth->Infinity], Cell[BoxData[ \(18\ eig + 15\ eig\^2 - eig\^3\)], "Output"] }, Open ]], Cell[CellGroupData[{ Cell[BoxData[ \(Roots[cp == 0, eig]\)], "Input", PageWidth->Infinity], Cell[BoxData[ \(eig == 3\/2\ \((5 - \@33)\) || eig == 3\/2\ \((5 + \@33)\) || eig == 0\)], "Output"] }, Open ]], Cell[CellGroupData[{ Cell[BoxData[ \(Factor[cp]\)], "Input", PageWidth->Infinity], Cell[BoxData[ \(\(-eig\)\ \((\(-18\) - 15\ eig + eig\^2)\)\)], "Output"] }, Open ]], Cell[CellGroupData[{ Cell[BoxData[ \(m\)], "Input", PageWidth->Infinity], Cell[BoxData[ \({{m11, m12}, {m21, m22}}\)], "Output"] }, Open ]], Cell[TextData["Linear Equations m x = vec"], "Section", Evaluatable->False], Cell[CellGroupData[{ Cell[BoxData[ \(\(?LinearSolve\)\)], "Input", PageWidth->Infinity], Cell[BoxData[ \("LinearSolve[m, b] finds an x which solves the matrix equation m.x==b."\ \)], "Print"] }, Open ]], Cell[BoxData[ \(vec := {vec1, vec2}\)], "Input", PageWidth->Infinity], Cell[CellGroupData[{ Cell[BoxData[ \(LinearSolve[m, vec]\)], "Input", PageWidth->Infinity], Cell[BoxData[ \({\(m22\ vec1 - m12\ vec2\)\/\(\(-m12\)\ m21 + m11\ m22\), \(\(-m21\)\ vec1 + m11\ vec2\)\/\(\(-m12\)\ m21 + m11\ m22\)}\)], "Output"] }, Open ]] }, FrontEndVersion->"Microsoft Windows 3.0", ScreenRectangle->{{0, 640}, {0, 424}}, WindowToolbars->{}, CellGrouping->Manual, WindowSize->{480, 300}, WindowMargins->{{Automatic, 30}, {Automatic, 15}}, PrivateNotebookOptions->{"ColorPalette"->{RGBColor, -1}}, ShowCellLabel->True, ShowCellTags->False, RenderingOptions->{"ObjectDithering"->True, "RasterDithering"->False} ] (*********************************************************************** 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, 112, 3, 105, "Title"], Cell[1824, 54, 199, 8, 141, "Subtitle"], Cell[2026, 64, 104, 3, 48, "Subsubtitle"], Cell[2133, 69, 58, 1, 53, "Section"], Cell[2194, 72, 74, 1, 43, "Subsubsection"], Cell[2271, 75, 70, 2, 30, "Input"], Cell[2344, 79, 70, 2, 30, "Input"], Cell[CellGroupData[{ Cell[2439, 85, 60, 2, 30, "Input"], Cell[2502, 89, 52, 1, 29, "Output"] }, Open ]], Cell[CellGroupData[{ Cell[2591, 95, 61, 2, 30, "Input"], Cell[2655, 99, 55, 1, 29, "Output"] }, Open ]], Cell[2725, 103, 124, 4, 60, "Subsubsection"], Cell[CellGroupData[{ Cell[2874, 111, 59, 2, 30, "Input"], Cell[2936, 115, 52, 1, 29, "Output"] }, Open ]], Cell[3003, 119, 62, 1, 43, "Subsubsection"], Cell[CellGroupData[{ Cell[3090, 124, 99, 2, 30, "Input"], Cell[3192, 128, 35, 1, 29, "Output"] }, Open ]], Cell[3242, 132, 72, 1, 43, "Subsubsection"], Cell[CellGroupData[{ Cell[3339, 137, 67, 2, 30, "Input"], Cell[3409, 141, 70, 1, 29, "Output"] }, Open ]], Cell[CellGroupData[{ Cell[3516, 147, 76, 2, 30, "Input"], Cell[3595, 151, 51, 1, 29, "Output"] }, Open ]], Cell[3661, 155, 59, 1, 53, "Section"], Cell[3723, 158, 69, 1, 43, "Subsubsection"], Cell[CellGroupData[{ Cell[3817, 163, 84, 2, 30, "Input"], Cell[3904, 167, 58, 1, 29, "Output"] }, Open ]], Cell[CellGroupData[{ Cell[3999, 173, 69, 2, 30, "Input"], Cell[4071, 177, 169, 6, 54, "Output"] }, Open ]], Cell[4255, 186, 68, 1, 43, "Subsubsection"], Cell[4326, 189, 77, 2, 30, "Input"], Cell[CellGroupData[{ Cell[4428, 195, 69, 2, 30, "Input"], Cell[4500, 199, 272, 7, 70, "Output"] }, Open ]], Cell[4787, 209, 96, 2, 30, "Input"], Cell[4886, 213, 74, 2, 30, "Input"], Cell[CellGroupData[{ Cell[4985, 219, 57, 2, 30, "Input"], Cell[5045, 223, 200, 7, 70, "Output"] }, Open ]], Cell[5260, 233, 89, 2, 30, "Input"], Cell[CellGroupData[{ Cell[5374, 239, 69, 2, 30, "Input"], Cell[5446, 243, 203, 7, 70, "Output"] }, Open ]], Cell[5664, 253, 81, 2, 30, "Input"], Cell[CellGroupData[{ Cell[5770, 259, 72, 2, 30, "Input"], Cell[5845, 263, 200, 7, 70, "Output"] }, Open ]], Cell[CellGroupData[{ Cell[6082, 275, 80, 2, 30, "Input"], Cell[6165, 279, 200, 7, 70, "Output"] }, Open ]], Cell[CellGroupData[{ Cell[6402, 291, 57, 2, 30, "Input"], Cell[6462, 295, 67, 1, 29, "Output"] }, Open ]], Cell[CellGroupData[{ Cell[6566, 301, 102, 2, 30, "Input"], Cell[6671, 305, 35, 1, 29, "Output"] }, Open ]], Cell[6721, 309, 48, 1, 33, "Text"], Cell[CellGroupData[{ Cell[6794, 314, 99, 2, 30, "Input"], Cell[6896, 318, 43, 1, 29, "Output"] }, Open ]], Cell[6954, 322, 51, 1, 33, "Text"], Cell[CellGroupData[{ Cell[7030, 327, 114, 2, 30, "Input"], Cell[7147, 331, 43, 1, 29, "Output"] }, Open ]], Cell[CellGroupData[{ Cell[7227, 337, 65, 2, 30, "Input"], Cell[7295, 341, 65, 1, 29, "Output"] }, Open ]], Cell[7375, 345, 69, 1, 43, "Subsubsection"], Cell[CellGroupData[{ Cell[7469, 350, 57, 2, 30, "Input"], Cell[7529, 354, 58, 1, 29, "Output"] }, Open ]], Cell[7602, 358, 85, 2, 30, "Input"], Cell[CellGroupData[{ Cell[7712, 364, 71, 2, 30, "Input"], Cell[7786, 368, 241, 6, 54, "Output"] }, Open ]], Cell[8042, 377, 76, 1, 43, "Subsubsection"], Cell[8121, 380, 69, 2, 30, "Input"], Cell[CellGroupData[{ Cell[8215, 386, 71, 2, 30, "Input"], Cell[8289, 390, 338, 12, 54, "Output"] }, Open ]], Cell[CellGroupData[{ Cell[8664, 407, 71, 2, 30, "Input"], Cell[8738, 411, 338, 12, 54, "Output"] }, Open ]], Cell[9091, 426, 69, 2, 30, "Input"], Cell[CellGroupData[{ Cell[9185, 432, 61, 2, 30, "Input"], Cell[9249, 436, 91, 1, 29, "Output"] }, Open ]], Cell[CellGroupData[{ Cell[9377, 442, 66, 2, 30, "Input"], Cell[9446, 446, 223, 4, 76, "Output"] }, Open ]], Cell[CellGroupData[{ Cell[9706, 455, 62, 2, 30, "Input"], Cell[9771, 459, 58, 1, 29, "Output"] }, Open ]], Cell[CellGroupData[{ Cell[9866, 465, 62, 2, 30, "Input"], Cell[9931, 469, 35, 1, 29, "Output"] }, Open ]], Cell[9981, 473, 100, 1, 43, "Subsubsection"], Cell[10084, 476, 139, 4, 51, "Input"], Cell[CellGroupData[{ Cell[10248, 484, 58, 2, 30, "Input"], Cell[10309, 488, 36, 1, 29, "Output"] }, Open ]], Cell[10360, 492, 79, 1, 53, "Section"], Cell[CellGroupData[{ Cell[10464, 497, 70, 2, 30, "Input"], Cell[10537, 501, 81, 1, 42, "Output"] }, Open ]], Cell[10633, 505, 78, 2, 30, "Input"], Cell[CellGroupData[{ Cell[10736, 511, 59, 2, 30, "Input"], Cell[10798, 515, 273, 4, 101, "Output"] }, Open ]], Cell[11086, 522, 97, 2, 30, "Input"], Cell[11186, 526, 70, 2, 30, "Input"], Cell[CellGroupData[{ Cell[11281, 532, 60, 2, 30, "Input"], Cell[11344, 536, 188, 3, 48, "Output"] }, Open ]], Cell[CellGroupData[{ Cell[11569, 544, 73, 2, 30, "Input"], Cell[11645, 548, 295, 5, 67, "Output"] }, Open ]], Cell[CellGroupData[{ Cell[11977, 558, 113, 2, 30, "Input"], Cell[12093, 562, 115, 2, 29, "Output"] }, Open ]], Cell[CellGroupData[{ Cell[12245, 569, 169, 3, 30, "Input"], Cell[12417, 574, 49, 1, 29, "Output"] }, Open ]], Cell[12481, 578, 94, 2, 30, "Input"], Cell[CellGroupData[{ Cell[12600, 584, 58, 2, 30, "Input"], Cell[12661, 588, 63, 1, 29, "Output"] }, Open ]], Cell[CellGroupData[{ Cell[12761, 594, 75, 2, 30, "Input"], Cell[12839, 598, 111, 2, 42, "Output"] }, Open ]], Cell[CellGroupData[{ Cell[12987, 605, 66, 2, 30, "Input"], Cell[13056, 609, 76, 1, 29, "Output"] }, Open ]], Cell[CellGroupData[{ Cell[13169, 615, 57, 2, 30, "Input"], Cell[13229, 619, 58, 1, 29, "Output"] }, Open ]], Cell[13302, 623, 77, 1, 53, "Section"], Cell[CellGroupData[{ Cell[13404, 628, 72, 2, 30, "Input"], Cell[13479, 632, 106, 2, 44, "Print"] }, Open ]], Cell[13600, 637, 75, 2, 30, "Input"], Cell[CellGroupData[{ Cell[13700, 643, 75, 2, 30, "Input"], Cell[13778, 647, 163, 3, 42, "Output"] }, Open ]] } ] *) (*********************************************************************** End of Mathematica Notebook file. ***********************************************************************)