<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, phase plots from a differential equation</title>
    <link>http://www.mapleprimes.com/questions/143625-Phase-Plots-From-A-Differential-Equation</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 00:30:26 GMT</lastBuildDate>
    <pubDate>Thu, 11 Jun 2026 00:30:26 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, phase plots from a differential equation</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, phase plots from a differential equation</title>
      <link>http://www.mapleprimes.com/questions/143625-Phase-Plots-From-A-Differential-Equation</link>
    </image>
    <item>
      <title>No sorry I didn't type it in clearly. I am</title>
      <link>http://www.mapleprimes.com/questions/143625-Phase-Plots-From-A-Differential-Equation?ref=Feed:MaplePrimes:phase plots from a differential equation:Comments#answer143632</link>
      <itunes:summary>&lt;p&gt;no sorry that isnt what i mean it was just a differnetial equation&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;no sorry that isnt what i mean it was just a differnetial equation&lt;/p&gt;</description>
      <guid>143632</guid>
      <pubDate>Tue, 19 Feb 2013 05:06:24 Z</pubDate>
      <itunes:author>gdog</itunes:author>
      <author>gdog</author>
    </item>
    <item>
      <title>Phase portrait 2nd order DE</title>
      <link>http://www.mapleprimes.com/questions/143625-Phase-Plots-From-A-Differential-Equation?ref=Feed:MaplePrimes:phase plots from a differential equation:Comments#answer143646</link>
      <itunes:summary>&lt;p&gt;Your formula is still not unambiguous (unbalanced parentheses). I suppose that you mean:&lt;/p&gt;
&lt;pre&gt;DE := diff(z(t),t,t) = -((sqrt(diff(z(t)^2,t))+10^10*diff(z(t),t))+10^10*z(t))/diff(z(t),t);&lt;/pre&gt;
&lt;p&gt;Now rewrite to a system of two first order equations:&lt;/p&gt;
&lt;pre&gt;&amp;nbsp;DE2 := diff(z(t),t)=y(t),  subs( {diff(z(t),t)=y(t)}, DE );&lt;/pre&gt;
&lt;p&gt;A phase portrait with two trajectories:&lt;/p&gt;
&lt;pre&gt;with(DEtools):
DEplot( {DE2}, [z,y], t=0..1, 
   {[z(0)=5e9,y(0)=2e10],[z(0)=5e9,y(0)=1.5e10]}, 
   z=5e9..2e10, y=5e9..2e10, arrows=smalltwo, linecolor=blue );
&lt;/pre&gt;
&lt;p&gt;By the way, because of the huge constants in the equation, you can omit the sqrt term and simplify to&lt;/p&gt;
&lt;pre&gt;DE3 := diff(z(t), t) = y(t), diff(y(t), t) = -(10^10*y(t)+10^10*z(t))/y(t);
&lt;/pre&gt;
&lt;p&gt;which gives you the same phase portrait.&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Your formula is still not unambiguous (unbalanced parentheses). I suppose that you mean:&lt;/p&gt;
&lt;pre&gt;DE := diff(z(t),t,t) = -((sqrt(diff(z(t)^2,t))+10^10*diff(z(t),t))+10^10*z(t))/diff(z(t),t);&lt;/pre&gt;
&lt;p&gt;Now rewrite to a system of two first order equations:&lt;/p&gt;
&lt;pre&gt;&amp;nbsp;DE2 := diff(z(t),t)=y(t),  subs( {diff(z(t),t)=y(t)}, DE );&lt;/pre&gt;
&lt;p&gt;A phase portrait with two trajectories:&lt;/p&gt;
&lt;pre&gt;with(DEtools):
DEplot( {DE2}, [z,y], t=0..1, 
   {[z(0)=5e9,y(0)=2e10],[z(0)=5e9,y(0)=1.5e10]}, 
   z=5e9..2e10, y=5e9..2e10, arrows=smalltwo, linecolor=blue );
&lt;/pre&gt;
&lt;p&gt;By the way, because of the huge constants in the equation, you can omit the sqrt term and simplify to&lt;/p&gt;
&lt;pre&gt;DE3 := diff(z(t), t) = y(t), diff(y(t), t) = -(10^10*y(t)+10^10*z(t))/y(t);
&lt;/pre&gt;
&lt;p&gt;which gives you the same phase portrait.&lt;/p&gt;</description>
      <guid>143646</guid>
      <pubDate>Tue, 19 Feb 2013 14:45:55 Z</pubDate>
      <itunes:author>Adri van der Meer</itunes:author>
      <author>Adri van der Meer</author>
    </item>
    <item>
      <title>Using equation 3.4.82 in the reference</title>
      <link>http://www.mapleprimes.com/questions/143625-Phase-Plots-From-A-Differential-Equation?ref=Feed:MaplePrimes:phase plots from a differential equation:Comments#answer143654</link>
      <itunes:summary>&lt;p&gt;Using equation 3.4.82 in the reference you gave and also &lt;br&gt;diff(phi,t,t) = phidot*diff(phidot,phi) we are back to the second order ode:&lt;/p&gt;
