User derek - MathOverflowmost recent 30 from http://mathoverflow.net2013-06-19T04:17:34Zhttp://mathoverflow.net/feeds/user/14591http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://mathoverflow.net/questions/62582/series-approximations-of-a-difficult-recursive-equationSeries approximation(s) of a difficult recursive equationDerek2011-04-21T22:03:24Z2011-04-22T09:20:51Z
<p>New user here. I'm working on trying to get asymptotic solutions to the following recursive function:</p>
<p>$f(r)=\frac{1}{r-k}\lgroup\sqrt{\frac{2}{k^2-1}}+\sqrt{\frac{1}{2k^2-1}}\rgroup$ (Eqn. 1)</p>
<p>where $k$ is such that</p>
<p>$r=\frac{1}{k}\lgroup\frac{\sqrt{2}(k^2-1)^{-1/2}+(2k^2-1)^{-1/2}}{\sqrt{2}(k^2-1)^{-3/2}+(2k^2-1)^{-3/2}}\rgroup+k$. (Eqn. 2)</p>
<p>Now I <em>have</em> solved this function numerically (in matlab), basically by taking the value of $r$ and solving Eqn 2 numerically for $k$, and then using that value of $k$ in Eqn 1 to find $f(r)$. The function goes to positive infinity at $r=1$, and goes to 0 as $r\rightarrow\infty$ (I would post an image of it here, but it's not letting me post an image as a new user).</p>
<p>The function becomes complex for $r<1$, but that isn't relevant because the physical system this is based on is not defined for $r<1$.</p>
<p>I want to get series approximations for $f(r)$ as $r\rightarrow1$ and $r\rightarrow\infty$. I plotted the same function on a log-log plot, while shifting the x-axis over 1 so that I could see the asymptotic behavior near $r=1$ (again I would post an image of the plot, but I cannot). Basically, on the log-log plot it goes to a straight line with a negative slope as $r\rightarrow1$, and then a slightly different slope as it goes to $r\rightarrow\infty$.</p>
<p>Based on this, it certainly <em>should</em> have a well-behaved series expansion at both of these extremes, if I can just figure out how to evaluate it.</p>
<p>My idea so far is to do the following:</p>
<ol>
<li>Get series expansions for Eqn 2 for $r(k)$ at the two asymptotes.</li>
<li>Invert series expansions for Eqn 2 to get series solutions for $k(r)$.</li>
<li>Substitute these series solutions into Eqn 1 and then evaluate series expansions for $f(r)$.</li>
</ol>
<p>I've done #1 (using the series expansion function in the symbolic math toolbox in matlab), and gotten the two following series:</p>
<p>As $r\rightarrow1$, $r(k)=1+3(k-1)+2(k-1)^{3/2}-(k-1)^2+O(k^{5/2})$</p>
<p>Similarly, as $r\rightarrow\infty$, $r(k)=2k-\frac{5}{6k}-\frac{1}{12k^3}-\frac{5}{96k^5}+O(k^{-7})$.</p>
<p>After this though, I don't know what to do. I've looked up how to invert standard Taylor series, but these are Laurent and Puiseux series, and I can't figure out how to invert them. When inverting Taylor series you already know what powers will be in the inverted function, so then you just solve for the appropriate coefficients. In these though, I don't know <em>a priori</em> what the powers of the inverted series would be so I can't just solve for them using the same method.</p>
<p>I'm pretty sure that this could be easily done in Mathematica or Magma (since they both have a series inversion capability) but I don't have access to such software, and the symbolic math toolbox in matlab, which I do have, doesn't have such capability.</p>
http://mathoverflow.net/questions/62582/series-approximations-of-a-difficult-recursive-equation/62606#62606Comment by DerekDerek2011-04-22T22:26:36Z2011-04-22T22:26:36ZSorry. That was $k^{46}$.http://mathoverflow.net/questions/62582/series-approximations-of-a-difficult-recursive-equation/62606#62606Comment by DerekDerek2011-04-22T22:25:46Z2011-04-22T22:25:46ZI was able to get both of those equations as polynomials with rational coefficients. Eqn1 has bout 35 terms in it, with highest powers of $r^4$, $k^8$, and $f^4$. However, the polynomial version of Eqn2 has about 450 terms and fills up three screens with them, with powers of $r^8$ and $k^46$. Needless to say when I try and then find the Groebner bases for these polynomials, the symbolic math toolbox in matlab chokes on it. I left it running for a few hours with no avail.http://mathoverflow.net/questions/62582/series-approximations-of-a-difficult-recursive-equation/62606#62606Comment by DerekDerek2011-04-22T15:51:56Z2011-04-22T15:51:56ZThanks for answering. I've never heard of Groebner bases before (I'm an engineer as opposed to a mathematician), but I did some googling and I think I may understand the basic concept. I'll do some reading and get back to you.