<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, Solving a non-linear differential equation</title>
    <link>http://www.mapleprimes.com/questions/37086-Solving-A-Nonlinear-Differential-Equation</link>
    <language>en-us</language>
    <copyright>2026 Maplesoft, A Division of Waterloo Maple Inc.</copyright>
    <generator>Maplesoft Document System</generator>
    <lastBuildDate>Sat, 13 Jun 2026 18:18:22 GMT</lastBuildDate>
    <pubDate>Sat, 13 Jun 2026 18:18:22 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, Solving a non-linear differential equation</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, Solving a non-linear differential equation</title>
      <link>http://www.mapleprimes.com/questions/37086-Solving-A-Nonlinear-Differential-Equation</link>
    </image>
    <item>
      <title>series solution</title>
      <link>http://www.mapleprimes.com/questions/37086-Solving-A-Nonlinear-Differential-Equation?ref=Feed:MaplePrimes:Solving a non-linear differential equation:Comments#answer65041</link>
      <itunes:summary>&lt;p&gt;You may try a series solution like:&lt;/p&gt;
&lt;pre&gt;
de:= diff(y(t),t)=cos(Pi*t*y(t)):
ics:=y(0)=0:
dsolve({de,ics},y(t),series);
                                   2
                                 Pi   5      6
                      y(t) = t - --- t  + O(t )
                                 10

&lt;/pre&gt;
&lt;p&gt;Note: use Pi for 3.14...&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;You may try a series solution like:&lt;/p&gt;
&lt;pre&gt;
de:= diff(y(t),t)=cos(Pi*t*y(t)):
ics:=y(0)=0:
dsolve({de,ics},y(t),series);
                                   2
                                 Pi   5      6
                      y(t) = t - --- t  + O(t )
                                 10

&lt;/pre&gt;
&lt;p&gt;Note: use Pi for 3.14...&lt;/p&gt;</description>
      <guid>65041</guid>
      <pubDate>Thu, 02 Jul 2009 00:42:54 Z</pubDate>
      <itunes:author>jakubi</itunes:author>
      <author>jakubi</author>
    </item>
    <item>
      <title>de</title>
      <link>http://www.mapleprimes.com/questions/37086-Solving-A-Nonlinear-Differential-Equation?ref=Feed:MaplePrimes:Solving a non-linear differential equation:Comments#answer65042</link>
      <itunes:summary>&lt;p&gt;In all likelihood there are no closed-form solutions.&amp;nbsp; Besides series, you could try numerical solutions.&amp;nbsp; Using Pi, as jakubi remarked:&lt;/p&gt;
&lt;p&gt;&amp;gt; S:= dsolve({de, ics}, y(t), numeric);&lt;/p&gt;
&lt;p&gt;&amp;gt; plots[odeplot](S,[t,y(t)],t=0..10);&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;It looks like y(t) ~ 1/(2 t) as t -&amp;gt; infinity.&amp;nbsp; More precisely:&lt;/p&gt;
&lt;p&gt;1/(2*t)+1/(2*Pi*t^3)+3/2/Pi^2/t^5+1/48*(Pi^2+360)/Pi^3/t^7+1/6*(2*Pi^2+315)/Pi^4/t^9+3/1280*(Pi^4+1920*Pi^2+201600)/Pi^5/t^11 + O(t^(-13))&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;In all likelihood there are no closed-form solutions.&amp;nbsp; Besides series, you could try numerical solutions.&amp;nbsp; Using Pi, as jakubi remarked:&lt;/p&gt;
&lt;p&gt;&amp;gt; S:= dsolve({de, ics}, y(t), numeric);&lt;/p&gt;
&lt;p&gt;&amp;gt; plots[odeplot](S,[t,y(t)],t=0..10);&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;It looks like y(t) ~ 1/(2 t) as t -&amp;gt; infinity.&amp;nbsp; More precisely:&lt;/p&gt;
&lt;p&gt;1/(2*t)+1/(2*Pi*t^3)+3/2/Pi^2/t^5+1/48*(Pi^2+360)/Pi^3/t^7+1/6*(2*Pi^2+315)/Pi^4/t^9+3/1280*(Pi^4+1920*Pi^2+201600)/Pi^5/t^11 + O(t^(-13))&lt;/p&gt;</description>
      <guid>65042</guid>
      <pubDate>Thu, 02 Jul 2009 01:40:14 Z</pubDate>
      <itunes:author>Robert Israel</itunes:author>
      <author>Robert Israel</author>
    </item>
    <item>
      <title>Oo thank you! That</title>
      <link>http://www.mapleprimes.com/questions/37086-Solving-A-Nonlinear-Differential-Equation?ref=Feed:MaplePrimes:Solving a non-linear differential equation:Comments#answer65043</link>
      <itunes:summary>&lt;p&gt;Oo thank you! That helped.&lt;/p&gt;
