(*********************************************************************** 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[ 12921, 408]*) (*NotebookOutlinePosition[ 13604, 432]*) (* CellTagsIndexPosition[ 13560, 428]*) (*WindowFrame->Normal*) Notebook[{ Cell["\<\ it would be nice to count trees ofver all forrests, \ {1,0}=1,{1,1,0,0}=2,{1,0,1,0}=3,{1,1,1,0,0,0}=4 etc.. NOW DONE !!\ \>", "Text"], Cell[CellGroupData[{ Cell["RankTree", "Subsection"], Cell["the Catalan Triangle :", "Text"], Cell["cattria[n_,m_]:=(n+m)!/(n+1)!/m!(n-m+1)", "Input", InitializationCell->True], Cell["\<\ this does a \"TransposePartition\" of a non-decreasing list, viewed as a \ Ferrers Diagram: function\" trapo\"\ \>", "Text"], Cell[TextData[{ StyleBox["trapo", FontColor->RGBColor[0, 0, 1]], "[li:{__Integer}]:=Count[li,q_/;q>=#]&/@Range[Length[li]];trapo[{}]:={0};" }], "Input", InitializationCell->True], Cell["this transforms a tree into a non-decreasing sequence, ", "Text"], Cell[TextData[{ StyleBox["toparti", FontColor->RGBColor[1, 0, 0]], "[li:{(1|0) ..}]:=Rest[Flatten[Position[li,1]]-Range[Length[li]/2]]" }], "Input", InitializationCell->True], Cell["and now, RankTree1 is easily constructed:", "Text"], Cell[TextData[{ "RankTree1[parti:{__Integer}]:=1+Plus@@Apply[cattria[#1+1,#2-1]&,Transpose[{\ Reverse@Range[Length[parti]],", StyleBox["trapo", FontColor->RGBColor[0, 0, 1]], "[parti]}],1]" }], "Input", InitializationCell->True], Cell[TextData[{ "RankTree[li:{(1 | 0)..}] := RankTree1[", StyleBox["toparti", FontColor->RGBColor[1, 0, 0]], "[li]] ; RankTree[{1,0}]:=1 ;" }], "Input", InitializationCell->True], Cell[TextData[{ "RankTree[li:{(1 | 0)..}] :=Sum[cattria[w,w],{w,1,Length[li]/2-1}]+ \ RankTree1[", StyleBox["toparti", FontColor->RGBColor[1, 0, 0]], "[li]] ; RankTree[{1,0}]:=1 ;" }], "Input", InitializationCell->True, Background->RGBColor[1, 1, 0]], Cell["step by step :", "Text"], Cell[CellGroupData[{ Cell["li={1,0,1,0,1,0,1,0}", "Input"], Cell[BoxData[ \({1, 0, 1, 0, 1, 0, 1, 0}\)], "Output"] }, Open ]], Cell[CellGroupData[{ Cell["toparti@li", "Input"], Cell[BoxData[ \({1, 2, 3}\)], "Output"] }, Open ]], Cell[CellGroupData[{ Cell["trapo[toparti@li]", "Input"], Cell[BoxData[ \({3, 2, 1}\)], "Output"] }, Open ]], Cell[CellGroupData[{ Cell[TextData[{ "Transpose[{Reverse@Range[Length[ toparti@li ]],", StyleBox["trapo", FontColor->RGBColor[0, 0, 1]], "[ toparti@li ]}]" }], "Input"], Cell[BoxData[ \({{3, 3}, {2, 2}, {1, 1}}\)], "Output"] }, Open ]], Cell[CellGroupData[{ Cell[TextData[{ "Apply[cattria[#1+1,#2-1]&,", "Transpose[{Reverse@Range[Length[ toparti@li ]],", StyleBox["trapo", FontColor->RGBColor[0, 0, 1]], "[ toparti@li ]}]", ",1]" }], "Input"], Cell[BoxData[ \({9, 3, 1}\)], "Output"] }, Open ]], Cell[CellGroupData[{ Cell["RankTree1[toparti@li]", "Input"], Cell[BoxData[ \(14\)], "Output"] }, Open ]], Cell["Sum[cattria[w,w],{w,1,Length[li]/2-1}]", "Input"] }, Closed]], Cell[CellGroupData[{ Cell["NthTree", "Subsection"], Cell["Clear[NthTree,NthTree1]", "Input"], Cell["\<\ NthTree1[w_Integer/;(w>0), o_Integer:1] := Module[{k = 0, therest, result = \ {}}, While[cattria[k, k] < w, k++]; k=Max[o,k];therest = w; While[k > 1, m = 0; While[cattria[k, m] < therest, m++]; therest -= \ cattria[k, m - 1]; AppendTo[result, m]; k--]; Reverse[trapo[result]]]\ \>", "Input", InitializationCell->True], Cell["\<\ NthTree[w_Integer/;(w>0),o_Integer:1]:=Module[{temp1,temp2}, temp1=NthTree1[w,o]; temp2=Prepend[temp1,0]+Range[Length[temp1]+1]; MapAt[#+1&,0*Range[2 \ Length[temp2]],Transpose@{temp2}] ];NthTree[1]:={1,0};\ \>", "Input", InitializationCell->True], Cell["\<\ NthTree[w_Integer/;(w>0),o_Integer:1]:=Module[{temp1,temp2}, Module[{k=1,t=1}, \ While[t+cattria[k,k]<=w,(t+=cattria[k,k]);k++];w2=w+1-t;o2=k]; temp1=NthTree1[w2,o2]; temp2=Prepend[temp1,0]+Range[Length[temp1]+1]; MapAt[#+1&,0*Range[2 \ Length[temp2]],Transpose@{temp2}] ];NthTree[1]:={1,0};\ \>", "Input", InitializationCell->True, Background->RGBColor[1, 1, 0]], Cell["\<\ the function NthTree1 produces the y-coordinates of a chessboard rook path, \ to be surrounded with obligatory {0, ---- , 1}\ \>", "Text"], Cell[CellGroupData[{ Cell["NthTree1/@ Range[42]", "Input"], Cell[BoxData[ \({{0}, {1}, {0, 2}, {1, 1}, {1, 2}, {0, 1, 2}, {0, 1, 3}, {0, 2, 2}, {0, 2, 3}, {1, 1, 1}, {1, 1, 2}, {1, 1, 3}, {1, 2, 2}, {1, 2, 3}, {0, 1, 1, 1}, {0, 1, 1, 2}, {0, 1, 1, 3}, {0, 1, 1, 4}, {0, 1, 2, 2}, {0, 1, 2, 3}, {0, 1, 2, 4}, {0, 1, 3, 3}, {0, 1, 3, 4}, {0, 2, 2, 2}, {0, 2, 2, 3}, {0, 2, 2, 4}, {0, 2, 3, 3}, {0, 2, 3, 4}, {1, 1, 1, 1}, {1, 1, 1, 2}, {1, 1, 1, 3}, {1, 1, 1, 4}, {1, 1, 2, 2}, {1, 1, 2, 3}, {1, 1, 2, 4}, {1, 1, 3, 3}, {1, 1, 3, 4}, {1, 2, 2, 2}, {1, 2, 2, 3}, {1, 2, 2, 4}, {1, 2, 3, 3}, {1, 2, 3, 4}}\)], "Output"] }, Open ]], Cell["\<\ NthTree[ integer] gives the nth tree of the forrest just large enough to hold \ it. Larger forrrests can be generated by prepending additional 1's and \ appending as many 0's.\ \>", "Text"], Cell[CellGroupData[{ Cell["NthTree/@ Range[42+14+5+2+1]", "Input"], Cell[BoxData[ \({{1, 0}, {1, 1, 0, 0}, {1, 0, 1, 0}, {1, 1, 1, 0, 0, 0}, {1, 1, 0, 1, 0, 0}, {1, 1, 0, 0, 1, 0}, {1, 0, 1, 1, 0, 0}, {1, 0, 1, 0, 1, 0}, {1, 1, 1, 1, 0, 0, 0, 0}, {1, 1, 1, 0, 1, 0, 0, 0}, {1, 1, 1, 0, 0, 1, 0, 0}, {1, 1, 1, 0, 0, 0, 1, 0}, {1, 1, 0, 1, 1, 0, 0, 0}, {1, 1, 0, 1, 0, 1, 0, 0}, {1, 1, 0, 1, 0, 0, 1, 0}, {1, 1, 0, 0, 1, 1, 0, 0}, {1, 1, 0, 0, 1, 0, 1, 0}, {1, 0, 1, 1, 1, 0, 0, 0}, {1, 0, 1, 1, 0, 1, 0, 0}, {1, 0, 1, 1, 0, 0, 1, 0}, {1, 0, 1, 0, 1, 1, 0, 0}, {1, 0, 1, 0, 1, 0, 1, 0}, {1, 1, 1, 1, 1, 0, 0, 0, 0, 0}, {1, 1, 1, 1, 0, 1, 0, 0, 0, 0}, {1, 1, 1, 1, 0, 0, 1, 0, 0, 0}, {1, 1, 1, 1, 0, 0, 0, 1, 0, 0}, {1, 1, 1, 1, 0, 0, 0, 0, 1, 0}, {1, 1, 1, 0, 1, 1, 0, 0, 0, 0}, {1, 1, 1, 0, 1, 0, 1, 0, 0, 0}, {1, 1, 1, 0, 1, 0, 0, 1, 0, 0}, {1, 1, 1, 0, 1, 0, 0, 0, 1, 0}, {1, 1, 1, 0, 0, 1, 1, 0, 0, 0}, {1, 1, 1, 0, 0, 1, 0, 1, 0, 0}, {1, 1, 1, 0, 0, 1, 0, 0, 1, 0}, {1, 1, 1, 0, 0, 0, 1, 1, 0, 0}, {1, 1, 1, 0, 0, 0, 1, 0, 1, 0}, {1, 1, 0, 1, 1, 1, 0, 0, 0, 0}, {1, 1, 0, 1, 1, 0, 1, 0, 0, 0}, {1, 1, 0, 1, 1, 0, 0, 1, 0, 0}, {1, 1, 0, 1, 1, 0, 0, 0, 1, 0}, {1, 1, 0, 1, 0, 1, 1, 0, 0, 0}, {1, 1, 0, 1, 0, 1, 0, 1, 0, 0}, {1, 1, 0, 1, 0, 1, 0, 0, 1, 0}, {1, 1, 0, 1, 0, 0, 1, 1, 0, 0}, {1, 1, 0, 1, 0, 0, 1, 0, 1, 0}, {1, 1, 0, 0, 1, 1, 1, 0, 0, 0}, {1, 1, 0, 0, 1, 1, 0, 1, 0, 0}, {1, 1, 0, 0, 1, 1, 0, 0, 1, 0}, {1, 1, 0, 0, 1, 0, 1, 1, 0, 0}, {1, 1, 0, 0, 1, 0, 1, 0, 1, 0}, {1, 0, 1, 1, 1, 1, 0, 0, 0, 0}, {1, 0, 1, 1, 1, 0, 1, 0, 0, 0}, {1, 0, 1, 1, 1, 0, 0, 1, 0, 0}, {1, 0, 1, 1, 1, 0, 0, 0, 1, 0}, {1, 0, 1, 1, 0, 1, 1, 0, 0, 0}, {1, 0, 1, 1, 0, 1, 0, 1, 0, 0}, {1, 0, 1, 1, 0, 1, 0, 0, 1, 0}, {1, 0, 1, 1, 0, 0, 1, 1, 0, 0}, {1, 0, 1, 1, 0, 0, 1, 0, 1, 0}, {1, 0, 1, 0, 1, 1, 1, 0, 0, 0}, {1, 0, 1, 0, 1, 1, 0, 1, 0, 0}, {1, 0, 1, 0, 1, 1, 0, 0, 1, 0}, {1, 0, 1, 0, 1, 0, 1, 1, 0, 0}, {1, 0, 1, 0, 1, 0, 1, 0, 1, 0}}\)], "Output"] }, Open ]], Cell[CellGroupData[{ Cell["RankTree/@%", "Input"], Cell[BoxData[ \({1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64}\)], "Output"] }, Open ]], Cell["\<\ and optional second argument allows a minimal forrest size to be specified.\ \>", "Text"], Cell[CellGroupData[{ Cell["NthTree[#,4]&/@ Range[16]", "Input"], Cell[BoxData[ \({{1, 1, 1, 1, 0, 0, 0, 0}, {1, 1, 1, 0, 1, 0, 0, 0}, {1, 1, 1, 0, 0, 1, 0, 0}, {1, 1, 1, 0, 0, 0, 1, 0}, {1, 1, 0, 1, 1, 0, 0, 0}, {1, 1, 0, 1, 0, 1, 0, 0}, {1, 1, 0, 1, 0, 0, 1, 0}, {1, 1, 0, 0, 1, 1, 0, 0}, {1, 1, 0, 0, 1, 0, 1, 0}, {1, 0, 1, 1, 1, 0, 0, 0}, {1, 0, 1, 1, 0, 1, 0, 0}, {1, 0, 1, 1, 0, 0, 1, 0}, {1, 0, 1, 0, 1, 1, 0, 0}, {1, 0, 1, 0, 1, 0, 1, 0}, {1, 1, 0, 1, 1, 1, 0, 0, 0, 0}, {1, 1, 0, 1, 1, 0, 1, 0, 0, 0}}\)], "Output"] }, Open ]], Cell[CellGroupData[{ Cell["RankTree/@%", "Input"], Cell[BoxData[ \({1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16}\)], "Output"] }, Open ]], Cell[CellGroupData[{ Cell["\<\ cattria[100,100]-7 Log[10.,%]\ \>", "Input"], Cell[BoxData[ \(896519947090131496687170070074100632420837521538745909313\)], "Output"], Cell[BoxData[ \(56.95255995682603`\)], "Output"] }, Open ]], Cell[CellGroupData[{ Cell["Timing[NthTree[ cattria[100,100]-7 ] ]", "Input"], Cell[BoxData[ \({3.1340000000000003`\ Second, {1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 0, 1, 0, 0, 1, 0}}\)], "Output"] }, Open ]], Cell[CellGroupData[{ Cell["\<\ Timing[ RankTree[%[[2]] ] ] cattria[100,100]-7 == %[[2]]\ \>", "Input"], Cell[BoxData[ \({0.2809999999999988`\ Second, 896519947090131496687170070074100632420837521538745909313}\)], "Output"], Cell[BoxData[ \(True\)], "Output"] }, Open ]], Cell[CellGroupData[{ Cell["\<\ Flatten[Partition[Part[%153,2],2]/. {{1,0}..,{1,1},q__} ->{{1,1},q}]\ \>", "Input"], Cell[BoxData[ \({1, 1, 0, 1, 0, 0, 1, 0}\)], "Output"] }, Open ]], Cell[CellGroupData[{ Cell["RankTree[%]", "Input"], Cell[BoxData[ \(7\)], "Output"] }, Open ]], Cell[CellGroupData[{ Cell["Timing[NthTree[10^64]]", "Input"], Cell[BoxData[ \({1.1880000000000002`\ Second, {1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1, 0, 1, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 1, 1, 1, 0, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 1, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0}}\)], "Output"] }, Open ]], Cell[CellGroupData[{ Cell["Timing[RankTree[ Last[%] ] ]", "Input"], Cell[BoxData[ \({0.07800000000000007`\ Second, 10000000000000000000000000000000000000000000000000000000000000000}\)], \ "Output"] }, Open ]] }, Closed]] }, FrontEndVersion->"4.0 for Microsoft Windows", ScreenRectangle->{{0, 1024}, {0, 695}}, AutoGeneratedPackage->None, WindowSize->{721, 250}, WindowMargins->{{102, Automatic}, {Automatic, 0}} ] (*********************************************************************** 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, 156, 4, 52, "Text"], Cell[CellGroupData[{ Cell[1898, 57, 30, 0, 47, "Subsection"], Cell[1931, 59, 38, 0, 33, "Text"], Cell[1972, 61, 84, 1, 30, "Input", InitializationCell->True], Cell[2059, 64, 134, 3, 33, "Text"], Cell[2196, 69, 188, 5, 30, "Input", InitializationCell->True], Cell[2387, 76, 71, 0, 33, "Text"], Cell[2461, 78, 184, 5, 30, "Input", InitializationCell->True], Cell[2648, 85, 57, 0, 33, "Text"], Cell[2708, 87, 240, 7, 48, "Input", InitializationCell->True], Cell[2951, 96, 190, 6, 30, "Input", InitializationCell->True], Cell[3144, 104, 264, 8, 64, "Input", InitializationCell->True], Cell[3411, 114, 30, 0, 33, "Text"], Cell[CellGroupData[{ Cell[3466, 118, 37, 0, 30, "Input"], Cell[3506, 120, 58, 1, 29, "Output"] }, Open ]], Cell[CellGroupData[{ Cell[3601, 126, 27, 0, 30, "Input"], Cell[3631, 128, 43, 1, 29, "Output"] }, Open ]], Cell[CellGroupData[{ Cell[3711, 134, 34, 0, 30, "Input"], Cell[3748, 136, 43, 1, 29, "Output"] }, Open ]], Cell[CellGroupData[{ Cell[3828, 142, 157, 5, 30, "Input"], Cell[3988, 149, 58, 1, 29, "Output"] }, Open ]], Cell[CellGroupData[{ Cell[4083, 155, 198, 7, 30, "Input"], Cell[4284, 164, 43, 1, 29, "Output"] }, Open ]], Cell[CellGroupData[{ Cell[4364, 170, 38, 0, 30, "Input"], Cell[4405, 172, 36, 1, 29, "Output"] }, Open ]], Cell[4456, 176, 55, 0, 30, "Input"] }, Closed]], Cell[CellGroupData[{ Cell[4548, 181, 29, 0, 31, "Subsection"], Cell[4580, 183, 40, 0, 30, "Input"], Cell[4623, 185, 346, 8, 84, "Input", InitializationCell->True], Cell[4972, 195, 259, 7, 102, "Input", InitializationCell->True], Cell[5234, 204, 377, 10, 136, "Input", InitializationCell->True], Cell[5614, 216, 148, 3, 33, "Text"], Cell[CellGroupData[{ Cell[5787, 223, 37, 0, 30, "Input"], Cell[5827, 225, 622, 8, 124, "Output"] }, Open ]], Cell[6464, 236, 199, 4, 52, "Text"], Cell[CellGroupData[{ Cell[6688, 244, 45, 0, 30, "Input"], Cell[6736, 246, 2130, 29, 390, "Output"] }, Open ]], Cell[CellGroupData[{ Cell[8903, 280, 28, 0, 30, "Input"], Cell[8934, 282, 302, 4, 67, "Output"] }, Open ]], Cell[9251, 289, 99, 2, 33, "Text"], Cell[CellGroupData[{ Cell[9375, 295, 42, 0, 30, "Input"], Cell[9420, 297, 516, 7, 124, "Output"] }, Open ]], Cell[CellGroupData[{ Cell[9973, 309, 28, 0, 30, "Input"], Cell[10004, 311, 89, 1, 29, "Output"] }, Open ]], Cell[CellGroupData[{ Cell[10130, 317, 54, 3, 48, "Input"], Cell[10187, 322, 91, 1, 29, "Output"], Cell[10281, 325, 52, 1, 29, "Output"] }, Open ]], Cell[CellGroupData[{ Cell[10370, 331, 56, 0, 30, "Input"], Cell[10429, 333, 746, 10, 143, "Output"] }, Open ]], Cell[CellGroupData[{ Cell[11212, 348, 82, 3, 48, "Input"], Cell[11297, 353, 129, 2, 29, "Output"], Cell[11429, 357, 38, 1, 29, "Output"] }, Open ]], Cell[CellGroupData[{ Cell[11504, 363, 93, 2, 30, "Input"], Cell[11600, 367, 58, 1, 29, "Output"] }, Open ]], Cell[CellGroupData[{ Cell[11695, 373, 28, 0, 30, "Input"], Cell[11726, 375, 35, 1, 29, "Output"] }, Open ]], Cell[CellGroupData[{ Cell[11798, 381, 39, 0, 30, "Input"], Cell[11840, 383, 827, 11, 143, "Output"] }, Open ]], Cell[CellGroupData[{ Cell[12704, 399, 46, 0, 30, "Input"], Cell[12753, 401, 140, 3, 29, "Output"] }, Open ]] }, Closed]] } ] *) (*********************************************************************** End of Mathematica Notebook file. ***********************************************************************)