<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - Questions and Posts tagged with product</title>
    <link>http://www.mapleprimes.com/tags/product</link>
    <language>en-us</language>
    <copyright>2012 Maplesoft, A Division of Waterloo Maple Inc.</copyright>
    <generator>Maplesoft Document System</generator>
    <lastBuildDate>Fri, 25 May 2012 16:19:03 GMT</lastBuildDate>
    <pubDate>Fri, 25 May 2012 16:19:03 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The most recent questions and posts on MaplePrimes tagged with product</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - Questions and Posts tagged with product</title>
      <link>http://www.mapleprimes.com/tags/product</link>
    </image>
    <item>
      <title>product versus mul</title>
      <link>http://www.mapleprimes.com/questions/133457-Product-Versus-Mul?ref=Feed:MaplePrimes:Tagged With product</link>
      <itunes:summary>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;Just a small question: what's the difference between writing&lt;/p&gt;
&lt;p&gt;&lt;span class="Apple-style-span" style="white-space: pre;"&gt; product( (2*i-1) mod 3 + 1, i=1..10 )&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="Apple-style-span" style="white-space: pre;"&gt;which incorrectly gives 105411381075, and writing&lt;/span&gt;&lt;/p&gt;
&lt;pre&gt;mul( (2*i-1) mod 3 + 1, i=1..10 )&lt;/pre&gt;
&lt;p&gt;which correctly gives 432...&lt;/p&gt;
&lt;p&gt;And what's the reasoning behind this?&lt;/p&gt;
&lt;p&gt;-- Regards,&lt;/p&gt;
&lt;p&gt;Franky&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;Just a small question: what's the difference between writing&lt;/p&gt;
&lt;p&gt;&lt;span class="Apple-style-span" style="white-space: pre;"&gt; product( (2*i-1) mod 3 + 1, i=1..10 )&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="Apple-style-span" style="white-space: pre;"&gt;which incorrectly gives 105411381075, and writing&lt;/span&gt;&lt;/p&gt;
&lt;pre&gt;mul( (2*i-1) mod 3 + 1, i=1..10 )&lt;/pre&gt;
&lt;p&gt;which correctly gives 432...&lt;/p&gt;
&lt;p&gt;And what's the reasoning behind this?&lt;/p&gt;
&lt;p&gt;-- Regards,&lt;/p&gt;
&lt;p&gt;Franky&lt;/p&gt;</description>
      <guid>133457</guid>
      <pubDate>Thu, 26 Apr 2012 13:49:08 Z</pubDate>
      <itunes:author>fbackelj</itunes:author>
      <author>fbackelj</author>
    </item>
    <item>
      <title>Can we optimize Matrix-Vector operations with the LinearAlgebra package or is O(n^3) ~ O(n^2)</title>
      <link>http://www.mapleprimes.com/questions/131248-Can-We-Optimize-MatrixVector-Operations?ref=Feed:MaplePrimes:Tagged With product</link>
      <itunes:summary>&lt;p&gt;The following example shows some typical computations with Householder- or reflextion matrices. Why are the second and third variants only slightly better than the first one? Could we get a real speedup without rtable/NAG/BLAS/etc. tricks?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;$ maple15&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; |\^/|&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Maple 15 (X86 64 LINUX)&lt;br&gt;._|\|&amp;nbsp;&amp;nbsp; |/|_. Copyright (c) Maplesoft, a division of Waterloo Maple Inc. 2011&lt;br&gt;&amp;nbsp;\&amp;nbsp; MAPLE&amp;nbsp; /&amp;nbsp; All...</itunes:summary>
      <description>&lt;p&gt;The following example shows some typical computations with Householder- or reflextion matrices. Why are the second and third variants only slightly better than the first one? Could we get a real speedup without rtable/NAG/BLAS/etc. tricks?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;$ maple15&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; |\^/|&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Maple 15 (X86 64 LINUX)&lt;br&gt;._|\|&amp;nbsp;&amp;nbsp; |/|_. Copyright (c) Maplesoft, a division of Waterloo Maple Inc. 2011&lt;br&gt;&amp;nbsp;\&amp;nbsp; MAPLE&amp;nbsp; /&amp;nbsp; All...</description>
      <guid>131248</guid>
      <pubDate>Mon, 27 Feb 2012 18:31:01 Z</pubDate>
      <itunes:author>viraghj</itunes:author>
      <author>viraghj</author>
    </item>
    <item>
      <title>Matrix Integration</title>
      <link>http://www.mapleprimes.com/questions/130673-Matrix-Integration?ref=Feed:MaplePrimes:Tagged With product</link>
      <itunes:summary>&lt;p&gt;Hi, was wondering if there is a way that i can integrate each element in my matrix?&lt;/p&gt;
