<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, weird error that I don't understand</title>
    <link>http://www.mapleprimes.com/questions/142922-Weird-Error-That-I-Dont-Understand</link>
    <language>en-us</language>
    <copyright>2026 Maplesoft, A Division of Waterloo Maple Inc.</copyright>
    <generator>Maplesoft Document System</generator>
    <lastBuildDate>Tue, 09 Jun 2026 12:19:15 GMT</lastBuildDate>
    <pubDate>Tue, 09 Jun 2026 12:19:15 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, weird error that I don't understand</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, weird error that I don't understand</title>
      <link>http://www.mapleprimes.com/questions/142922-Weird-Error-That-I-Dont-Understand</link>
    </image>
    <item>
      <title>Not PDE's</title>
      <link>http://www.mapleprimes.com/questions/142922-Weird-Error-That-I-Dont-Understand?ref=Feed:MaplePrimes:weird error that I don't understand:Comments#answer142931</link>
      <itunes:summary>&lt;p&gt;These are a system of nonautonomous ODE's. I try to find a numeric solution of the IVP:&lt;/p&gt;
&lt;pre&gt;t := diff(X(x), x) = -(1-6*R(x)^(1/2))^(1/2)*x*X(x)/(X(x)*x+R(x))^(1/2), &lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; diff(R(x), x) = (1-6*R(x)^(1/2))^(1/2)*x^2*X(x)/(X(x)*x+R(x))^(1/2):&lt;br&gt;init := R(0) = 0, X(0) = 100:&lt;br&gt;sol := dsolve( {t,init}, {R(x),X(x)}, type=numeric, range=0..2 ):&lt;br&gt;&lt;span style="text-decoration: underline;"&gt;Warning, cannot evaluate the solution past the initial point, problem may be complex, &lt;br&gt;initially singular or&lt;/span&gt;&lt;span style="text-decoration: underline;"&gt; improperly set up&lt;/span&gt;&lt;br&gt;&lt;br&gt;&lt;/pre&gt;
&lt;p&gt;Indeed, "initially singular": both denominators are zero at x=0.&lt;br&gt;So I take other IV's:&lt;/p&gt;
&lt;pre&gt;init := R(1) = 0, X(1) = 100:&lt;br&gt;sol := dsolve( {t,init}, {R(x),X(x)}, type=numeric, range=1..1.05 ):&lt;br&gt;plots:-odeplot(sol, [x,R(x)], refine=50);&lt;br&gt;&lt;a href="/view.aspx?sf=142931/452855/odeplot.gif"&gt;&lt;img src="/view.aspx?sf=142931/452855/odeplot.gif" alt=""&gt;&lt;/a&gt;&lt;br&gt;plots:-odeplot(sol, [x,X(x)], refine=50);&lt;br&gt;&lt;a href="/view.aspx?sf=142931/452855/odeplot2.gif"&gt;&lt;img src="/view.aspx?sf=142931/452855/odeplot2.gif" alt=""&gt;&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;/pre&gt;</itunes:summary>
      <description>&lt;p&gt;These are a system of nonautonomous ODE's. I try to find a numeric solution of the IVP:&lt;/p&gt;
