<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, More Code Problems, Help Me Write</title>
    <link>http://www.mapleprimes.com/questions/142935-More-Code-Problems-Help-Me-Write</link>
    <language>en-us</language>
    <copyright>2026 Maplesoft, A Division of Waterloo Maple Inc.</copyright>
    <generator>Maplesoft Document System</generator>
    <lastBuildDate>Tue, 09 Jun 2026 07:28:35 GMT</lastBuildDate>
    <pubDate>Tue, 09 Jun 2026 07:28:35 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, More Code Problems, Help Me Write</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, More Code Problems, Help Me Write</title>
      <link>http://www.mapleprimes.com/questions/142935-More-Code-Problems-Help-Me-Write</link>
    </image>
    <item>
      <title>Choosing without replacement (hypergeometric)</title>
      <link>http://www.mapleprimes.com/questions/142935-More-Code-Problems-Help-Me-Write?ref=Feed:MaplePrimes:More Code Problems, Help Me Write:Comments#answer143028</link>
      <itunes:summary>&lt;p&gt;Your computed answers are correct. It would just be nice to put them togther in a clear way. Indeed, we can do that in such a way that the solution reads almost directly as the statement of the problem.&lt;/p&gt;
&lt;p&gt;I see from your "(9 C 3)" that you like to put C, the choose-combinations function, between its arguments. We can do that, but the Maple syntax requires that we make it &lt;strong&gt;&amp;amp;C&lt;/strong&gt; if the function name goes between its arguments. The "choose" function in Maple is called &lt;strong&gt;binomial&lt;/strong&gt;, which we'll rename &lt;strong&gt;&amp;amp;C&lt;/strong&gt;. (Don't confuse this with the binomial probability distribution that was used for your heads-and-tails problem, which is essentially a "with replacement" problem. This problem uses what is technically called the hypergeometric distribution. They both use make use of the "choose" function.)&lt;/p&gt;
&lt;p&gt;(Lines in &lt;strong&gt;bold&lt;/strong&gt; are the input you give to Maple. Lines in &lt;em&gt;italics&lt;/em&gt; are Maple's respones. (Usually, I suppress the response by ending a Maple input line with a colon.) Lines in normal typeface are my comments.)&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;restart;&lt;/strong&gt;&lt;br&gt;&lt;strong&gt;`&amp;amp;C`:= binomial:&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;The backquotes (&lt;strong&gt;``&lt;/strong&gt;) are required when a name with special characters is being assigned to, or when it is otherwise being used &lt;em&gt;as a name&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;Input the problem data:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;wht, tn, pnk, pur, yel, orn, gr:= 19, 10, 7, 3, 5, 2, 6:&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Check the total to make sure:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;total:= `+`(%);&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;total := 52&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;(Note the backquotes around the &lt;strong&gt;+&lt;/strong&gt;.) The percent sign &lt;strong&gt;%&lt;/strong&gt; is used to represent the output of the last command.&lt;/p&gt;
&lt;p&gt;Now here's your problem A. Read the command aloud to yourself like this: "From the whites, choose 3; from the nonwhites, choose the rest of the 9. In all, we've chosen 9 from the total."&lt;em&gt;&lt;br&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;(wht &amp;amp;C 3) * ((total-wht) &amp;amp;C (9-3)) / (total &amp;amp;C 9);&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;102486/351325&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Get a decimal answer with the &lt;strong&gt;evalf&lt;/strong&gt; command.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;evalf(%);&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;.291712801537038&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Which agrees with the answer that you got. (Notice that &lt;strong&gt;%&lt;/strong&gt; again.)&lt;/p&gt;
&lt;p&gt;Now for your problem B: In the command below, the lengthy factor with all the used colors being subtracted from the total is just 1. I only include it for didactic completeness.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;(wht &amp;amp;C 3) * (tn &amp;amp;C 2) * (pnk &amp;amp;C 1) * (yel &amp;amp;C 1) * (gr &amp;amp;C 2) &lt;/strong&gt;&lt;br&gt;&lt;strong&gt;* ((total-(wht+tn+pnk+yel+grn)) &amp;amp;C (9-(3+2+1+1+2))) / (total &amp;amp;C 9);&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;7695/1236664&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;evalf(%);&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;0.622238538519760e-2&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;which agrees with the answer that you got. Note that the number is presented in "scientific notation".&lt;em&gt;&lt;br&gt;&lt;/em&gt;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Your computed answers are correct. It would just be nice to put them togther in a clear way. Indeed, we can do that in such a way that the solution reads almost directly as the statement of the problem.&lt;/p&gt;
&lt;p&gt;I see from your "(9 C 3)" that you like to put C, the choose-combinations function, between its arguments. We can do that, but the Maple syntax requires that we make it &lt;strong&gt;&amp;amp;C&lt;/strong&gt; if the function name goes between its arguments. The "choose" function in Maple is called &lt;strong&gt;binomial&lt;/strong&gt;, which we'll rename &lt;strong&gt;&amp;amp;C&lt;/strong&gt;. (Don't confuse this with the binomial probability distribution that was used for your heads-and-tails problem, which is essentially a "with replacement" problem. This problem uses what is technically called the hypergeometric distribution. They both use make use of the "choose" function.)&lt;/p&gt;
&lt;p&gt;(Lines in &lt;strong&gt;bold&lt;/strong&gt; are the input you give to Maple. Lines in &lt;em&gt;italics&lt;/em&gt; are Maple's respones. (Usually, I suppress the response by ending a Maple input line with a colon.) Lines in normal typeface are my comments.)&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;restart;&lt;/strong&gt;&lt;br&gt;&lt;strong&gt;`&amp;amp;C`:= binomial:&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;The backquotes (&lt;strong&gt;``&lt;/strong&gt;) are required when a name with special characters is being assigned to, or when it is otherwise being used &lt;em&gt;as a name&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;Input the problem data:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;wht, tn, pnk, pur, yel, orn, gr:= 19, 10, 7, 3, 5, 2, 6:&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Check the total to make sure:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;total:= `+`(%);&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;total := 52&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;(Note the backquotes around the &lt;strong&gt;+&lt;/strong&gt;.) The percent sign &lt;strong&gt;%&lt;/strong&gt; is used to represent the output of the last command.&lt;/p&gt;
&lt;p&gt;Now here's your problem A. Read the command aloud to yourself like this: "From the whites, choose 3; from the nonwhites, choose the rest of the 9. In all, we've chosen 9 from the total."&lt;em&gt;&lt;br&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;(wht &amp;amp;C 3) * ((total-wht) &amp;amp;C (9-3)) / (total &amp;amp;C 9);&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;102486/351325&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Get a decimal answer with the &lt;strong&gt;evalf&lt;/strong&gt; command.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;evalf(%);&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;.291712801537038&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Which agrees with the answer that you got. (Notice that &lt;strong&gt;%&lt;/strong&gt; again.)&lt;/p&gt;
&lt;p&gt;Now for your problem B: In the command below, the lengthy factor with all the used colors being subtracted from the total is just 1. I only include it for didactic completeness.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;(wht &amp;amp;C 3) * (tn &amp;amp;C 2) * (pnk &amp;amp;C 1) * (yel &amp;amp;C 1) * (gr &amp;amp;C 2) &lt;/strong&gt;&lt;br&gt;&lt;strong&gt;* ((total-(wht+tn+pnk+yel+grn)) &amp;amp;C (9-(3+2+1+1+2))) / (total &amp;amp;C 9);&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;7695/1236664&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;evalf(%);&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;0.622238538519760e-2&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;which agrees with the answer that you got. Note that the number is presented in "scientific notation".&lt;em&gt;&lt;br&gt;&lt;/em&gt;&lt;/p&gt;</description>
      <guid>143028</guid>
      <pubDate>Sun, 03 Feb 2013 23:04:55 Z</pubDate>
      <itunes:author>Carl Love</itunes:author>
      <author>Carl Love</author>
    </item>
    <item>
      <title>Rehabilitated solution</title>
      <link>http://www.mapleprimes.com/questions/142935-More-Code-Problems-Help-Me-Write?ref=Feed:MaplePrimes:More Code Problems, Help Me Write:Comments#answer143036</link>
      <itunes:summary>&lt;p&gt;We can treat Omega as a discrete probability space (for example, see 3.3 Discrete probability space in B. R. Bhat, Modern Probability Theory, accessible on &lt;a href="http://books.google.com.ua/books?id=ysv3Jycux04C&amp;amp;pg=PA74&amp;amp;dq=discrete+probability+space&amp;amp;hl=uk&amp;amp;sa=X&amp;amp;ei=zMsOUZuCO4fAhAf_jICYDw&amp;amp;ved=0CDAQ6AEwAA#v=onepage&amp;amp;q=discrete%20probability%20space&amp;amp;f=false"&gt;http://books.google.com.ua/books?id=ysv3Jycux04C&amp;amp;pg=PA74&amp;amp;dq=discrete+probability+space&amp;amp;hl=uk&amp;amp;sa=X&amp;amp;ei=zMsOUZuCO4fAhAf_jICYDw&amp;amp;ved=0CDAQ6AEwAA#v=onepage&amp;amp;q=discrete%20probability%20space&amp;amp;f=false&lt;/a&gt; ). Then&lt;/p&gt;
&lt;p&gt;&amp;gt; restart; with(combinat): Omega := choose([`$`(w, 19), `$`(t, 10), `$`(p, 7), `$`(pur, 3), `$`(y, 5), `$`(o, 2), `$`(g, 6)], 9):&lt;br&gt;&amp;gt; nops(Omega);&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3529&lt;br&gt;&amp;gt; with(ListTools): S := map(proc (c) options operator, arrow; [c, binomial(19, Occurrences(w, c))*binomial(10, Occurrences(t, c))*binomial(7, Occurrences(p, c))*binomial(3, Occurrences(pur, c))*binomial(5, Occurrences(y, c))*binomial(2, Occurrences(o, c))*binomial(6, Occurrences(g, c))/binomial(52, 9)] end proc, Omega):&lt;/p&gt;
&lt;p&gt;We create a dicrete probability space S, i.e.[ [atom, probablity(atom)]: atom in Omega]&lt;br&gt;&amp;gt; A := select(c -&amp;gt; Occurrences(w, c[1]) = 3, S);&lt;/p&gt;
&lt;p&gt;&amp;gt; A[1];&lt;br&gt;&lt;img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAZoAAAAkCAIAAAA/02uFAAADcklEQVR4nO2d2ZWDIBRALcES0oYN0YYdUA7F0Izz4cbyUBMTdXj3fs0wwGEUbliephkAAKqgubsBAADfAZ0BQCXIOmvbtu/7vu+vbQzAKcZO27bt3Q2Be5B19nq9Lm4H/F+87ZqRzvopzZkmxLgL20PvVQs6g5M4s1pswlvrgl+6LMNPofeqBZ3BOZzJp17er/q63Gb0Xr2gMzjDstAsLSevtxm9Vy/oDL6AM9HO2coNNqP36gWdwXfwtsunaHfYjN6rF3QG3yI/E7jFZvRevaAz+BbZocA9NqP36uUNnRFb+0CeEzj6lLkZOlPMGzqjlzyW227NGkH7kH2zYaCjKgad1QC3JoSroRZ0VgPcmhCuhlpO6yx5OE8MPqot57TECp9Q7Kwf0wv1/rYIAziEq6GWUzrztluHmxh3VHfOKWPoF2fL20W/K8IADuFqqOWMzuJpwtbgry/nMDjTTJMl0y2lttT0wyK7A7ipmuSfRWdq+ZrO5nEnUl/ORXbOWu/MeLAnPY19SREGcAhXQy3n9s6Cc/qdM/k6cxpjjJuds2emHxZhAIdwNdRy8ihgfzxWm9Pbbg62Gh24X+5nRRjAIVwNtZw/CogmMuOpoPACrOpyhjtYScDoNUVCxltTrkQX6Ewtn+ss3FoaLVA6d6sv5wGuKTIR3JoDlSyRKMJbZAthI1nQSJAe+7MceZLWUWrG/JESJ8upIuhMLZ/qbN6XjlKMC9ZG9ebc45oiIeOtOVSJt92UxZl4LjfpRVTWluQOVJHXUWzG8pkSmVJOLYDO1PL5I+hptOlmSENlOZ/Du4+ge+cWpwgTqfw0N7f8WtxYl9tFOBDO6yg2Iyy9/iynlkBnauEFQYpxZs9F08GqoHdvjfXSZCnTTbmOvBlR4aVyObUIvVct6Ewvuc1SFznTNMY4N6TLxfltQAd0VqxDaEYextxNzsxTy9B71YLOtLLuXgXELorNsS4Z12CWfZ2V6hCbgc7gFOhMJ6LMtnW2/JbuMTbpjK6ss9RFaTNYbMIZ0JlGhG/6nf+QLzZndUgeObrYlOsQX2C7d5zJUQAUQWfqiGZEyUMQ0lHAssIsBGAcOQoQ6ig0g0AN+Bx0potsoRhvXAkhKksJySKJXQpV5HVsNIMwWvgYdAa1Qe9VCzqD2qD3qkXWGd9BB/+R53xNH9zCHwvWsUVdw6NxAAAAAElFTkSuQmCC" alt=""&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;At last, we count the probability of A:&lt;/p&gt;
&lt;p&gt;&amp;gt; sum(A[j][2], j = 1 .. nops(A));&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 102486/351325&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;br&gt;&amp;gt; evalf(%);&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.291712801&lt;/p&gt;
&lt;p&gt;&lt;a href="/view.aspx?sf=143036/453062/DPS.mw"&gt;DPS.mw&lt;/a&gt;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;We can treat Omega as a discrete probability space (for example, see 3.3 Discrete probability space in B. R. Bhat, Modern Probability Theory, accessible on &lt;a href="http://books.google.com.ua/books?id=ysv3Jycux04C&amp;amp;pg=PA74&amp;amp;dq=discrete+probability+space&amp;amp;hl=uk&amp;amp;sa=X&amp;amp;ei=zMsOUZuCO4fAhAf_jICYDw&amp;amp;ved=0CDAQ6AEwAA#v=onepage&amp;amp;q=discrete%20probability%20space&amp;amp;f=false"&gt;http://books.google.com.ua/books?id=ysv3Jycux04C&amp;amp;pg=PA74&amp;amp;dq=discrete+probability+space&amp;amp;hl=uk&amp;amp;sa=X&amp;amp;ei=zMsOUZuCO4fAhAf_jICYDw&amp;amp;ved=0CDAQ6AEwAA#v=onepage&amp;amp;q=discrete%20probability%20space&amp;amp;f=false&lt;/a&gt; ). Then&lt;/p&gt;
&lt;p&gt;&amp;gt; restart; with(combinat): Omega := choose([`$`(w, 19), `$`(t, 10), `$`(p, 7), `$`(pur, 3), `$`(y, 5), `$`(o, 2), `$`(g, 6)], 9):&lt;br&gt;&amp;gt; nops(Omega);&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3529&lt;br&gt;&amp;gt; with(ListTools): S := map(proc (c) options operator, arrow; [c, binomial(19, Occurrences(w, c))*binomial(10, Occurrences(t, c))*binomial(7, Occurrences(p, c))*binomial(3, Occurrences(pur, c))*binomial(5, Occurrences(y, c))*binomial(2, Occurrences(o, c))*binomial(6, Occurrences(g, c))/binomial(52, 9)] end proc, Omega):&lt;/p&gt;
&lt;p&gt;We create a dicrete probability space S, i.e.[ [atom, probablity(atom)]: atom in Omega]&lt;br&gt;&amp;gt; A := select(c -&amp;gt; Occurrences(w, c[1]) = 3, S);&lt;/p&gt;
&lt;p&gt;&amp;gt; A[1];&lt;br&gt;&lt;img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAZoAAAAkCAIAAAA/02uFAAADcklEQVR4nO2d2ZWDIBRALcES0oYN0YYdUA7F0Izz4cbyUBMTdXj3fs0wwGEUbliephkAAKqgubsBAADfAZ0BQCXIOmvbtu/7vu+vbQzAKcZO27bt3Q2Be5B19nq9Lm4H/F+87ZqRzvopzZkmxLgL20PvVQs6g5M4s1pswlvrgl+6LMNPofeqBZ3BOZzJp17er/q63Gb0Xr2gMzjDstAsLSevtxm9Vy/oDL6AM9HO2coNNqP36gWdwXfwtsunaHfYjN6rF3QG3yI/E7jFZvRevaAz+BbZocA9NqP36uUNnRFb+0CeEzj6lLkZOlPMGzqjlzyW227NGkH7kH2zYaCjKgad1QC3JoSroRZ0VgPcmhCuhlpO6yx5OE8MPqot57TECp9Q7Kwf0wv1/rYIAziEq6GWUzrztluHmxh3VHfOKWPoF2fL20W/K8IADuFqqOWMzuJpwtbgry/nMDjTTJMl0y2lttT0wyK7A7ipmuSfRWdq+ZrO5nEnUl/ORXbOWu/MeLAnPY19SREGcAhXQy3n9s6Cc/qdM/k6cxpjjJuds2emHxZhAIdwNdRy8ihgfzxWm9Pbbg62Gh24X+5nRRjAIVwNtZw/CogmMuOpoPACrOpyhjtYScDoNUVCxltTrkQX6Ewtn+ss3FoaLVA6d6sv5wGuKTIR3JoDlSyRKMJbZAthI1nQSJAe+7MceZLWUWrG/JESJ8upIuhMLZ/qbN6XjlKMC9ZG9ebc45oiIeOtOVSJt92UxZl4LjfpRVTWluQOVJHXUWzG8pkSmVJOLYDO1PL5I+hptOlmSENlOZ/Du4+ge+cWpwgTqfw0N7f8WtxYl9tFOBDO6yg2Iyy9/iynlkBnauEFQYpxZs9F08GqoHdvjfXSZCnTTbmOvBlR4aVyObUIvVct6Ewvuc1SFznTNMY4N6TLxfltQAd0VqxDaEYextxNzsxTy9B71YLOtLLuXgXELorNsS4Z12CWfZ2V6hCbgc7gFOhMJ6LMtnW2/JbuMTbpjK6ss9RFaTNYbMIZ0JlGhG/6nf+QLzZndUgeObrYlOsQX2C7d5zJUQAUQWfqiGZEyUMQ0lHAssIsBGAcOQoQ6ig0g0AN+Bx0potsoRhvXAkhKksJySKJXQpV5HVsNIMwWvgYdAa1Qe9VCzqD2qD3qkXWGd9BB/+R53xNH9zCHwvWsUVdw6NxAAAAAElFTkSuQmCC" alt=""&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;At last, we count the probability of A:&lt;/p&gt;
&lt;p&gt;&amp;gt; sum(A[j][2], j = 1 .. nops(A));&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 102486/351325&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;br&gt;&amp;gt; evalf(%);&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.291712801&lt;/p&gt;
&lt;p&gt;&lt;a href="/view.aspx?sf=143036/453062/DPS.mw"&gt;DPS.mw&lt;/a&gt;&lt;/p&gt;</description>
      <guid>143036</guid>
      <pubDate>Mon, 04 Feb 2013 02:05:47 Z</pubDate>
      <itunes:author>Markiyan Hirnyk</itunes:author>
      <author>Markiyan Hirnyk</author>
    </item>
    <item>
      <title>Rehabilitated</title>
      <link>http://www.mapleprimes.com/questions/142935-More-Code-Problems-Help-Me-Write?ref=Feed:MaplePrimes:More Code Problems, Help Me Write:Comments#comment143039</link>
      <itunes:summary>&lt;p&gt;I'd say rehabilitated rather than exonerated. Nonetheless, it's an excellent rehabilitation, and an interesting technique. I vote up. But perhaps not a comphrehendable explanation for someone's second session with Maple.&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;I'd say rehabilitated rather than exonerated. Nonetheless, it's an excellent rehabilitation, and an interesting technique. I vote up. But perhaps not a comphrehendable explanation for someone's second session with Maple.&lt;/p&gt;</description>
      <guid>143039</guid>
      <pubDate>Mon, 04 Feb 2013 04:58:02 Z</pubDate>
      <itunes:author>Carl Love</itunes:author>
      <author>Carl Love</author>
    </item>
    <item>
      <title>Thank you</title>
      <link>http://www.mapleprimes.com/questions/142935-More-Code-Problems-Help-Me-Write?ref=Feed:MaplePrimes:More Code Problems, Help Me Write:Comments#comment143048</link>
      <itunes:summary>&lt;p&gt;&lt;a href="http://www.mapleprimes.com/questions/142935-More-Code-Problems-HElp-Me-Write#comment143039"&gt;@Carl Love&lt;/a&gt; for the interest in my answer. I changed the heading up to your suggestion. Criticism should be constructive. What do you propose&amp;nbsp; in order to explain it better? Note that I give a reference to a textbook.&lt;/p&gt;
&lt;p&gt;PS. BTW, there is no feedback from the questioner.&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;&lt;a href="http://www.mapleprimes.com/questions/142935-More-Code-Problems-HElp-Me-Write#comment143039"&gt;@Carl Love&lt;/a&gt; for the interest in my answer. I changed the heading up to your suggestion. Criticism should be constructive. What do you propose&amp;nbsp; in order to explain it better? Note that I give a reference to a textbook.&lt;/p&gt;
&lt;p&gt;PS. BTW, there is no feedback from the questioner.&lt;/p&gt;</description>
      <guid>143048</guid>
      <pubDate>Mon, 04 Feb 2013 10:55:54 Z</pubDate>
      <itunes:author>Markiyan Hirnyk</itunes:author>
      <author>Markiyan Hirnyk</author>
    </item>
  </channel>
</rss>