<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, Asympotic solution</title>
    <link>http://www.mapleprimes.com/questions/37107-Asympotic-Solution</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 11:51:42 GMT</lastBuildDate>
    <pubDate>Thu, 11 Jun 2026 11:51:42 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, Asympotic solution</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, Asympotic solution</title>
      <link>http://www.mapleprimes.com/questions/37107-Asympotic-Solution</link>
    </image>
    <item>
      <title>Asymptotic solution</title>
      <link>http://www.mapleprimes.com/questions/37107-Asympotic-Solution?ref=Feed:MaplePrimes:Asympotic solution:Comments#answer65119</link>
      <itunes:summary>&lt;pre&gt;
&amp;gt; de := diff(y(r), r, r)+2*(diff(y(r),r))/r+9*(16*43)*Pi^2*sqrt(Pi/(2*(1/43)^3))
*polylog(3/2,-exp(1/43*(43-y(r))))/(16*Pi^2*sqrt(43)^3) = 0;&lt;/pre&gt;
&lt;p&gt;Change of independent variable: s = 1/r.&lt;/p&gt;
&lt;pre&gt;
&amp;gt; sde:= simplify(PDEtools[dchange](r=1/s, de));
&lt;/pre&gt;
&lt;pre&gt;&lt;maple&gt;sde := s^4*diff(y(s),`$`(s,2))+387/2*2^(1/2)*Pi^(1/2)*polylog(3/2,-exp(1-1/43*y(s))) = 0&lt;/maple&gt;
&lt;/pre&gt;
&lt;p&gt;As mentioned in another thread, it looks like the solutions are asymptotically logarithmic.&amp;nbsp; Try a logarithm:&lt;/p&gt;
&lt;pre&gt;
&amp;gt; simplify(eval(lhs(sde),y(s) = c + a*ln(s)));
&lt;/pre&gt;
&lt;p&gt;&lt;maple&gt;-s^2*a+387/2*2^(1/2)*Pi^(1/2)*polylog(3/2,-exp(1-c/43)*s^(-1/43*a))&lt;/maple&gt;&lt;/p&gt;
&lt;p&gt;Now polylog(3/2, t) = t + O(t^2), so for this to give 0 to lowest order, we want a = -86.&lt;/p&gt;
&lt;pre&gt;
&amp;gt; series(eval(%,a=-86),s);
&lt;/pre&gt;
&lt;p&gt;&lt;maple&gt;(86-387/2*2^(1/2)*Pi^(1/2)*exp(1-1/43*c))*s^2+387/4*Pi^(1/2)*exp(1-1/43*c)^2*s^4+O(s^6)&lt;/maple&gt;&lt;/p&gt;
&lt;p&gt;Choose c to make the s^2 term 0.&lt;/p&gt;
&lt;pre&gt;
&amp;gt; c0:= solve(coeff(%,s,2)=0);
&lt;/pre&gt;
&lt;p&gt;&lt;maple&gt;c0 := 43+43/2*ln(81/8*Pi)&lt;/maple&gt;&lt;/p&gt;
&lt;p&gt;Now let y(s) = c0&amp;nbsp; - 86*ln(s) + u(s), where hopefully u(s) is small when s is small.&lt;/p&gt;
&lt;pre&gt;
&amp;gt; ude:= simplify(eval(sde, y(s) = c0 - 86*ln(s) + u(s)));
&lt;/pre&gt;
&lt;p&gt;&lt;maple&gt;ude := 86*s^2+s^4*diff(u(s),`$`(s,2))+387/2*2^(1/2)*Pi^(1/2)*polylog(3/2,-2/9*2^(1/2)/Pi^(1/2)*s^2*exp(-1/43*u(s))) = 0&lt;/maple&gt;&lt;/p&gt;
&lt;p&gt;Linearize this, and solve the linearization:&lt;/p&gt;
&lt;pre&gt;
&amp;gt; lde:= eval(ude,{polylog=unapply(t,(r,t)), exp=(t -&amp;gt; 1+t)});
  dsolve(lde);