&lt;p&gt;Now I'm trying to graphs a sequence of solutions with different initial conditions on one graph. So I wrote this:&lt;/p&gt;
&lt;p&gt;display(seq(plots[odeplot](dsolve({de, y(0)=k}, y(t), numeric), [t,y(t)], t=0..10), k=0..4, 0.2), insequence=true)&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;But the output from that is basically:&lt;/p&gt;
&lt;p&gt;display(PLOT(...), PLOT(...).... etcetc)&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I checked the brackets and I think they're all okay. Is it the syntax? Or just the idea in general?&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Oo thank you! That helped.&lt;/p&gt;
&lt;p&gt;Now I'm trying to graphs a sequence of solutions with different initial conditions on one graph. So I wrote this:&lt;/p&gt;
&lt;p&gt;display(seq(plots[odeplot](dsolve({de, y(0)=k}, y(t), numeric), [t,y(t)], t=0..10), k=0..4, 0.2), insequence=true)&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;But the output from that is basically:&lt;/p&gt;
&lt;p&gt;display(PLOT(...), PLOT(...).... etcetc)&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I checked the brackets and I think they're all okay. Is it the syntax? Or just the idea in general?&lt;/p&gt;</description>
      <guid>65043</guid>
      <pubDate>Thu, 02 Jul 2009 03:59:16 Z</pubDate>
      <itunes:author>Melawrgh</itunes:author>
      <author>Melawrgh</author>
    </item>
    <item>
      <title>display</title>
      <link>http://www.mapleprimes.com/questions/37086-Solving-A-Nonlinear-Differential-Equation?ref=Feed:MaplePrimes:Solving a non-linear differential equation:Comments#comment65044</link>
      <itunes:summary>&lt;p&gt;The &lt;b&gt;display&lt;/b&gt; command is in the &lt;b&gt;plots&lt;/b&gt; package.&amp;nbsp; So you could use &lt;b&gt;plots[display]&lt;/b&gt; instead of just &lt;b&gt;display&lt;/b&gt;.&lt;/p&gt;
&lt;p&gt;The option &lt;b&gt;insequence=true&lt;/b&gt; will give you an animation.&amp;nbsp; Leave it out if you want the different solutions all on one graph.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;The &lt;b&gt;display&lt;/b&gt; command is in the &lt;b&gt;plots&lt;/b&gt; package.&amp;nbsp; So you could use &lt;b&gt;plots[display]&lt;/b&gt; instead of just &lt;b&gt;display&lt;/b&gt;.&lt;/p&gt;
&lt;p&gt;The option &lt;b&gt;insequence=true&lt;/b&gt; will give you an animation.&amp;nbsp; Leave it out if you want the different solutions all on one graph.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description>
      <guid>65044</guid>
      <pubDate>Thu, 02 Jul 2009 04:35:45 Z</pubDate>
      <itunes:author>Robert Israel</itunes:author>
      <author>Robert Israel</author>
    </item>
  </channel>
</rss>