&lt;p&gt;ode:=diff(phi(t),t,t)=-(sqrt(3/2)/M^2*sqrt(diff(phi(t),t)^2+m^2*phi(t)^2)*diff(phi(t),t)+m^2*phi(t));&lt;br&gt;#Following Adri van der Meer we turn the equation into a first order system:&lt;br&gt;sys:=diff(phi(t),t)=phi1(t),subs(diff(phi(t),t)=phi1(t),ode);&lt;br&gt;#I pick my own parameters, m = M = 1:&lt;br&gt;with(DEtools):&lt;br&gt;DEplot(eval([sys],{M=1,m=1}),[phi(t),phi1(t)],t=0..30,[[phi(0)=1,phi1(0)=0],[phi(0)=-1,phi1(0)=0],[phi(0)=2,phi1(0)=-1],[phi(0)=-2,phi1(0)=1]],color=grey,linecolor=blue,stepsize=.1,thickness=1);&lt;br&gt;&lt;br&gt;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Using equation 3.4.82 in the reference you gave and also &lt;br&gt;diff(phi,t,t) = phidot*diff(phidot,phi) we are back to the second order ode:&lt;/p&gt;
&lt;p&gt;ode:=diff(phi(t),t,t)=-(sqrt(3/2)/M^2*sqrt(diff(phi(t),t)^2+m^2*phi(t)^2)*diff(phi(t),t)+m^2*phi(t));&lt;br&gt;#Following Adri van der Meer we turn the equation into a first order system:&lt;br&gt;sys:=diff(phi(t),t)=phi1(t),subs(diff(phi(t),t)=phi1(t),ode);&lt;br&gt;#I pick my own parameters, m = M = 1:&lt;br&gt;with(DEtools):&lt;br&gt;DEplot(eval([sys],{M=1,m=1}),[phi(t),phi1(t)],t=0..30,[[phi(0)=1,phi1(0)=0],[phi(0)=-1,phi1(0)=0],[phi(0)=2,phi1(0)=-1],[phi(0)=-2,phi1(0)=1]],color=grey,linecolor=blue,stepsize=.1,thickness=1);&lt;br&gt;&lt;br&gt;&lt;/p&gt;</description>
      <guid>143654</guid>
      <pubDate>Tue, 19 Feb 2013 21:09:11 Z</pubDate>
      <itunes:author>Preben Alsholm</itunes:author>
      <author>Preben Alsholm</author>
    </item>
    <item>
      <title>Final attempt</title>
      <link>http://www.mapleprimes.com/questions/143625-Phase-Plots-From-A-Differential-Equation?ref=Feed:MaplePrimes:phase plots from a differential equation:Comments#answer143655</link>
      <itunes:summary>&lt;p&gt;I take the constant 1 (instead of 10^10). Then I get:&lt;/p&gt;
&lt;pre&gt;DE := diff(z(t),t,t) = -((sqrt(diff(z(t),t)^2+z(t)^2)*diff(z(t),t))+z(t));&lt;br&gt;DE2 := diff(z(t),t)=y(t),&amp;nbsp; subs( {diff(z(t),t)=y(t)}, DE );&lt;br&gt;with(DEtools):&lt;br&gt;DEplot( {DE2}, [z,y], t=0..10, &lt;br&gt;&amp;nbsp;&amp;nbsp; {[z(0)=-2,y(0)=2],[z(0)=-1,y(0)=-2],[z(0)=2,y(0)=-2]}, &lt;br&gt;&amp;nbsp;&amp;nbsp; z=-2..2, y=-2..2, arrows=smalltwo, linecolor=blue );&lt;/pre&gt;
&lt;p&gt;which looks like figure 3.5&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;I take the constant 1 (instead of 10^10). Then I get:&lt;/p&gt;
&lt;pre&gt;DE := diff(z(t),t,t) = -((sqrt(diff(z(t),t)^2+z(t)^2)*diff(z(t),t))+z(t));&lt;br&gt;DE2 := diff(z(t),t)=y(t),&amp;nbsp; subs( {diff(z(t),t)=y(t)}, DE );&lt;br&gt;with(DEtools):&lt;br&gt;DEplot( {DE2}, [z,y], t=0..10, &lt;br&gt;&amp;nbsp;&amp;nbsp; {[z(0)=-2,y(0)=2],[z(0)=-1,y(0)=-2],[z(0)=2,y(0)=-2]}, &lt;br&gt;&amp;nbsp;&amp;nbsp; z=-2..2, y=-2..2, arrows=smalltwo, linecolor=blue );&lt;/pre&gt;
&lt;p&gt;which looks like figure 3.5&lt;/p&gt;</description>
      <guid>143655</guid>
      <pubDate>Tue, 19 Feb 2013 21:11:53 Z</pubDate>
      <itunes:author>Adri van der Meer</itunes:author>
      <author>Adri van der Meer</author>
    </item>
    <item>
      <title>thanks that is awesome, can I ask how you</title>
      <link>http://www.mapleprimes.com/questions/143625-Phase-Plots-From-A-Differential-Equation?ref=Feed:MaplePrimes:phase plots from a differential equation:Comments#answer143658</link>
      <itunes:summary>&lt;p&gt;thanks that is awesome, can I ask how you arose at the intitial conditions that you used because i am always unsure what to do here?&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;thanks that is awesome, can I ask how you arose at the intitial conditions that you used because i am always unsure what to do here?&lt;/p&gt;</description>
      <guid>143658</guid>
      <pubDate>Tue, 19 Feb 2013 21:43:43 Z</pubDate>
      <itunes:author>gdog</itunes:author>
      <author>gdog</author>
    </item>
  </channel>
</rss>