&lt;/pre&gt;
&lt;p&gt;&lt;maple&gt;u(s) = _C1*s^(1/2)*sin(1/2*7^(1/2)*ln(s))+_C2*s^(1/2)*cos(1/2*7^(1/2)*ln(s))&lt;/maple&gt;&lt;/p&gt;
&lt;p&gt;Presumably the _C1 and _C2 will be arbitrary constants, corresponding to the fact that solutions form a 2-parameter family.&amp;nbsp; The next terms, which we'll want to make the s^3 terms in the differential equation 0, are, I think, c1*s*cos(7^(1/2)*ln(s))+c2*s*sin(7^(1/2)*ln(s))+c3*s.&lt;/p&gt;
&lt;pre&gt;
&amp;gt; eval(ude,u(s) = _C1*s^(1/2)*sin(1/2*7^(1/2)*ln(s))+_C2*s^(1/2)*cos(1/2*7^(1/2)*ln(s)) 
    + c1*s*cos(7^(1/2)*ln(s)) + c2*s*sin(7^(1/2)*ln(s)) + c3*s);
&lt;/pre&gt;
&lt;p&gt;The usual series command can't handle this, but the MultiSeries version can.&amp;nbsp;&lt;/p&gt;
&lt;pre&gt;
&amp;gt; MultiSeries:-series(lhs(%),s,3);
&lt;/pre&gt;
&lt;p&gt;&lt;maple&gt;(2/43*_C1*sin(1/2*ln(1/s)*7^(1/2))*_C2*cos(1/2*ln(1/s)*7^(1/2))-5*c1*cos(ln(1/s)*7^(1/2))-1/43*_C1^2*sin(1/2*ln(1/s)*7^(1/2))^2-1/43*_C2^2*cos(1/2*ln(1/s)*7^(1/2))^2+5*c2*sin(ln(1/s)*7^(1/2))+7^(1/2)*c2*cos(ln(1/s)*7^(1/2))+2*c3+7^(1/2)*c1*sin(ln(1/s)*7^(1/2)))*s^3+O(s^(7/2)*(((-1/86*exp(-I*ln(1/s)*7^(1/2))-1/86*exp(ln(1/s)*7^(1/2)*I))*c1+(1/86*I*exp(-I*ln(1/s)*7^(1/2))-1/86*I*exp(ln(1/s)*7^(1/2)*I))*c2-1/43*c3)*((1/86*I*exp(-1/2*I*ln(1/s)*7^(1/2))-1/86*I*exp(1/2*I*ln(1/s)*7^(1/2)))*_C1+(-1/86*exp(-1/2*I*ln(1/s)*7^(1/2))-1/86*exp(1/2*I*ln(1/s)*7^(1/2)))*_C2)+1/6*((1/86*I*exp(-1/2*I*ln(1/s)*7^(1/2))-1/86*I*exp(1/2*I*ln(1/s)*7^(1/2)))*_C1+(-1/86*exp(-1/2*I*ln(1/s)*7^(1/2))-1/86*exp(1/2*I*ln(1/s)*7^(1/2)))*_C2)^3))&lt;/maple&gt;&lt;/p&gt;
&lt;pre&gt;
&amp;gt; s3term:= simplify(combine(eval(%,O=0))) assuming s &amp;gt; 0;
&lt;/pre&gt;
&lt;p&gt;&lt;maple&gt;s3term := 1/86*s^3*(-2*_C1*_C2*sin(7^(1/2)*ln(s))-430*c1*cos(7^(1/2)*ln(s))-_C1^2+_C1^2*cos(7^(1/2)*ln(s))-_C2^2*cos(7^(1/2)*ln(s))-_C2^2-430*c2*sin(7^(1/2)*ln(s))+86*7^(1/2)*c2*cos(7^(1/2)*ln(s))+172*c3-86*7^(1/2)*c1*sin(7^(1/2)*ln(s)))&lt;/maple&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;pre&gt;
&amp;gt; solve(identity(s3term,s),{c1,c2,c3});
&lt;/pre&gt;
&lt;p&gt;&lt;maple&gt;{c1 = 1/19264*7^(1/2)*(-5*7^(1/2)*_C2^2-14*_C1*_C2+5*7^(1/2)*_C1^2), c2 = -1/19264*(-7*_C2^2+10*_C1*_C2*7^(1/2)+7*_C1^2)*7^(1/2), c3 = 1/172*_C2^2+1/172*_C1^2}&lt;/maple&gt;&lt;/p&gt;
&lt;p&gt;To sum up, an asymptotic form for the solution as r -&amp;gt; infinity is &lt;/p&gt;
&lt;maple&gt;c0 + 86*ln(r) - _C1*r^(-1/2)*sin(1/2*7^(1/2)*ln(r))+_C2*r^(-1/2)*cos(1/2*7^(1/2)*ln(r))
+ c1/r*cos(7^(1/2)*ln(r)) - c2/r*sin(7^(1/2)*ln(r))+c3/r&lt;/maple&gt;
&lt;p&gt;with c0, c1, c2 and c3 as above.&amp;nbsp; The approximate values of _C1 and _C2 may be obtained by comparing this function and its derivative to the values for the numerical solution (obtained in another thread) at some convenient large value of r.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</itunes:summary>
      <description>&lt;pre&gt;
