<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, plot</title>
    <link>http://www.mapleprimes.com/questions/36845-Plot</link>
    <language>en-us</language>
    <copyright>2026 Maplesoft, A Division of Waterloo Maple Inc.</copyright>
    <generator>Maplesoft Document System</generator>
    <lastBuildDate>Sun, 14 Jun 2026 00:45:46 GMT</lastBuildDate>
    <pubDate>Sun, 14 Jun 2026 00:45:46 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, plot</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, plot</title>
      <link>http://www.mapleprimes.com/questions/36845-Plot</link>
    </image>
    <item>
      <title>odeplot</title>
      <link>http://www.mapleprimes.com/questions/36845-Plot?ref=Feed:MaplePrimes:plot:Comments#answer64015</link>
      <itunes:summary>&lt;p&gt;The command is &lt;b&gt;odeplot&lt;/b&gt;, not &lt;b&gt;odeplots&lt;/b&gt;.&amp;nbsp; &lt;/p&gt;
&lt;p&gt;If the system is third order or higher in X[5], dsol should provide values of that second derivative, and then odeplot &lt;br /&gt;
will be able to plot it.&amp;nbsp; If not, you'd need to find an expression for the second derivative in terms of variables and their first derivatives. You can use &lt;b&gt;rifsimp&lt;/b&gt; in the &lt;b&gt;DEtools&lt;/b&gt; package to help with this.&amp;nbsp; For example, consider this system:&lt;/p&gt;
&lt;pre&gt;
&amp;gt; sys:= {D(x)(t)=y(t)^2 + x(t), (D@@2)(y)(t)=x(t)};
&amp;nbsp;&amp;nbsp;&amp;nbsp; ics:= {x(0) = 1, y(0) = 0, D(y)(0) = 0};
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;gt; DEtools[rifsimp](convert(sys union {(D@@2)(x)(t)=w(t)},diff),[[w],[x,y]]); 
&lt;/pre&gt;
&lt;p&gt;&lt;maple&gt;TABLE([Solved = [w(t) = 2*y(t)*diff(y(t),t)+y(t)^2+x(t), diff(y(t),`$`(t,2)) = x(t), diff(x(t),t) = y(t)^2+x(t)]])&lt;/maple&gt;&lt;/p&gt;
&lt;pre&gt;
&amp;gt; d2x:= subs(%[Solved], w(t));
&lt;/pre&gt;
&lt;p&gt;&lt;maple&gt;d2x := 2*y(t)*diff(y(t),t)+y(t)^2+x(t)&lt;/maple&gt;&lt;/p&gt;
&lt;pre&gt;
&amp;gt; plots[odeplot](dsol, [t, d2x], t = 0 .. 1);
&lt;/pre&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;The command is &lt;b&gt;odeplot&lt;/b&gt;, not &lt;b&gt;odeplots&lt;/b&gt;.&amp;nbsp; &lt;/p&gt;
&lt;p&gt;If the system is third order or higher in X[5], dsol should provide values of that second derivative, and then odeplot &lt;br /&gt;
will be able to plot it.&amp;nbsp; If not, you'd need to find an expression for the second derivative in terms of variables and their first derivatives. You can use &lt;b&gt;rifsimp&lt;/b&gt; in the &lt;b&gt;DEtools&lt;/b&gt; package to help with this.&amp;nbsp; For example, consider this system:&lt;/p&gt;
&lt;pre&gt;
&amp;gt; sys:= {D(x)(t)=y(t)^2 + x(t), (D@@2)(y)(t)=x(t)};
&amp;nbsp;&amp;nbsp;&amp;nbsp; ics:= {x(0) = 1, y(0) = 0, D(y)(0) = 0};
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;gt; DEtools[rifsimp](convert(sys union {(D@@2)(x)(t)=w(t)},diff),[[w],[x,y]]); 
&lt;/pre&gt;
&lt;p&gt;&lt;maple&gt;TABLE([Solved = [w(t) = 2*y(t)*diff(y(t),t)+y(t)^2+x(t), diff(y(t),`$`(t,2)) = x(t), diff(x(t),t) = y(t)^2+x(t)]])&lt;/maple&gt;&lt;/p&gt;
&lt;pre&gt;
&amp;gt; d2x:= subs(%[Solved], w(t));
&lt;/pre&gt;
&lt;p&gt;&lt;maple&gt;d2x := 2*y(t)*diff(y(t),t)+y(t)^2+x(t)&lt;/maple&gt;&lt;/p&gt;
&lt;pre&gt;
&amp;gt; plots[odeplot](dsol, [t, d2x], t = 0 .. 1);
&lt;/pre&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &lt;/p&gt;</description>
      <guid>64015</guid>
      <pubDate>Thu, 20 Aug 2009 20:40:42 Z</pubDate>
      <itunes:author>Robert Israel</itunes:author>
      <author>Robert Israel</author>
    </item>
    <item>
      <title>Hello
