<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, Differentiating Vector Functions?</title>
    <link>http://www.mapleprimes.com/questions/35492-Differentiating-Vector-Functions</link>
    <language>en-us</language>
    <copyright>2026 Maplesoft, A Division of Waterloo Maple Inc.</copyright>
    <generator>Maplesoft Document System</generator>
    <lastBuildDate>Thu, 11 Jun 2026 03:20:02 GMT</lastBuildDate>
    <pubDate>Thu, 11 Jun 2026 03:20:02 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, Differentiating Vector Functions?</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, Differentiating Vector Functions?</title>
      <link>http://www.mapleprimes.com/questions/35492-Differentiating-Vector-Functions</link>
    </image>
    <item>
      <title>Elementwise operations</title>
      <link>http://www.mapleprimes.com/questions/35492-Differentiating-Vector-Functions?ref=Feed:MaplePrimes:Differentiating Vector Functions?:Comments#answer44063</link>
      <itunes:summary>&lt;p&gt;Say your vector is &lt;/p&gt;
&lt;p&gt;v:= &amp;lt;a(t),b(t),c(t)&amp;gt;; &lt;/p&gt;
&lt;p&gt;then in Maple 13 you can differentiate elementwise like this&lt;/p&gt;
&lt;p&gt;diff~(v. t):&lt;/p&gt;
&lt;p&gt;where you should notice the tilde.&lt;/p&gt;
&lt;p&gt;In earlier versions:&lt;/p&gt;
&lt;p&gt;map(diff, v, t);&lt;/p&gt;
&lt;p&gt;map is still useful, though.&lt;/p&gt;
&lt;p&gt;Preben Alsholm&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Say your vector is &lt;/p&gt;
&lt;p&gt;v:= &amp;lt;a(t),b(t),c(t)&amp;gt;; &lt;/p&gt;
&lt;p&gt;then in Maple 13 you can differentiate elementwise like this&lt;/p&gt;
&lt;p&gt;diff~(v. t):&lt;/p&gt;
&lt;p&gt;where you should notice the tilde.&lt;/p&gt;
&lt;p&gt;In earlier versions:&lt;/p&gt;
&lt;p&gt;map(diff, v, t);&lt;/p&gt;
&lt;p&gt;map is still useful, though.&lt;/p&gt;
&lt;p&gt;Preben Alsholm&lt;/p&gt;</description>
      <guid>44063</guid>
      <pubDate>Wed, 17 Mar 2010 15:58:02 Z</pubDate>
      <itunes:author>alsholm</itunes:author>
      <author>alsholm</author>
    </item>
    <item>
      <title>Crash..</title>
      <link>http://www.mapleprimes.com/questions/35492-Differentiating-Vector-Functions?ref=Feed:MaplePrimes:Differentiating Vector Functions?:Comments#answer44064</link>
      <itunes:summary>So.. i don't know if im doing something wrong here... but maple crashes when running the last part of this document:
https://docs.google.com/fileview?id=0Bx5y79IuSOVJNWYzMTE0MTgtOTQxOS00YzFhLThiZDItMzdhMThlYWIyZWM1&amp;hl=en</itunes:summary>
      <description>So.. i don't know if im doing something wrong here... but maple crashes when running the last part of this document:
https://docs.google.com/fileview?id=0Bx5y79IuSOVJNWYzMTE0MTgtOTQxOS00YzFhLThiZDItMzdhMThlYWIyZWM1&amp;hl=en</description>
      <guid>44064</guid>
      <pubDate>Wed, 17 Mar 2010 16:55:10 Z</pubDate>
      <itunes:author>MrAdam</itunes:author>
      <author>MrAdam</author>
    </item>
    <item>
      <title>You may also check out the</title>
      <link>http://www.mapleprimes.com/questions/35492-Differentiating-Vector-Functions?ref=Feed:MaplePrimes:Differentiating Vector Functions?:Comments#answer44065</link>
      <itunes:summary>&lt;p&gt;You may also check out the VectorCalculus package. It contains -among other vector operation goodies- a diff command that natively maps diff to a vector.&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;You may also check out the VectorCalculus package. It contains -among other vector operation goodies- a diff command that natively maps diff to a vector.&lt;/p&gt;</description>
      <guid>44065</guid>
      <pubDate>Wed, 17 Mar 2010 16:56:23 Z</pubDate>
      <itunes:author>Thomas
 Unger
</itunes:author>
      <author>Thomas
 Unger
</author>
    </item>
    <item>
      <title>solve</title>
      <link>http://www.mapleprimes.com/questions/35492-Differentiating-Vector-Functions?ref=Feed:MaplePrimes:Differentiating Vector Functions?:Comments#comment44066</link>
      <itunes:summary>&lt;p&gt;It doesn't crash for me, it just doesn't return a value.&amp;nbsp; The main problem here is that&amp;nbsp;If R and V are Vectors, R . V will use the complex conjugate of R.&amp;nbsp; In your case this shouldn't make a difference, because you want t &amp;gt; 2, but Maple doesn't know that when it computes r(t) . v(t).&amp;nbsp; One way to avoid that is to use the transpose of the first vector, so that &amp;quot;.&amp;quot; will be just ordinary vector multiplication: thus r(t)^%T . v(t).&lt;/p&gt;
&lt;pre&gt;
&amp;gt; solve({r(t)^%T . v(t), t &amp;gt; 2, t &amp;lt;= 27}, t);
&lt;/pre&gt;
&lt;p&gt;{t = 13.58622459}, {t = 17.71237270}&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;It doesn't crash for me, it just doesn't return a value.&amp;nbsp; The main problem here is that&amp;nbsp;If R and V are Vectors, R . V will use the complex conjugate of R.&amp;nbsp; In your case this shouldn't make a difference, because you want t &amp;gt; 2, but Maple doesn't know that when it computes r(t) . v(t).&amp;nbsp; One way to avoid that is to use the transpose of the first vector, so that &amp;quot;.&amp;quot; will be just ordinary vector multiplication: thus r(t)^%T . v(t).&lt;/p&gt;
&lt;pre&gt;
&amp;gt; solve({r(t)^%T . v(t), t &amp;gt; 2, t &amp;lt;= 27}, t);
&lt;/pre&gt;
&lt;p&gt;{t = 13.58622459}, {t = 17.71237270}&lt;/p&gt;</description>
      <guid>44066</guid>
      <pubDate>Wed, 17 Mar 2010 22:18:04 Z</pubDate>
      <itunes:author>Robert Israel</itunes:author>
      <author>Robert Israel</author>
    </item>
  </channel>
</rss>