&amp;gt; de := diff(y(r), r, r)+2*(diff(y(r),r))/r+9*(16*43)*Pi^2*sqrt(Pi/(2*(1/43)^3))
*polylog(3/2,-exp(1/43*(43-y(r))))/(16*Pi^2*sqrt(43)^3) = 0;&lt;/pre&gt;
&lt;p&gt;Change of independent variable: s = 1/r.&lt;/p&gt;
&lt;pre&gt;
&amp;gt; sde:= simplify(PDEtools[dchange](r=1/s, de));
&lt;/pre&gt;
&lt;pre&gt;&lt;maple&gt;sde := s^4*diff(y(s),`$`(s,2))+387/2*2^(1/2)*Pi^(1/2)*polylog(3/2,-exp(1-1/43*y(s))) = 0&lt;/maple&gt;
&lt;/pre&gt;
&lt;p&gt;As mentioned in another thread, it looks like the solutions are asymptotically logarithmic.&amp;nbsp; Try a logarithm:&lt;/p&gt;
&lt;pre&gt;
&amp;gt; simplify(eval(lhs(sde),y(s) = c + a*ln(s)));
&lt;/pre&gt;
&lt;p&gt;&lt;maple&gt;-s^2*a+387/2*2^(1/2)*Pi^(1/2)*polylog(3/2,-exp(1-c/43)*s^(-1/43*a))&lt;/maple&gt;&lt;/p&gt;
&lt;p&gt;Now polylog(3/2, t) = t + O(t^2), so for this to give 0 to lowest order, we want a = -86.&lt;/p&gt;
&lt;pre&gt;
&amp;gt; series(eval(%,a=-86),s);
&lt;/pre&gt;
&lt;p&gt;&lt;maple&gt;(86-387/2*2^(1/2)*Pi^(1/2)*exp(1-1/43*c))*s^2+387/4*Pi^(1/2)*exp(1-1/43*c)^2*s^4+O(s^6)&lt;/maple&gt;&lt;/p&gt;
&lt;p&gt;Choose c to make the s^2 term 0.&lt;/p&gt;
&lt;pre&gt;
&amp;gt; c0:= solve(coeff(%,s,2)=0);
&lt;/pre&gt;
&lt;p&gt;&lt;maple&gt;c0 := 43+43/2*ln(81/8*Pi)&lt;/maple&gt;&lt;/p&gt;
&lt;p&gt;Now let y(s) = c0&amp;nbsp; - 86*ln(s) + u(s), where hopefully u(s) is small when s is small.&lt;/p&gt;
&lt;pre&gt;
&amp;gt; ude:= simplify(eval(sde, y(s) = c0 - 86*ln(s) + u(s)));
&lt;/pre&gt;
&lt;p&gt;&lt;maple&gt;ude := 86*s^2+s^4*diff(u(s),`$`(s,2))+387/2*2^(1/2)*Pi^(1/2)*polylog(3/2,-2/9*2^(1/2)/Pi^(1/2)*s^2*exp(-1/43*u(s))) = 0&lt;/maple&gt;&lt;/p&gt;
&lt;p&gt;Linearize this, and solve the linearization:&lt;/p&gt;
&lt;pre&gt;
&amp;gt; lde:= eval(ude,{polylog=unapply(t,(r,t)), exp=(t -&amp;gt; 1+t)});
  dsolve(lde);