&lt;p&gt;N0:=zeta-&amp;gt;Matrix([[-2*(1-zeta)*(zera-1/2)],[4*zeta*(1-zeta)],[(2*zeta)*(zeta-1/2)]])^%T&amp;nbsp;&amp;nbsp; ###1x3 matrix&lt;/p&gt;
&lt;p&gt;N1:=zeta-&amp;gt;N0(zeta)^%T ###3x1 matrix&lt;/p&gt;
&lt;p&gt;dot product of N0 and N1 is a 3x3 matrix&lt;/p&gt;
&lt;p&gt;Can in integrate the 3x3 matrix? each of the element by zeta from 0 to 1.&lt;/p&gt;
&lt;p&gt;Please advice. Many thanks. =D&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Hi, was wondering if there is a way that i can integrate each element in my matrix?&lt;/p&gt;
&lt;p&gt;N0:=zeta-&amp;gt;Matrix([[-2*(1-zeta)*(zera-1/2)],[4*zeta*(1-zeta)],[(2*zeta)*(zeta-1/2)]])^%T&amp;nbsp;&amp;nbsp; ###1x3 matrix&lt;/p&gt;
&lt;p&gt;N1:=zeta-&amp;gt;N0(zeta)^%T ###3x1 matrix&lt;/p&gt;
&lt;p&gt;dot product of N0 and N1 is a 3x3 matrix&lt;/p&gt;
&lt;p&gt;Can in integrate the 3x3 matrix? each of the element by zeta from 0 to 1.&lt;/p&gt;
&lt;p&gt;Please advice. Many thanks. =D&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description>
      <guid>130673</guid>
      <pubDate>Tue, 14 Feb 2012 16:36:47 Z</pubDate>
      <itunes:author>serena88</itunes:author>
      <author>serena88</author>
    </item>
    <item>
      <title>Dot product of real vectors</title>
      <link>http://www.mapleprimes.com/posts/128054-Dot-Product-Of-Real-Vectors?ref=Feed:MaplePrimes:Tagged With product</link>
      <itunes:summary>&lt;p&gt;The "." notation for the dot product of Vectors is very convenient and intuitive.&amp;nbsp; For example:&lt;br&gt;&lt;br&gt;&amp;gt; &amp;lt;1,2,3&amp;gt; . &amp;lt;1,1,1&amp;gt;;&lt;/p&gt;
&lt;p&gt;6&lt;br&gt;&lt;br&gt;One sometimes annoying feature of it, however, is that by default Maple is using a dot product (suitable for Vectors with complex scalars) that is conjugate-linear in the first argument.&amp;nbsp; But let's say you will only be working with real scalars.&amp;nbsp; There's no problem if your Vectors have numeric entries, but...</itunes:summary>
      <description>&lt;p&gt;The "." notation for the dot product of Vectors is very convenient and intuitive.&amp;nbsp; For example:&lt;br&gt;&lt;br&gt;&amp;gt; &amp;lt;1,2,3&amp;gt; . &amp;lt;1,1,1&amp;gt;;&lt;/p&gt;
&lt;p&gt;6&lt;br&gt;&lt;br&gt;One sometimes annoying feature of it, however, is that by default Maple is using a dot product (suitable for Vectors with complex scalars) that is conjugate-linear in the first argument.&amp;nbsp; But let's say you will only be working with real scalars.&amp;nbsp; There's no problem if your Vectors have numeric entries, but...</description>
      <guid>128054</guid>
      <pubDate>Thu, 24 Nov 2011 04:18:54 Z</pubDate>
      <itunes:author>Robert Israel</itunes:author>
      <author>Robert Israel</author>
    </item>
    <item>
      <title>How can I calculate this product?</title>
      <link>http://www.mapleprimes.com/questions/127393-How-Can-I-Calculate-This-Product?ref=Feed:MaplePrimes:Tagged With product</link>
      <itunes:summary>&lt;p&gt;&lt;img class="math" src="http://www.mapleprimes.com/MapleImage.ashx?f=40bdd233e92679855daca310811cd45d.gif" alt="m(x[i]) = product(x[i]-x[j], j = 1 .. N)"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;img class="math" src="http://www.mapleprimes.com/MapleImage.ashx?f=8c3dd0b2046a54e3a091e4eb4fcf70b8.gif" alt="i &amp;lt;&amp;gt; j"&gt;&lt;/p&gt;