&lt;pre&gt;t := diff(X(x), x) = -(1-6*R(x)^(1/2))^(1/2)*x*X(x)/(X(x)*x+R(x))^(1/2), &lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; diff(R(x), x) = (1-6*R(x)^(1/2))^(1/2)*x^2*X(x)/(X(x)*x+R(x))^(1/2):&lt;br&gt;init := R(0) = 0, X(0) = 100:&lt;br&gt;sol := dsolve( {t,init}, {R(x),X(x)}, type=numeric, range=0..2 ):&lt;br&gt;&lt;span style="text-decoration: underline;"&gt;Warning, cannot evaluate the solution past the initial point, problem may be complex, &lt;br&gt;initially singular or&lt;/span&gt;&lt;span style="text-decoration: underline;"&gt; improperly set up&lt;/span&gt;&lt;br&gt;&lt;br&gt;&lt;/pre&gt;
&lt;p&gt;Indeed, "initially singular": both denominators are zero at x=0.&lt;br&gt;So I take other IV's:&lt;/p&gt;
&lt;pre&gt;init := R(1) = 0, X(1) = 100:&lt;br&gt;sol := dsolve( {t,init}, {R(x),X(x)}, type=numeric, range=1..1.05 ):&lt;br&gt;plots:-odeplot(sol, [x,R(x)], refine=50);&lt;br&gt;&lt;a href="/view.aspx?sf=142931/452855/odeplot.gif"&gt;&lt;img src="/view.aspx?sf=142931/452855/odeplot.gif" alt=""&gt;&lt;/a&gt;&lt;br&gt;plots:-odeplot(sol, [x,X(x)], refine=50);&lt;br&gt;&lt;a href="/view.aspx?sf=142931/452855/odeplot2.gif"&gt;&lt;img src="/view.aspx?sf=142931/452855/odeplot2.gif" alt=""&gt;&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;/pre&gt;</description>
      <guid>142931</guid>
      <pubDate>Fri, 01 Feb 2013 20:04:52 Z</pubDate>
      <itunes:author>Adri van der Meer</itunes:author>
      <author>Adri van der Meer</author>
    </item>
    <item>
      <title>Syntax error</title>
      <link>http://www.mapleprimes.com/questions/142922-Weird-Error-That-I-Dont-Understand?ref=Feed:MaplePrimes:weird error that I don't understand:Comments#answer142932</link>
      <itunes:summary>&lt;p&gt;It should be&lt;br&gt;init:= R(0) = 0, X(0) = 100;&lt;/p&gt;