&lt;/pre&gt;
&lt;p&gt;&lt;maple&gt;u(s) = _C1*s^(1/2)*sin(1/2*7^(1/2)*ln(s))+_C2*s^(1/2)*cos(1/2*7^(1/2)*ln(s))&lt;/maple&gt;&lt;/p&gt;
&lt;p&gt;Presumably the _C1 and _C2 will be arbitrary constants, corresponding to the fact that solutions form a 2-parameter family.&amp;nbsp; The next terms, which we'll want to make the s^3 terms in the differential equation 0, are, I think, c1*s*cos(7^(1/2)*ln(s))+c2*s*sin(7^(1/2)*ln(s))+c3*s.&lt;/p&gt;
&lt;pre&gt;
&amp;gt; eval(ude,u(s) = _C1*s^(1/2)*sin(1/2*7^(1/2)*ln(s))+_C2*s^(1/2)*cos(1/2*7^(1/2)*ln(s)) 
    + c1*s*cos(7^(1/2)*ln(s)) + c2*s*sin(7^(1/2)*ln(s)) + c3*s);
&lt;/pre&gt;
&lt;p&gt;The usual series command can't handle this, but the MultiSeries version can.&amp;nbsp;&lt;/p&gt;
&lt;pre&gt;
&amp;gt; MultiSeries:-series(lhs(%),s,3);
&lt;/pre&gt;
&lt;p&gt;&lt;maple&gt;(2/43*_C1*sin(1/2*ln(1/s)*7^(1/2))*_C2*cos(1/2*ln(1/s)*7^(1/2))-5*c1*cos(ln(1/s)*7^(1/2))-1/43*_C1^2*sin(1/2*ln(1/s)*7^(1/2))^2-1/43*_C2^2*cos(1/2*ln(1/s)*7^(1/2))^2+5*c2*sin(ln(1/s)*7^(1/2))+7^(1/2)*c2*cos(ln(1/s)*7^(1/2))+2*c3+7^(1/2)*c1*sin(ln(1/s)*7^(1/2)))*s^3+O(s^(7/2)*(((-1/86*exp(-I*ln(1/s)*7^(1/2))-1/86*exp(ln(1/s)*7^(1/2)*I))*c1+(1/86*I*exp(-I*ln(1/s)*7^(1/2))-1/86*I*exp(ln(1/s)*7^(1/2)*I))*c2-1/43*c3)*((1/86*I*exp(-1/2*I*ln(1/s)*7^(1/2))-1/86*I*exp(1/2*I*ln(1/s)*7^(1/2)))*_C1+(-1/86*exp(-1/2*I*ln(1/s)*7^(1/2))-1/86*exp(1/2*I*ln(1/s)*7^(1/2)))*_C2)+1/6*((1/86*I*exp(-1/2*I*ln(1/s)*7^(1/2))-1/86*I*exp(1/2*I*ln(1/s)*7^(1/2)))*_C1+(-1/86*exp(-1/2*I*ln(1/s)*7^(1/2))-1/86*exp(1/2*I*ln(1/s)*7^(1/2)))*_C2)^3))&lt;/maple&gt;&lt;/p&gt;
&lt;pre&gt;
&amp;gt; s3term:= simplify(combine(eval(%,O=0))) assuming s &amp;gt; 0;
&lt;/pre&gt;
&lt;p&gt;&lt;maple&gt;s3term := 1/86*s^3*(-2*_C1*_C2*sin(7^(1/2)*ln(s))-430*c1*cos(7^(1/2)*ln(s))-_C1^2+_C1^2*cos(7^(1/2)*ln(s))-_C2^2*cos(7^(1/2)*ln(s))-_C2^2-430*c2*sin(7^(1/2)*ln(s))+86*7^(1/2)*c2*cos(7^(1/2)*ln(s))+172*c3-86*7^(1/2)*c1*sin(7^(1/2)*ln(s)))&lt;/maple&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;pre&gt;
&amp;gt; solve(identity(s3term,s),{c1,c2,c3});
&lt;/pre&gt;
&lt;p&gt;&lt;maple&gt;{c1 = 1/19264*7^(1/2)*(-5*7^(1/2)*_C2^2-14*_C1*_C2+5*7^(1/2)*_C1^2), c2 = -1/19264*(-7*_C2^2+10*_C1*_C2*7^(1/2)+7*_C1^2)*7^(1/2), c3 = 1/172*_C2^2+1/172*_C1^2}&lt;/maple&gt;&lt;/p&gt;
&lt;p&gt;To sum up, an asymptotic form for the solution as r -&amp;gt; infinity is &lt;/p&gt;
&lt;maple&gt;c0 + 86*ln(r) - _C1*r^(-1/2)*sin(1/2*7^(1/2)*ln(r))+_C2*r^(-1/2)*cos(1/2*7^(1/2)*ln(r))
+ c1/r*cos(7^(1/2)*ln(r)) - c2/r*sin(7^(1/2)*ln(r))+c3/r&lt;/maple&gt;
&lt;p&gt;with c0, c1, c2 and c3 as above.&amp;nbsp; The approximate values of _C1 and _C2 may be obtained by comparing this function and its derivative to the values for the numerical solution (obtained in another thread) at some convenient large value of r.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description>
      <guid>65119</guid>
      <pubDate>Sat, 27 Jun 2009 03:54:00 Z</pubDate>
      <itunes:author>Robert Israel</itunes:author>
      <author>Robert Israel</author>
    </item>
    <item>
      <title>Masterly</title>
      <link>http://www.mapleprimes.com/questions/37107-Asympotic-Solution?ref=Feed:MaplePrimes:Asympotic solution:Comments#answer65120</link>
      <itunes:summary>&lt;p&gt;manjees, you can tell your prof that Robert cracked it.&lt;/p&gt;