Dsolve produces X[5]</title>
      <link>http://www.mapleprimes.com/questions/36845-Plot?ref=Feed:MaplePrimes:plot:Comments#answer64016</link>
      <itunes:summary>&lt;p&gt;Hello&lt;/p&gt;
&lt;p&gt;Dsolve produces X[5] and first derivative and second derivative of that the problem is I do not know what is maple comand to plot it &lt;/p&gt;
&lt;p&gt;I mean I use &lt;/p&gt;
&lt;p&gt;plots[odeplot](dsol, [t, (D(X[5]))(t)], 0 .. 5, numpoints = 250); to plot first derivative what is maple comand like this for second derivative&lt;/p&gt;
&lt;p&gt;is it plots[odeplot](dsol, [t, (D^2(X[5]))(t)], 0 .. 5, numpoints = 250); or&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;plots[odeplot](dsol, [t, (D[1,1](X[5]))(t)], 0 .. 5, numpoints = 250);&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Hello&lt;/p&gt;
&lt;p&gt;Dsolve produces X[5] and first derivative and second derivative of that the problem is I do not know what is maple comand to plot it &lt;/p&gt;
&lt;p&gt;I mean I use &lt;/p&gt;
&lt;p&gt;plots[odeplot](dsol, [t, (D(X[5]))(t)], 0 .. 5, numpoints = 250); to plot first derivative what is maple comand like this for second derivative&lt;/p&gt;
&lt;p&gt;is it plots[odeplot](dsol, [t, (D^2(X[5]))(t)], 0 .. 5, numpoints = 250); or&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;plots[odeplot](dsol, [t, (D[1,1](X[5]))(t)], 0 .. 5, numpoints = 250);&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &lt;/p&gt;</description>
      <guid>64016</guid>
      <pubDate>Thu, 20 Aug 2009 22:13:26 Z</pubDate>
      <itunes:author>nmani</itunes:author>
      <author>nmani</author>
    </item>
    <item>
      <title>please see mt file</title>
      <link>http://www.mapleprimes.com/questions/36845-Plot?ref=Feed:MaplePrimes:plot:Comments#comment64018</link>
      <itunes:summary>&lt;p&gt;Dear Robert,&lt;/p&gt;