&lt;p&gt;ex:&lt;/p&gt;
&lt;p&gt;for N=4&lt;/p&gt;
&lt;p&gt;</itunes:summary>
      <description>&lt;p&gt;&lt;img class="math" src="http://www.mapleprimes.com/MapleImage.ashx?f=40bdd233e92679855daca310811cd45d.gif" alt="m(x[i]) = product(x[i]-x[j], j = 1 .. N)"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;img class="math" src="http://www.mapleprimes.com/MapleImage.ashx?f=8c3dd0b2046a54e3a091e4eb4fcf70b8.gif" alt="i &amp;lt;&amp;gt; j"&gt;&lt;/p&gt;
&lt;p&gt;ex:&lt;/p&gt;
&lt;p&gt;for N=4&lt;/p&gt;
&lt;p&gt;</description>
      <guid>127393</guid>
      <pubDate>Fri, 04 Nov 2011 20:20:46 Z</pubDate>
      <itunes:author>aryan_ams</itunes:author>
      <author>aryan_ams</author>
    </item>
    <item>
      <title>Product of lists</title>
      <link>http://www.mapleprimes.com/questions/126266-Product-Of-Lists?ref=Feed:MaplePrimes:Tagged With product</link>
      <itunes:summary>&lt;p&gt;Hi there,&lt;/p&gt;
&lt;p&gt;I am working on a Maple sheet where I've been doing all the calculations with units. The problem is that I now want to get the product of a "seq" "R_DC_total-sek" and multiply it by the sequence R_AC_total-sek. But how do I do that? I've tried changing them into lists, but since one of the lists have units and the other one do not, Maple does not multiply the two lists, but just prints them.&lt;/p&gt;
&lt;p&gt;I've uploaded the sheet here:&lt;/p&gt;
&lt;p&gt;http://www.2shared.com/file/4sUmrdn0/EFD_N87_10_5_3...</itunes:summary>
      <description>&lt;p&gt;Hi there,&lt;/p&gt;
&lt;p&gt;I am working on a Maple sheet where I've been doing all the calculations with units. The problem is that I now want to get the product of a "seq" "R_DC_total-sek" and multiply it by the sequence R_AC_total-sek. But how do I do that? I've tried changing them into lists, but since one of the lists have units and the other one do not, Maple does not multiply the two lists, but just prints them.&lt;/p&gt;
&lt;p&gt;I've uploaded the sheet here:&lt;/p&gt;
&lt;p&gt;http://www.2shared.com/file/4sUmrdn0/EFD_N87_10_5_3...</description>
      <guid>126266</guid>
      <pubDate>Wed, 05 Oct 2011 07:30:18 Z</pubDate>
      <itunes:author>Alaza</itunes:author>
      <author>Alaza</author>
    </item>
    <item>
      <title>Vector Calculus Multiply Error</title>
      <link>http://www.mapleprimes.com/questions/121538-Vector-Calculus-Multiply-Error?ref=Feed:MaplePrimes:Tagged With product</link>
      <itunes:summary>&lt;p&gt;Defined a demand function:&lt;/p&gt;