&lt;p&gt;my favorite moment is &amp;quot;The next terms, which we'll want to make the s^3 terms in the differential equation 0, are, I think,...&amp;quot; I guess this is the modern equivalent of a Tartaglia moment!&lt;/p&gt;
&lt;p&gt;btw manjees, the last line comes from something like:&lt;/p&gt;
&lt;pre&gt;
eval(&amp;acute;c0&amp;acute; - 86*ln(s) + u(s), 
     u(s)=_C1*s^(1/2)*sin(1/2*7^(1/2)*ln(s))
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &amp;nbsp;&amp;nbsp;  +_C2*s^(1/2)*cos(1/2*7^(1/2)*ln(s)) 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;    +c1*s*cos(7^(1/2)*ln(s))
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;    +c2*s*sin(7^(1/2)*ln(s))
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;    +c3*s):
 eval(%,s=1/r);
&lt;/pre&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;manjees, you can tell your prof that Robert cracked it.&lt;/p&gt;
&lt;p&gt;my favorite moment is &amp;quot;The next terms, which we'll want to make the s^3 terms in the differential equation 0, are, I think,...&amp;quot; I guess this is the modern equivalent of a Tartaglia moment!&lt;/p&gt;
&lt;p&gt;btw manjees, the last line comes from something like:&lt;/p&gt;
&lt;pre&gt;
eval(&amp;acute;c0&amp;acute; - 86*ln(s) + u(s), 
     u(s)=_C1*s^(1/2)*sin(1/2*7^(1/2)*ln(s))
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;  &amp;nbsp;&amp;nbsp;  +_C2*s^(1/2)*cos(1/2*7^(1/2)*ln(s)) 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;    +c1*s*cos(7^(1/2)*ln(s))
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;    +c2*s*sin(7^(1/2)*ln(s))
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;    +c3*s):
 eval(%,s=1/r);