&lt;p&gt;Hello.&lt;/p&gt;
&lt;p&gt;Hope you are fine.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I have a second order system and initial condition, when I solve, in the solution, I see just till first order which you wrote me, so I wanted to use your sugestion to have second order and plot that, but I see one error since in my system I have sin() and cos(), I came up with this by Sub but is there any way that I can use rifsimp without substitution?&lt;/p&gt;
&lt;p&gt;I mean any maple command by DEtools[rifsimp](sys,vars,options) with special options.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;please please take a look at my file.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Many thanks&lt;span&gt;&lt;a href="http://www.mapleprimes.com/files/11301_que.mpl"&gt;Download 11301_que.mpl&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://www.mapleprimes.com/viewfile/3677"&gt;View file details&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Dear Robert,&lt;/p&gt;
&lt;p&gt;Hello.&lt;/p&gt;
&lt;p&gt;Hope you are fine.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I have a second order system and initial condition, when I solve, in the solution, I see just till first order which you wrote me, so I wanted to use your sugestion to have second order and plot that, but I see one error since in my system I have sin() and cos(), I came up with this by Sub but is there any way that I can use rifsimp without substitution?&lt;/p&gt;
&lt;p&gt;I mean any maple command by DEtools[rifsimp](sys,vars,options) with special options.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;please please take a look at my file.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Many thanks&lt;span&gt;&lt;a href="http://www.mapleprimes.com/files/11301_que.mpl"&gt;Download 11301_que.mpl&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://www.mapleprimes.com/viewfile/3677"&gt;View file details&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description>
      <guid>64018</guid>
      <pubDate>Sun, 23 Aug 2009 22:51:03 Z</pubDate>
      <itunes:author>nmani</itunes:author>
      <author>nmani</author>
    </item>
    <item>
      <title>Second derivative</title>
      <link>http://www.mapleprimes.com/questions/36845-Plot?ref=Feed:MaplePrimes:plot:Comments#comment64019</link>
      <itunes:summary>&lt;p&gt;By the way, you shouldn't use &lt;b&gt;.mpl&lt;/b&gt; as the extension for a worksheet file.&amp;nbsp; It should be &lt;b&gt;.mw&lt;/b&gt; (or &lt;b&gt;.mws&lt;/b&gt; for a Classic worksheet).&amp;nbsp; The &lt;b&gt;.mpl&lt;/b&gt; extension is for text files in the Maple language.&lt;/p&gt;
&lt;p&gt;Since your system contains this second derivative, it's not necessary to use &lt;b&gt;rifsimp&lt;/b&gt;: we can simply use &lt;b&gt;solve&lt;/b&gt;.&lt;/p&gt;
&lt;pre&gt;
&amp;gt; RedSys := {58.86000000*cos(X[9](t))*cos(X[5](t))-58.86000000*sin(X[9](t))*sin(
X[5](t))+9.040000000*diff(diff(X[9](t),t),t)+9.040000000*diff(diff(X[5](t),t),
t)+6.000000000*diff(diff(X[9](t),t),t)*cos(X[5](t))+6.000000000*sin(X[5](t))*
diff(X[9](t),t)^2 = 0., 58.86000000*cos(X[9](t))*cos(X[5](t))-58.86000000*sin(
X[9](t))*sin(X[5](t))+14.08000000*diff(diff(X[9](t),t),t)+9.040000000*diff(
diff(X[5](t),t),t)+12*diff(diff(X[9](t),t),t)*cos(X[5](t))-12.*diff(X[9](t),t)
*diff(X[5](t),t)*sin(X[5](t))+58.86000000*cos(X[9](t))+6.000000000*diff(diff(X
[5](t),t),t)*cos(X[5](t))-6.000000000*diff(X[5](t),t)^2*sin(X[5](t)) = 0.};
incons1 := {X[5](0) = 0, X[9](0) = 0, D(X[5])(0) = 0, D(X[9])(0) = 0};
&lt;img alt="" src="file:///C:/Users/Daddy/AppData/Local/Temp/moz-screenshot.png" /&gt;&lt;img alt="" src="file:///C:/Users/Daddy/AppData/Local/Temp/moz-screenshot-1.png" /&gt;dsol := dsolve(RedSys union incons1, numeric);
secondderivs:= solve(RedSys,{diff(X[5](t),t$2),diff(X[9](t),t$2)});
d2x5:=subs(secondderivs,diff(X[5](t),t$2));
plots[odeplot](dsol, [t, d2x5], t = 0 .. 5,numpoints=250);

