<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, Vector Calculus Multiply Error</title>
    <link>http://www.mapleprimes.com/questions/121538-Vector-Calculus-Multiply-Error</link>
    <language>en-us</language>
    <copyright>2026 Maplesoft, A Division of Waterloo Maple Inc.</copyright>
    <generator>Maplesoft Document System</generator>
    <lastBuildDate>Wed, 10 Jun 2026 16:25:44 GMT</lastBuildDate>
    <pubDate>Wed, 10 Jun 2026 16:25:44 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, Vector Calculus Multiply Error</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, Vector Calculus Multiply Error</title>
      <link>http://www.mapleprimes.com/questions/121538-Vector-Calculus-Multiply-Error</link>
    </image>
    <item>
      <title>Jacobian</title>
      <link>http://www.mapleprimes.com/questions/121538-Vector-Calculus-Multiply-Error?ref=Feed:MaplePrimes:Vector Calculus Multiply Error:Comments#answer121541</link>
      <itunes:summary>&lt;p&gt;Jacobian produces a Matrix, and you need a Vector, which can be obtained from it as&lt;/p&gt;
&lt;pre&gt;Dwx := Jacobian(x(p,w),[w])[..,1];&lt;/pre&gt;
&lt;p&gt;diff and D[2] should work assuming that you executed with(VectorCalculus) somewhere earlier, if you specify the (Maple's) dot product explicitely,&lt;/p&gt;
&lt;pre&gt;Dwx.x(p,w)^%T;&lt;/pre&gt;
&lt;p&gt;Alec&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Jacobian produces a Matrix, and you need a Vector, which can be obtained from it as&lt;/p&gt;
&lt;pre&gt;Dwx := Jacobian(x(p,w),[w])[..,1];&lt;/pre&gt;
&lt;p&gt;diff and D[2] should work assuming that you executed with(VectorCalculus) somewhere earlier, if you specify the (Maple's) dot product explicitely,&lt;/p&gt;
&lt;pre&gt;Dwx.x(p,w)^%T;&lt;/pre&gt;
&lt;p&gt;Alec&lt;/p&gt;</description>
      <guid>121541</guid>
      <pubDate>Sat, 11 Jun 2011 10:25:58 Z</pubDate>
      <itunes:author>Alec Mihailovs</itunes:author>
      <author>Alec Mihailovs</author>
    </item>
    <item>
      <title>Thanks for your response. I'm looking to</title>
      <link>http://www.mapleprimes.com/questions/121538-Vector-Calculus-Multiply-Error?ref=Feed:MaplePrimes:Vector Calculus Multiply Error:Comments#comment121556</link>
      <itunes:summary>&lt;p&gt;Thanks for your response. I'm looking to apply the outer product on the two vectors. I've played with it a little bit more and here's a better example:&lt;/p&gt;
&lt;p&gt;f := a^2 * &amp;lt;x*y,x+y&amp;gt;;&lt;/p&gt;
&lt;p&gt;df := diff(f,a); # --&amp;gt; column vector&lt;/p&gt;
&lt;p&gt;df f^+; # --&amp;gt; outer product gives 2x2 matrix&lt;/p&gt;
&lt;p&gt;diff(f,a) f^+; # --&amp;gt; Error, (in rtable/Product) invalid arguments&lt;/p&gt;
&lt;p&gt;'diff(f,a)' f^+; # --&amp;gt; delaying evaluation pretty prints expression with no derivates taken&lt;/p&gt;
&lt;p&gt;%; # --&amp;gt; evaluates expression above and displays same outer product 2x2 matrix&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Looks like I need to delay evaluation so the outer product function can properly 'see' that diff(f,a) is a column vector.&lt;/p&gt;
&lt;p&gt;I'm knew to this stuff, if somebody knows a good tutorial about how Maple evaluates expressions, that'll help.&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Thanks for your response. I'm looking to apply the outer product on the two vectors. I've played with it a little bit more and here's a better example:&lt;/p&gt;
&lt;p&gt;f := a^2 * &amp;lt;x*y,x+y&amp;gt;;&lt;/p&gt;
&lt;p&gt;df := diff(f,a); # --&amp;gt; column vector&lt;/p&gt;
&lt;p&gt;df f^+; # --&amp;gt; outer product gives 2x2 matrix&lt;/p&gt;
&lt;p&gt;diff(f,a) f^+; # --&amp;gt; Error, (in rtable/Product) invalid arguments&lt;/p&gt;
&lt;p&gt;'diff(f,a)' f^+; # --&amp;gt; delaying evaluation pretty prints expression with no derivates taken&lt;/p&gt;
&lt;p&gt;%; # --&amp;gt; evaluates expression above and displays same outer product 2x2 matrix&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Looks like I need to delay evaluation so the outer product function can properly 'see' that diff(f,a) is a column vector.&lt;/p&gt;
&lt;p&gt;I'm knew to this stuff, if somebody knows a good tutorial about how Maple evaluates expressions, that'll help.&lt;/p&gt;</description>
      <guid>121556</guid>
      <pubDate>Sat, 11 Jun 2011 23:04:57 Z</pubDate>
      <itunes:author>AlwaysLearning</itunes:author>
      <author>AlwaysLearning</author>
    </item>
    <item>
      <title>dot</title>
      <link>http://www.mapleprimes.com/questions/121538-Vector-Calculus-Multiply-Error?ref=Feed:MaplePrimes:Vector Calculus Multiply Error:Comments#comment121562</link>
      <itunes:summary>&lt;p&gt;&lt;a href="http://www.mapleprimes.com/questions/121538-Vector-Calculus-Multiply-Error#comment121556"&gt;@AlwaysLearning&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;As I said, you shouldn't make the multiplication implicit (using a space). It's much better to use a dot instead - then Maple won't interpret it as * which produces those errors.&lt;/p&gt;
&lt;p&gt;In general, the best tutorials available are Maple manuals (available from the Help menu and for download from the &lt;a href="http://www.maplesoft.com/documentation_center/"&gt;Documentation Center&lt;/a&gt;.) Or posts on this site. Everything else (books etc.) is outdated.&lt;/p&gt;
&lt;p&gt;Alec&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;&lt;a href="http://www.mapleprimes.com/questions/121538-Vector-Calculus-Multiply-Error#comment121556"&gt;@AlwaysLearning&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;As I said, you shouldn't make the multiplication implicit (using a space). It's much better to use a dot instead - then Maple won't interpret it as * which produces those errors.&lt;/p&gt;
&lt;p&gt;In general, the best tutorials available are Maple manuals (available from the Help menu and for download from the &lt;a href="http://www.maplesoft.com/documentation_center/"&gt;Documentation Center&lt;/a&gt;.) Or posts on this site. Everything else (books etc.) is outdated.&lt;/p&gt;
&lt;p&gt;Alec&lt;/p&gt;</description>
      <guid>121562</guid>
      <pubDate>Sun, 12 Jun 2011 00:57:21 Z</pubDate>
      <itunes:author>Alec Mihailovs</itunes:author>
      <author>Alec Mihailovs</author>
    </item>
    <item>
      <title>Got it, thanks! Didn't think that . works</title>
      <link>http://www.mapleprimes.com/questions/121538-Vector-Calculus-Multiply-Error?ref=Feed:MaplePrimes:Vector Calculus Multiply Error:Comments#comment121573</link>
      <itunes:summary>&lt;p&gt;Got it, thanks! Didn't think that . works for outer product as well.&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Got it, thanks! Didn't think that . works for outer product as well.&lt;/p&gt;</description>
      <guid>121573</guid>
      <pubDate>Sun, 12 Jun 2011 18:30:09 Z</pubDate>
      <itunes:author>AlwaysLearning</itunes:author>
      <author>AlwaysLearning</author>
    </item>
  </channel>
</rss>