&lt;/pre&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description>
      <guid>65120</guid>
      <pubDate>Sat, 27 Jun 2009 11:55:27 Z</pubDate>
      <itunes:author>PatrickT</itunes:author>
      <author>PatrickT</author>
    </item>
    <item>
      <title>Thanks</title>
      <link>http://www.mapleprimes.com/questions/37107-Asympotic-Solution?ref=Feed:MaplePrimes:Asympotic solution:Comments#answer65121</link>
      <itunes:summary>Hi, 
my prof  had given this problem over summer so that we learn problem solving using maple.

It has lot more to it, but I was stuck on this DE thing and thanks to Robert, i fully understand it now.

I really appreciate the length you guy go to help out.
Thanks again
MS
P.S. I am still not able to get an expression for y(x) after applying numerical dsolve.
It's in another thread. Any advice?
</itunes:summary>
      <description>Hi, 
my prof  had given this problem over summer so that we learn problem solving using maple.

It has lot more to it, but I was stuck on this DE thing and thanks to Robert, i fully understand it now.

I really appreciate the length you guy go to help out.
Thanks again
MS
P.S. I am still not able to get an expression for y(x) after applying numerical dsolve.
It's in another thread. Any advice?
</description>
      <guid>65121</guid>
      <pubDate>Sat, 27 Jun 2009 12:06:01 Z</pubDate>
      <itunes:author>manjees</itunes:author>
      <author>manjees</author>
    </item>
    <item>
      <title>Ha....In the above post it</title>
      <link>http://www.mapleprimes.com/questions/37107-Asympotic-Solution?ref=Feed:MaplePrimes:Asympotic solution:Comments#answer65122</link>
      <itunes:summary>Ha....In the above post it was meant to be guys. 'Guy' is a typo...thanks to both of u guys...</itunes:summary>
      <description>Ha....In the above post it was meant to be guys. 'Guy' is a typo...thanks to both of u guys...</description>
      <guid>65122</guid>
      <pubDate>Sat, 27 Jun 2009 12:07:22 Z</pubDate>
      <itunes:author>manjees</itunes:author>
      <author>manjees</author>
    </item>
    <item>
      <title>last step..</title>
      <link>http://www.mapleprimes.com/questions/37107-Asympotic-Solution?ref=Feed:MaplePrimes:Asympotic solution:Comments#answer65123</link>
      <itunes:summary>Hi, how do we get the last step in Robert's solution above...

Patrick's version is a solution for y(1/r) but we need sol. for y(r).

Thanks 
MS</itunes:summary>
      <description>Hi, how do we get the last step in Robert's solution above...

Patrick's version is a solution for y(1/r) but we need sol. for y(r).

Thanks 
MS</description>
      <guid>65123</guid>
      <pubDate>Mon, 29 Jun 2009 05:39:08 Z</pubDate>
      <itunes:author>manjees</itunes:author>
      <author>manjees</author>
    </item>
    <item>
      <title>@ r=infinity</title>
      <link>http://www.mapleprimes.com/questions/37107-Asympotic-Solution?ref=Feed:MaplePrimes:Asympotic solution:Comments#answer65126</link>
      <itunes:summary>the asymptotic solution above does not go to zero at infinity as ln(r) becomes problematic at infinity...

I can take care of this if i write all ln(r)'s as ln(r/r[max]) where r[max] is a very large no. and the limit goes to r[max] rather than to infinity.

My question is : should I use r[max] at the very start or jus replace all ln[r] by ln[r/r[max]] in final asymptotic solution...(Robert's solution in a post above).

Thanks
MS</itunes:summary>
      <description>the asymptotic solution above does not go to zero at infinity as ln(r) becomes problematic at infinity...

I can take care of this if i write all ln(r)'s as ln(r/r[max]) where r[max] is a very large no. and the limit goes to r[max] rather than to infinity.

My question is : should I use r[max] at the very start or jus replace all ln[r] by ln[r/r[max]] in final asymptotic solution...(Robert's solution in a post above).

Thanks
MS</description>
      <guid>65126</guid>
      <pubDate>Tue, 30 Jun 2009 04:26:40 Z</pubDate>
      <itunes:author>manjees</itunes:author>
      <author>manjees</author>
    </item>
  </channel>
</rss>