&lt;/pre&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;By the way, you shouldn't use &lt;b&gt;.mpl&lt;/b&gt; as the extension for a worksheet file.&amp;nbsp; It should be &lt;b&gt;.mw&lt;/b&gt; (or &lt;b&gt;.mws&lt;/b&gt; for a Classic worksheet).&amp;nbsp; The &lt;b&gt;.mpl&lt;/b&gt; extension is for text files in the Maple language.&lt;/p&gt;
&lt;p&gt;Since your system contains this second derivative, it's not necessary to use &lt;b&gt;rifsimp&lt;/b&gt;: we can simply use &lt;b&gt;solve&lt;/b&gt;.&lt;/p&gt;
&lt;pre&gt;
&amp;gt; RedSys := {58.86000000*cos(X[9](t))*cos(X[5](t))-58.86000000*sin(X[9](t))*sin(
X[5](t))+9.040000000*diff(diff(X[9](t),t),t)+9.040000000*diff(diff(X[5](t),t),
t)+6.000000000*diff(diff(X[9](t),t),t)*cos(X[5](t))+6.000000000*sin(X[5](t))*
diff(X[9](t),t)^2 = 0., 58.86000000*cos(X[9](t))*cos(X[5](t))-58.86000000*sin(
X[9](t))*sin(X[5](t))+14.08000000*diff(diff(X[9](t),t),t)+9.040000000*diff(
diff(X[5](t),t),t)+12*diff(diff(X[9](t),t),t)*cos(X[5](t))-12.*diff(X[9](t),t)
*diff(X[5](t),t)*sin(X[5](t))+58.86000000*cos(X[9](t))+6.000000000*diff(diff(X
[5](t),t),t)*cos(X[5](t))-6.000000000*diff(X[5](t),t)^2*sin(X[5](t)) = 0.};
incons1 := {X[5](0) = 0, X[9](0) = 0, D(X[5])(0) = 0, D(X[9])(0) = 0};
&lt;img alt="" src="file:///C:/Users/Daddy/AppData/Local/Temp/moz-screenshot.png" /&gt;&lt;img alt="" src="file:///C:/Users/Daddy/AppData/Local/Temp/moz-screenshot-1.png" /&gt;dsol := dsolve(RedSys union incons1, numeric);
secondderivs:= solve(RedSys,{diff(X[5](t),t$2),diff(X[9](t),t$2)});
d2x5:=subs(secondderivs,diff(X[5](t),t$2));
plots[odeplot](dsol, [t, d2x5], t = 0 .. 5,numpoints=250);

&lt;/pre&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description>
      <guid>64019</guid>
      <pubDate>Mon, 24 Aug 2009 01:14:19 Z</pubDate>
      <itunes:author>Robert Israel</itunes:author>
      <author>Robert Israel</author>
    </item>
    <item>
      <title>OMG
 
Silly</title>
      <link>http://www.mapleprimes.com/questions/36845-Plot?ref=Feed:MaplePrimes:plot:Comments#comment64020</link>
      <itunes:summary>&lt;p&gt;OMG&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Silly me&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;OMG&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Silly me&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description>
      <guid>64020</guid>
      <pubDate>Mon, 24 Aug 2009 01:27:08 Z</pubDate>
      <itunes:author>nmani</itunes:author>
      <author>nmani</author>
    </item>
    <item>
      <title>Hello
I am wroking in mws</title>
      <link>http://www.mapleprimes.com/questions/36845-Plot?ref=Feed:MaplePrimes:plot:Comments#comment64021</link>
      <itunes:summary>&lt;p&gt;Hello&lt;/p&gt;
&lt;p&gt;I am wroking in mws but I saved to mpl to send you, does it have a problem&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;any way thanksss&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Hello&lt;/p&gt;
&lt;p&gt;I am wroking in mws but I saved to mpl to send you, does it have a problem&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;any way thanksss&lt;/p&gt;</description>
      <guid>64021</guid>
      <pubDate>Mon, 24 Aug 2009 01:33:08 Z</pubDate>
      <itunes:author>nmani</itunes:author>
      <author>nmani</author>
    </item>
  </channel>
</rss>