Parabolic Iteration, again
#8
What is the flow matrix?
The flow matrix (although it could also be called iterational matrix ... see here) is the matrix of coefficients \( A_{jk} \) where \( f^{\circ t}(x) = \sum_{j=0}^{\infty}\sum_{k=0}^{\infty} A_{jk} t^j x^k \) which are obtained from any method (usually a special case of regular iteration), for parabolic iteration there will only be a finite number of t's, but for hyperbolic iteration (yes, the flow matrix would apply to that as well) this matrix is not triangular (as it is with parabolic iteration). For parabolic iteration the "flow series" is:
\(
\begin{tabular}{rl}
f^{\circ t}(x)
& = x \\
& + x^2 \left( tf_2 \right) \\
& + x^3 \left( t(f_3-f_2^2) + t^2f_2^2 \right) \\
& + x^4 \left( t\left(\frac{f_2}{2}(3f_2^2 - 5f_3) + f_4\right) + t^2\left(\frac{5f_2}{2}(f_3-f_2^2) \right) + t^3f_2^3 \right) \\
& + \cdots
\end{tabular}
\)
this corresponds to the "flow matrix":
\(
\left[\begin{tabular}{cccccc}
0 & 0 & 0 & 0 & 0 & \cdots \\
1 & 0 & 0 & 0 & 0 & \cdots \\
0 & f_2 & 0 & 0 & 0 & \cdots \\
0 & (f_3-f_2^2) & f_2^2 & 0 & 0 & \cdots \\
0 & \left(\frac{f_2}{2}(3f_2^2 - 5f_3) + f_4\right)
& \left(\frac{5f_2}{2}(f_3-f_2^2) \right)
& f_2^3 & 0 & \cdots \\
\vdots & \vdots & \vdots & \vdots & \vdots & \ddots
\end{tabular}\right]
\)
However, the flow matrix is not limited to parabolic iteration, but applies to hyperbolic iteration as well. Since the coefficients of hyperbolic iteration are not polynomials, there is a big difference between the series and the matrix, which may serve to illustrate the need for an flow matrix. For hyperbolic iteration the "flow series" is:
\(
\begin{tabular}{rl}
f^{\circ t}(x)
& = x f_1^t \\
& + x^2 \frac{f_1^{t-1}(f_1^{t} - 1)f_2}{(f_1 - 1)} \\
& + x^3 \frac{f_1^{t-2}(f_1^t-1)(f_1((f_1-1)f_3-2f_2^2) + f_1^t(2f_2^2 + (f_1-1)f_1f_3))}{(f_1-1)^2(f_1+1)} \\
& + \cdots
\end{tabular}
\)
which corresponds to the "flow matrix":
\(
\left[\begin{tabular}{cccc}
0 & 0 & 0 & \cdots \\
1 & \log(f_1) & \log(f_1)^2/2 & \cdots \\
0 &
\frac{f_2\log(f_1)}{(f_1-1)f_1} &
\frac{3f_2\log(f_1)^2}{2(f_1-1)f_1} & \cdots \\
\vdots & \vdots & \vdots & \ddots
\end{tabular}\right]
\)

Is it the Carleman matrix of parabolic iteration?
No, it is the first row of the Carleman matrix^t, or the first column of the Bell matrix^t, meaning both have been raised to the t. The flow matrix is simply a different expression for the flow series.

Why is it important to know the diagonals?
Well, it seems important to know the asymptotic behavior of the coefficients, and it is very difficult to know the asymptotic behavior of a sequence you only have the first few members of, so my goal with these diagonals is to provide a formula that we can use for root-tests and other convergence tests, so the world will stop calling them "formal power series" and start calling them functions. That is my ultimate goal.

But then again, how am I helping when I only have 3 diagonals, and we don't need to find asymptotic behavior of \( t^k x^k \) but of \( t^k \)? Well, it is obvious that the diagonals follow more of a pattern than the columns, so it seems easier to interpolate the diagonals than the columns of the flow matrix. My hope is that after enough diagonals are found, then a pattern will be found in the columns, as well.

Are these the same as Jabotinsky's double-binomial formula?
Yes. However, that formula is expressed in terms of the coefficients of the n-th iterate of a function. The only way I've seen Daniel Geisler write the flow series has been in terms of the coefficients of the 1-st iterate only, which is a major distinction between Jabotinsky's, and the flow series.

Andrew Robbins
Reply


Messages In This Thread
Parabolic Iteration, again - by andydude - 04/30/2008, 10:03 AM
RE: Parabolic Iteration, again - by Ivars - 04/30/2008, 10:19 AM
RE: Parabolic Iteration, again - by andydude - 04/30/2008, 04:30 PM
RE: Parabolic Iteration, again - by Ivars - 04/30/2008, 07:02 PM
RE: Parabolic Iteration, again - by andydude - 04/30/2008, 07:34 PM
RE: Parabolic Iteration, again - by andydude - 05/03/2008, 08:10 PM
RE: Parabolic Iteration, again - by bo198214 - 05/04/2008, 07:14 AM
RE: Parabolic Iteration, again - by andydude - 05/05/2008, 05:26 AM
RE: Parabolic Iteration, again - by andydude - 05/07/2008, 12:57 AM
RE: Parabolic Iteration, again - by andydude - 05/05/2008, 08:30 AM
RE: Parabolic Iteration, again - by bo198214 - 05/05/2008, 05:33 PM
RE: Parabolic Iteration, again - by andydude - 05/14/2008, 02:56 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Parabolic Formal Powerseries bo198214 7 9,873 09/11/2022, 11:36 AM
Last Post: bo198214
  Borel summation, Mellin Transforms, Parabolic iteration JmsNxn 5 7,842 09/10/2022, 03:12 PM
Last Post: bo198214
  Fractional iteration of x^2+1 at infinity and fractional iteration of exp bo198214 17 53,681 06/11/2022, 12:24 PM
Last Post: tommy1729
  Is this THE equation for parabolic fix ? tommy1729 5 21,554 04/16/2015, 10:01 PM
Last Post: tommy1729
  Iteration series: Different fixpoints and iteration series (of an example polynomial) Gottfried 0 7,943 09/04/2011, 05:59 AM
Last Post: Gottfried
  Parabolic Iteration andydude 3 21,290 08/16/2007, 07:51 PM
Last Post: bo198214



Users browsing this thread: 1 Guest(s)