&lt;p&gt;When using PDEtools:-Solve you need to give the variables [R(x),X(x)] as a second argument.&lt;br&gt;However, I don't know if you will have any luck with this approach.&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;It should be&lt;br&gt;init:= R(0) = 0, X(0) = 100;&lt;/p&gt;
&lt;p&gt;When using PDEtools:-Solve you need to give the variables [R(x),X(x)] as a second argument.&lt;br&gt;However, I don't know if you will have any luck with this approach.&lt;/p&gt;</description>
      <guid>142932</guid>
      <pubDate>Fri, 01 Feb 2013 20:07:19 Z</pubDate>
      <itunes:author>Preben Alsholm</itunes:author>
      <author>Preben Alsholm</author>
    </item>
    <item>
      <title>Special handling at 0 and later.</title>
      <link>http://www.mapleprimes.com/questions/142922-Weird-Error-That-I-Dont-Understand?ref=Feed:MaplePrimes:weird error that I don't understand:Comments#answer142938</link>
      <itunes:summary>&lt;p&gt;Your system (with the unusual name of t):&lt;br&gt;t := diff(X(x), x) = -(1-6*R(x)^(1/2))^(1/2)*x*X(x)/(X(x)*x+R(x))^(1/2), &lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; diff(R(x), x) = (1-6*R(x)^(1/2))^(1/2)*x^2*X(x)/(X(x)*x+R(x))^(1/2);&lt;br&gt;init:=R(0) = 0, X(0) = 100;&lt;br&gt;#The obvious problem at x = 0 can be handled by taking the limit for x-&amp;gt;0. On both right hand sides we get 0.&lt;br&gt;#Another problem occurs when 1-6*sqrt(R(x)) = 0. &lt;br&gt;#So here is a revised system:&lt;br&gt;sys:=diff(X(x), x)=piecewise(x&amp;gt;0 and 6*sqrt(R(x))&amp;lt;1,rhs(t[1]),0),&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; diff(R(x), x)=piecewise(x&amp;gt;0 and 6*sqrt(R(x))&amp;lt;1,rhs(t[2]),0);&lt;br&gt;res:=dsolve({sys,init},[X(x),R(x)],numeric);&lt;br&gt;plots:-odeplot(res,[x,R(x)],0..0.5);&lt;br&gt;plots:-odeplot(res,[x,X(x)],0..0.5);&lt;br&gt;&lt;br&gt;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Your system (with the unusual name of t):&lt;br&gt;t := diff(X(x), x) = -(1-6*R(x)^(1/2))^(1/2)*x*X(x)/(X(x)*x+R(x))^(1/2), &lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; diff(R(x), x) = (1-6*R(x)^(1/2))^(1/2)*x^2*X(x)/(X(x)*x+R(x))^(1/2);&lt;br&gt;init:=R(0) = 0, X(0) = 100;&lt;br&gt;#The obvious problem at x = 0 can be handled by taking the limit for x-&amp;gt;0. On both right hand sides we get 0.&lt;br&gt;#Another problem occurs when 1-6*sqrt(R(x)) = 0. &lt;br&gt;#So here is a revised system:&lt;br&gt;sys:=diff(X(x), x)=piecewise(x&amp;gt;0 and 6*sqrt(R(x))&amp;lt;1,rhs(t[1]),0),&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; diff(R(x), x)=piecewise(x&amp;gt;0 and 6*sqrt(R(x))&amp;lt;1,rhs(t[2]),0);&lt;br&gt;res:=dsolve({sys,init},[X(x),R(x)],numeric);&lt;br&gt;plots:-odeplot(res,[x,R(x)],0..0.5);&lt;br&gt;plots:-odeplot(res,[x,X(x)],0..0.5);&lt;br&gt;&lt;br&gt;&lt;/p&gt;</description>
      <guid>142938</guid>
      <pubDate>Fri, 01 Feb 2013 21:08:34 Z</pubDate>
      <itunes:author>Preben Alsholm</itunes:author>
      <author>Preben Alsholm</author>
    </item>
    <item>
      <title>thx guys you have been really helpful, is</title>
      <link>http://www.mapleprimes.com/questions/142922-Weird-Error-That-I-Dont-Understand?ref=Feed:MaplePrimes:weird error that I don't understand:Comments#answer142989</link>
      <itunes:summary>&lt;p&gt;thx guys you have been really helpful, is it possible to get these bot honto the same plot?&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;thx guys you have been really helpful, is it possible to get these bot honto the same plot?&lt;/p&gt;</description>
      <guid>142989</guid>
      <pubDate>Sun, 03 Feb 2013 01:19:23 Z</pubDate>
      <itunes:author>gdog</itunes:author>
      <author>gdog</author>
    </item>
    <item>
      <title>thx guys, is there a setting to allow for X(1</title>
      <link>http://www.mapleprimes.com/questions/142922-Weird-Error-That-I-Dont-Understand?ref=Feed:MaplePrimes:weird error that I don't understand:Comments#answer143015</link>
      <itunes:summary>&lt;p&gt;thx guys, is there a setting to allow for X(1) to be a very large number, because when i try and plot say 10^20 it wont work?&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;thx guys, is there a setting to allow for X(1) to be a very large number, because when i try and plot say 10^20 it wont work?&lt;/p&gt;</description>
      <guid>143015</guid>
      <pubDate>Sun, 03 Feb 2013 17:54:18 Z</pubDate>
      <itunes:author>gdog</itunes:author>
      <author>gdog</author>
    </item>
    <item>
      <title>PDEtools:-Solve just calls dsolve for ode case</title>
      <link>http://www.mapleprimes.com/questions/142922-Weird-Error-That-I-Dont-Understand?ref=Feed:MaplePrimes:weird error that I don't understand:Comments#comment142939</link>
      <itunes:summary>&lt;p&gt;&lt;strong&gt;PDEtools:-Solve &lt;/strong&gt;just passes the problem on to &lt;strong&gt;dsolve&lt;/strong&gt; if it detects that they're ODEs. If &lt;strong&gt;dsolve&lt;/strong&gt; is used for this problem without the &lt;strong&gt;numeric&lt;/strong&gt; option, it will spend a huge amount of time and memory trying to find a symbolic solution. I didn't let it finish, as I was getting close to my memory limit.&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;&lt;strong&gt;PDEtools:-Solve &lt;/strong&gt;just passes the problem on to &lt;strong&gt;dsolve&lt;/strong&gt; if it detects that they're ODEs. If &lt;strong&gt;dsolve&lt;/strong&gt; is used for this problem without the &lt;strong&gt;numeric&lt;/strong&gt; option, it will spend a huge amount of time and memory trying to find a symbolic solution. I didn't let it finish, as I was getting close to my memory limit.&lt;/p&gt;</description>
      <guid>142939</guid>
      <pubDate>Fri, 01 Feb 2013 22:07:31 Z</pubDate>
      <itunes:author>Carl Love</itunes:author>
      <author>Carl Love</author>
    </item>
  </channel>
</rss>