&lt;p&gt;x:=(p,w)-&amp;gt;w/(p[1]+p[2]+p[3])*Vector([p[2]/p[1],p[3]/p[2],p[1],p[3]])&lt;/p&gt;
&lt;p&gt;The Slutsky Matrix is calculated as Dpx(p,w) + Dwx(p,w) x(p,w)^T with Dpx(p,w) = Jacobian for p1, p2, p3 and Dwx(p,w) is a column vector of the derivate of x1, x2, x3 in respect to w.&lt;/p&gt;
&lt;p&gt;Step by step:&lt;/p&gt;
&lt;p&gt;Dxp := Jacobian(x(p,w),[p[1],p[2],p[3]])&lt;/p&gt;
&lt;p&gt;yields the correct Jacobian.&lt;/p&gt;
&lt;p&gt;For Dwx I've tried several different methods, i.e.&lt;/p&gt;
&lt;p&gt;Dwx := Jacobian(x(p,w),[w...</itunes:summary>
      <description>&lt;p&gt;Defined a demand function:&lt;/p&gt;
&lt;p&gt;x:=(p,w)-&amp;gt;w/(p[1]+p[2]+p[3])*Vector([p[2]/p[1],p[3]/p[2],p[1],p[3]])&lt;/p&gt;
&lt;p&gt;The Slutsky Matrix is calculated as Dpx(p,w) + Dwx(p,w) x(p,w)^T with Dpx(p,w) = Jacobian for p1, p2, p3 and Dwx(p,w) is a column vector of the derivate of x1, x2, x3 in respect to w.&lt;/p&gt;
&lt;p&gt;Step by step:&lt;/p&gt;
&lt;p&gt;Dxp := Jacobian(x(p,w),[p[1],p[2],p[3]])&lt;/p&gt;
&lt;p&gt;yields the correct Jacobian.&lt;/p&gt;
&lt;p&gt;For Dwx I've tried several different methods, i.e.&lt;/p&gt;
&lt;p&gt;Dwx := Jacobian(x(p,w),[w...</description>
      <guid>121538</guid>
      <pubDate>Fri, 10 Jun 2011 23:30:56 Z</pubDate>
      <itunes:author>AlwaysLearning</itunes:author>
      <author>AlwaysLearning</author>
    </item>
    <item>
      <title>Announcing  Maple T.A.  7 and Maple T.A. MAA Placement Test Suite 7</title>
      <link>http://www.mapleprimes.com/posts/100790-Announcing--Maple-TA--7-And-Maple?ref=Feed:MaplePrimes:Tagged With product</link>
      <itunes:summary>&lt;p&gt;Maple T.A. &amp;nbsp;7 and Maple T.A. MAA Placement Test Suite 7 are now available.&lt;/p&gt;
&lt;p&gt;Maple T.A. 7 provides new options for analyzing grades and gaining a deep understanding of how students are performing, including:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Instructors can view all responses to an assignment question, to easily look for patterns&lt;/li&gt;
&lt;li&gt;The grading scheme for the entire course can be defined inside Maple T.A., with appropriate weightings and flexible policies for dealing with missed, repeated, and worst assignments...&lt;/li&gt;&lt;/ul&gt;</itunes:summary>
      <description>&lt;p&gt;Maple T.A. &amp;nbsp;7 and Maple T.A. MAA Placement Test Suite 7 are now available.&lt;/p&gt;
&lt;p&gt;Maple T.A. 7 provides new options for analyzing grades and gaining a deep understanding of how students are performing, including:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Instructors can view all responses to an assignment question, to easily look for patterns&lt;/li&gt;
&lt;li&gt;The grading scheme for the entire course can be defined inside Maple T.A., with appropriate weightings and flexible policies for dealing with missed, repeated, and worst assignments...&lt;/li&gt;&lt;/ul&gt;</description>
      <guid>100790</guid>
      <pubDate>Mon, 10 Jan 2011 18:28:50 Z</pubDate>
      <itunes:author>eithne</itunes:author>
      <author>eithne</author>
    </item>
    <item>
      <title>How to write matrix inequalities (restriction for  optimization)</title>
      <link>http://www.mapleprimes.com/questions/100063-How-To-Write-Matrix-Inequalities-restriction-For--Optimization?ref=Feed:MaplePrimes:Tagged With product</link>
      <itunes:summary>&lt;p&gt;Hi e-friends,&lt;/p&gt;
&lt;p&gt;I want to minimize a function subject to a set of S restrictions.&lt;/p&gt;
&lt;p&gt;The restrictions are related to matrices V, W, X and Y:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;V = [v1, .., vS]&amp;nbsp; order L x S&lt;/p&gt;
&lt;p&gt;W = [w1, .., wS] order L x S&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;X = [x1, .., xS]&amp;nbsp; order LxS&lt;/p&gt;
&lt;p&gt;Y = [y11,.. yS] order L x S&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;How may I write in MAPLE in compact form&amp;nbsp; the following S inequalities (for any arbitrary integers L and S)?. ...</itunes:summary>
      <description>&lt;p&gt;Hi e-friends,&lt;/p&gt;
&lt;p&gt;I want to minimize a function subject to a set of S restrictions.&lt;/p&gt;
&lt;p&gt;The restrictions are related to matrices V, W, X and Y:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;V = [v1, .., vS]&amp;nbsp; order L x S&lt;/p&gt;
&lt;p&gt;W = [w1, .., wS] order L x S&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;X = [x1, .., xS]&amp;nbsp; order LxS&lt;/p&gt;
&lt;p&gt;Y = [y11,.. yS] order L x S&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;How may I write in MAPLE in compact form&amp;nbsp; the following S inequalities (for any arbitrary integers L and S)?. ...</description>
      <guid>100063</guid>
      <pubDate>Fri, 10 Dec 2010 06:39:14 Z</pubDate>
      <itunes:author>jean-jacques</itunes:author>
      <author>jean-jacques</author>
    </item>
    <item>
      <title>How to find product</title>
      <link>http://www.mapleprimes.com/questions/99117-How-To-Find-Product?ref=Feed:MaplePrimes:Tagged With product</link>
      <itunes:summary>&lt;p&gt;Maple does not find the product&lt;br&gt;product((k+a)*(k+b)/((k+c)*(k+d)), k = 1 .. infinity) assuming a &amp;gt; 0, b &amp;gt; 0, c &amp;gt; 0, d &amp;gt; 0, a+b = c+d;&lt;/p&gt;
&lt;p&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; GAMMA(c) GAMMA(d) infinity&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; ----------------------------------</itunes:summary>
      <description>&lt;p&gt;Maple does not find the product&lt;br&gt;product((k+a)*(k+b)/((k+c)*(k+d)), k = 1 .. infinity) assuming a &amp;gt; 0, b &amp;gt; 0, c &amp;gt; 0, d &amp;gt; 0, a+b = c+d;&lt;/p&gt;
&lt;p&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; GAMMA(c) GAMMA(d) infinity&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; ----------------------------------</description>
      <guid>99117</guid>
      <pubDate>Fri, 19 Nov 2010 11:22:21 Z</pubDate>
      <itunes:author>hirnyk</itunes:author>
      <author>hirnyk</author>
    </item>
    <item>
      <title>"Error, (in int) wrong number (or type) of arguments"</title>
      <link>http://www.mapleprimes.com/questions/97843-Error-in-Int-Wrong-Number-or-Type?ref=Feed:MaplePrimes:Tagged With product</link>
      <itunes:summary>&lt;p&gt;After fixing the problem outlined in a previous post, I seem to get another error that I can't explain.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;"Error, (in int) wrong number (or type) of arguments" is the product of defining a function 'u(r,theta,t)' and then defining each of its components.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I've attached the file here as well. Could someone help with troubleshooting?&amp;nbsp;&lt;a href="/ViewTemp.ashx?f=100675_1287152863/MapleMem5.mw"&gt;MapleMem5.mw&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;</itunes:summary>
      <description>&lt;p&gt;After fixing the problem outlined in a previous post, I seem to get another error that I can't explain.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;"Error, (in int) wrong number (or type) of arguments" is the product of defining a function 'u(r,theta,t)' and then defining each of its components.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I've attached the file here as well. Could someone help with troubleshooting?&amp;nbsp;&lt;a href="/ViewTemp.ashx?f=100675_1287152863/MapleMem5.mw"&gt;MapleMem5.mw&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;</description>
      <guid>97843</guid>
      <pubDate>Fri, 15 Oct 2010 14:31:51 Z</pubDate>
      <itunes:author>ap8888</itunes:author>
      <author>ap8888</author>
    </item>
    <item>
      <title>New packages in App Center</title>
      <link>http://www.mapleprimes.com/posts/97163-New-Packages-In-App-Center?ref=Feed:MaplePrimes:Tagged With product</link>
      <itunes:summary>&lt;p&gt;I just wanted to let everyone know that we recently added some interesting new packages to the Application Center. These packages had been available as third party products. Now, the authors have chosen to make these products freely available to the community through the App Center. Follow the links below to take a look.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;a href="http://www.maplesoft.com/applications/view.aspx?SID=96900"&gt;Harmonic      Analysis&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;a href="http://www.maplesoft.com/applications/view.aspx?SID=96901"&gt;&lt;strong&gt;Structural      Mechanics&lt;/strong&gt;&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;/strong&gt;&lt;strong&gt;&lt;a href="http://www.maplesoft.com/applications/view.aspx?SID=96897"&gt;Quaternions&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;/strong&gt;&lt;strong&gt;&lt;a href="http://www.maplesoft.com/applications/view.aspx?SID=96899"&gt;FuzzySets&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;/strong&gt;</itunes:summary>
      <description>&lt;p&gt;I just wanted to let everyone know that we recently added some interesting new packages to the Application Center. These packages had been available as third party products. Now, the authors have chosen to make these products freely available to the community through the App Center. Follow the links below to take a look.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;a href="http://www.maplesoft.com/applications/view.aspx?SID=96900"&gt;Harmonic      Analysis&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;a href="http://www.maplesoft.com/applications/view.aspx?SID=96901"&gt;&lt;strong&gt;Structural      Mechanics&lt;/strong&gt;&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;/strong&gt;&lt;strong&gt;&lt;a href="http://www.maplesoft.com/applications/view.aspx?SID=96897"&gt;Quaternions&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;/strong&gt;&lt;strong&gt;&lt;a href="http://www.maplesoft.com/applications/view.aspx?SID=96899"&gt;FuzzySets&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;/strong&gt;</description>
      <guid>97163</guid>
      <pubDate>Fri, 24 Sep 2010 14:01:04 Z</pubDate>
      <itunes:author>eithne</itunes:author>
      <author>eithne</author>
    </item>
    <item>
      <title>New edition of Math Survival Kit now available</title>
      <link>http://www.mapleprimes.com/posts/96512-New-Edition-Of-Math-Survival-Kit-Now-Available?ref=Feed:MaplePrimes:Tagged With product</link>
      <itunes:summary>&lt;p&gt;A new edition of The Mathematics Survival Kit &amp;ndash; Maple Edition is now available.&amp;nbsp; It contains 25 new topics, which were created in response to requests from readers of the first edition of the book. New materials range from basic operations such as factoring and fractions, to graph sketching, vectors, and integration.&lt;/p&gt;
&lt;p&gt;The Math Survival Kit gives students the opportunity to review exactly the concept or technique they are stuck on, learn what they need to know,...</itunes:summary>
      <description>&lt;p&gt;A new edition of The Mathematics Survival Kit &amp;ndash; Maple Edition is now available.&amp;nbsp; It contains 25 new topics, which were created in response to requests from readers of the first edition of the book. New materials range from basic operations such as factoring and fractions, to graph sketching, vectors, and integration.&lt;/p&gt;
&lt;p&gt;The Math Survival Kit gives students the opportunity to review exactly the concept or technique they are stuck on, learn what they need to know,...</description>
      <guid>96512</guid>
      <pubDate>Mon, 30 Aug 2010 20:26:43 Z</pubDate>
      <itunes:author>eithne</itunes:author>
      <author>eithne</author>
    </item>
    <item>
      <title>New verison of the Placement Test Suite is now available</title>
      <link>http://www.mapleprimes.com/posts/95757-New-Verison-Of-The-Placement-Test-Suite?ref=Feed:MaplePrimes:Tagged With product</link>
      <itunes:summary>&lt;p&gt;A new version of the Maple T.A. MAA Placement Test Suite is now available.&amp;nbsp; The latest release includes a new Calculus Concepts Readiness Test, based on modern research into calculus assessment. It also includes performance improvements when dealing with large student populations, and tools for integration with Moodle&amp;trade; and other course management systems. To learn more, visit &lt;a href="http://www.maplesoft.com/products/placement/whatsnew.aspx?ref=mapleprimes"&gt;What&amp;rsquo;s New in PTS 6&lt;/a&gt;</itunes:summary>
      <description>&lt;p&gt;A new version of the Maple T.A. MAA Placement Test Suite is now available.&amp;nbsp; The latest release includes a new Calculus Concepts Readiness Test, based on modern research into calculus assessment. It also includes performance improvements when dealing with large student populations, and tools for integration with Moodle&amp;trade; and other course management systems. To learn more, visit &lt;a href="http://www.maplesoft.com/products/placement/whatsnew.aspx?ref=mapleprimes"&gt;What&amp;rsquo;s New in PTS 6&lt;/a&gt;</description>
      <guid>95757</guid>
      <pubDate>Wed, 04 Aug 2010 19:01:52 Z</pubDate>
      <itunes:author>eithne</itunes:author>
      <author>eithne</author>
    </item>
  </channel>
</rss>
