<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, How can I calculate this product?</title>
    <link>http://www.mapleprimes.com/questions/97433-How-Can-I-Calculate-This-Product</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 10:55:26 GMT</lastBuildDate>
    <pubDate>Tue, 09 Jun 2026 10:55:26 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, How can I calculate this product?</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, How can I calculate this product?</title>
      <link>http://www.mapleprimes.com/questions/97433-How-Can-I-Calculate-This-Product</link>
    </image>
    <item>
      <title>you can use product or palettes</title>
      <link>http://www.mapleprimes.com/questions/97433-How-Can-I-Calculate-This-Product?ref=Feed:MaplePrimes:How can I calculate this product?:Comments#answer97434</link>
      <itunes:summary>&lt;p&gt;I think it's simple,&lt;/p&gt;
&lt;p&gt;product(i^k, k = 1 .. 2010)&lt;/p&gt;
&lt;p&gt;yield which you want.&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;I think it's simple,&lt;/p&gt;
&lt;p&gt;product(i^k, k = 1 .. 2010)&lt;/p&gt;
&lt;p&gt;yield which you want.&lt;/p&gt;</description>
      <guid>97434</guid>
      <pubDate>Sun, 03 Oct 2010 18:41:02 Z</pubDate>
      <itunes:author>fantasy</itunes:author>
      <author>fantasy</author>
    </item>
    <item>
      <title>homework</title>
      <link>http://www.mapleprimes.com/questions/97433-How-Can-I-Calculate-This-Product?ref=Feed:MaplePrimes:How can I calculate this product?:Comments#answer97435</link>
      <itunes:summary>&lt;p&gt;This looks like homework.&lt;/p&gt;
&lt;p&gt;Since Maple can just give you the answer (which really won't help you understand how it works) then maybe it's ok to explain.&lt;/p&gt;
&lt;p&gt;Ask youself why this formula works:&lt;/p&gt;
&lt;pre&gt;&amp;gt; product(i^k,k=1..N);
                  /           2              \
                  \1/2 (N + 1)  - 1/2 N - 1/2/
                 i                            
&lt;/pre&gt;
&lt;p&gt;Let's simplify that a bit, to make it more legible.&lt;/p&gt;
&lt;pre&gt;&amp;gt; simplify(%,power,size);
                         (1/2 N (N + 1))
                        i               
&lt;/pre&gt;
&lt;p&gt;Do you understand that you can add exponents when taking a product? I think it's likely that you are supposed to use the formula for &lt;strong&gt;sum(k,k=1..N)&lt;/strong&gt;. Have you studied that?&lt;/p&gt;
&lt;pre&gt;&amp;gt; simplify(sum(k,k=1..N),size);
                          1          
                          - N (N + 1)
                          2          
&lt;/pre&gt;
&lt;p&gt;Once you know that, and if you know how to combine exponents of products using addition, you can get here.&lt;/p&gt;
&lt;pre&gt;&amp;gt; i^((2010*(2010+1))/2);
                             2021055
                            i       

&amp;gt; i^sum(k,k=1..2010);
                             2021055
                            i       

&amp;gt; product(i^k,k=1..2010);
                             2021055
                            i       
&lt;/pre&gt;
&lt;p&gt;Does that make sense to you?&lt;/p&gt;
&lt;p&gt;(For the Maple purists, yes, `add` and `mul` could be used instead of `sum` and `product` in those last two results involving a finite number of terms. But using so many command names might make it more confusing.)&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;This looks like homework.&lt;/p&gt;
&lt;p&gt;Since Maple can just give you the answer (which really won't help you understand how it works) then maybe it's ok to explain.&lt;/p&gt;
&lt;p&gt;Ask youself why this formula works:&lt;/p&gt;
&lt;pre&gt;&amp;gt; product(i^k,k=1..N);
                  /           2              \
                  \1/2 (N + 1)  - 1/2 N - 1/2/
                 i                            
&lt;/pre&gt;
&lt;p&gt;Let's simplify that a bit, to make it more legible.&lt;/p&gt;
&lt;pre&gt;&amp;gt; simplify(%,power,size);
                         (1/2 N (N + 1))
                        i               
&lt;/pre&gt;
&lt;p&gt;Do you understand that you can add exponents when taking a product? I think it's likely that you are supposed to use the formula for &lt;strong&gt;sum(k,k=1..N)&lt;/strong&gt;. Have you studied that?&lt;/p&gt;
&lt;pre&gt;&amp;gt; simplify(sum(k,k=1..N),size);
                          1          
                          - N (N + 1)
                          2          
&lt;/pre&gt;
&lt;p&gt;Once you know that, and if you know how to combine exponents of products using addition, you can get here.&lt;/p&gt;
&lt;pre&gt;&amp;gt; i^((2010*(2010+1))/2);
                             2021055
                            i       

&amp;gt; i^sum(k,k=1..2010);
                             2021055
                            i       

&amp;gt; product(i^k,k=1..2010);
                             2021055
                            i       
&lt;/pre&gt;
&lt;p&gt;Does that make sense to you?&lt;/p&gt;
&lt;p&gt;(For the Maple purists, yes, `add` and `mul` could be used instead of `sum` and `product` in those last two results involving a finite number of terms. But using so many command names might make it more confusing.)&lt;/p&gt;</description>
      <guid>97435</guid>
      <pubDate>Sun, 03 Oct 2010 19:03:22 Z</pubDate>
      <itunes:author>pagan</itunes:author>
      <author>pagan</author>
    </item>
    <item>
      <title>i</title>
      <link>http://www.mapleprimes.com/questions/97433-How-Can-I-Calculate-This-Product?ref=Feed:MaplePrimes:How can I calculate this product?:Comments#comment97458</link>
      <itunes:summary>&lt;p&gt;I have only one thing to add to Pagan's excellent answer: if your&lt;strong&gt; i &lt;/strong&gt;is supposed to be a square root of -1, in Maple that is &lt;strong&gt;I&lt;/strong&gt; rather than&lt;strong&gt; i&lt;/strong&gt;.&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;I have only one thing to add to Pagan's excellent answer: if your&lt;strong&gt; i &lt;/strong&gt;is supposed to be a square root of -1, in Maple that is &lt;strong&gt;I&lt;/strong&gt; rather than&lt;strong&gt; i&lt;/strong&gt;.&lt;/p&gt;</description>
      <guid>97458</guid>
      <pubDate>Mon, 04 Oct 2010 09:07:49 Z</pubDate>
      <itunes:author>Robert Israel</itunes:author>
      <author>Robert Israel</author>
    </item>
  </channel>
</rss>