Tetration Forum
The Different Fixed Points of Exponentials - Printable Version

+- Tetration Forum (https://tetrationforum.org)
+-- Forum: Tetration and Related Topics (https://tetrationforum.org/forumdisplay.php?fid=1)
+--- Forum: Mathematical and General Discussion (https://tetrationforum.org/forumdisplay.php?fid=3)
+--- Thread: The Different Fixed Points of Exponentials (/showthread.php?tid=1399)

Pages: 1 2 3


RE: The Different Fixed Points of Exponentials - Catullus - 07/18/2022

Please let [Image: png.image?\dpi%7B110%7D%20f(n)] equal [Image: png.image?\dpi%7B110%7D%20-LambertW_n(-1)\fo...\mathbb%7BZ%7D].
What would happen if you did polynomial interpolation on [Image: png.image?\dpi%7B110%7D%20f(n)]?


RE: The Different Fixed Points of Exponentials - Gottfried - 07/18/2022

Pari/GP:
Code:
\\ get's k'th fixpoint in the first quadrant  
get_kth_fixpoint(k,maxit=80)=my(z0=1+3*I);for(it=1,maxit,z0=log(z0)+k*2*Pi*I);z0

\\ make (draft) picture
ploth(k=0,4,get_kth_fixpoint(k,20),4096)



RE: The Different Fixed Points of Exponentials - bo198214 - 07/18/2022

I wanted also to put some pictures Big Grin - animated pictures - how the fixed points change dependent on the base:
   
   
The red curve are the (indifferent) fixed points for the base on the boundary of the Shell-Thron region. 
Crossing this boundary from inside turns the fixed point from attracting to repelling.


RE: The Different Fixed Points of Exponentials - MphLee - 07/18/2022

Wow.. that's a suggestiv animation.
Are those blue dots fixed points bounded on a vertical strips... like for the Riemann Hypothesis for the zeroes of the zeta function?


RE: The Different Fixed Points of Exponentials - bo198214 - 07/18/2022

And as I am already at making motion pictures:
I always wanted to know what happens if we don't go through the base \(\eta\) but circling around it.
So I took a circle around \(\eta\) so that the lower real base is \(\sqrt{2}\)
   
It turns out that there is no bifurcation happening.
However the fixed points move through the image of the Shell-Thron boundary, i.e. they changing from attracting to repelling and vice versa (red attracting, blue repelling).
Does this mean, that the regular iteration at one of the fixed points has a singularity (as a function of the base) at all points of the Shell-Thron region?
I find it interesting how the fixed points swap place at the first round of the base and then change back at the second round Smile
Can one conclude that the regular iteration at the lower fixed point is just a branch of the regular iteration at the upper fixed point (in case there is no singularity at the Shell-Thron region, except \(\eta\))?
There is only this little time frame where we have two repelling fixed points, perhaps these are the only bases where one can construct the Kneser/perturbed Fatou Abel function?
Too bad that Sheldon is not around, I think he tested his algorithm on different complex bases.
So many questions.
Perhaps at next I could investigate how the regular iteration behaves when going through the Shell-Thron boundary - guys, I currently in my extra vacation, maybe the only time in the year where I have time to dedicate to Tetration...


RE: The Different Fixed Points of Exponentials - JmsNxn - 07/18/2022

(07/18/2022, 06:12 PM)bo198214 Wrote: And as I am already at making motion pictures:
I always wanted to know what happens if we don't go through the base \(\eta\) but circling around it.
So I took a circle around \(\eta\) so that the lower real base is \(\sqrt{2}\)

It turns out that there is no bifurcation happening.
However the fixed points move through the image of the Shell-Thron boundary, i.e. they changing from attracting to repelling and vice versa (red attracting, blue repelling).
Does this mean, that the regular iteration at one of the fixed points has a singularity (as a function of the base) at all points of the Shell-Thron region?
I find it interesting how the fixed points swap place at the first round of the base and then change back at the second round Smile
Can one conclude that the regular iteration at the lower fixed point is just a branch of the regular iteration at the upper fixed point (in case there is no singularity at the Shell-Thron region, except \(\eta\))?
There is only this little time frame where we have two repelling fixed points, perhaps these are the only bases where one can construct the Kneser/perturbed Fatou Abel function?
Too bad that Sheldon is not around, I think he tested his algorithm on different complex bases.
So many questions.
Perhaps at next I could investigate how the regular iteration behaves when going through the Shell-Thron boundary - guys, I currently in my extra vacation, maybe the only time in the year where I have time to dedicate to Tetration...

I'm excited to see bo back!

Have you read Paulsen's paper on Complex tetration?

He claims you can construct holomorphic tetration \(\text{tet}_b(z)\) in \(b\) everywhere except a branching problem at \(\eta\) and \(0\). His paper is very enlightening, as the majority of it is analysing how the fixed points behave within and outside the Shell-Thron region.

https://www.researchgate.net/profile/William-Paulsen-2/publication/325532999_Tetration_for_complex_bases/links/5d88c9d992851ceb79346b5f/Tetration-for-complex-bases.pdf

It is essentially a paper on extending Kneser's construction for \(b > \eta\), to everywhere in the complex plane.

EDIT: Also, are you using pari to create these animations, if so you have to tell me how, I've wanted to animate things for so long...


RE: The Different Fixed Points of Exponentials - bo198214 - 07/18/2022

(07/18/2022, 08:41 PM)JmsNxn Wrote: Have you read Paulsen's paper on Complex tetration?

He claims you can construct holomorphic tetration \(\text{tet}_b(z)\) in \(b\) everywhere except a branching problem at \(\eta\) and \(0\). His paper is very enlightening, as the majority of it is analysing how the fixed points behave within and outside the Shell-Thron region.

https://www.researchgate.net/profile/William-Paulsen-2/publication/325532999_Tetration_for_complex_bases/links/5d88c9d992851ceb79346b5f/Tetration-for-complex-bases.pdf

I was reading his paper about the double dagger method, but not this one yet. When skimming through however, I don't see any proofs for the construction (convergence and equality to Kneser). Ok, but if I understand that properly, he says that numerically his solution (which is supposed to be Kneser's) can be continued into the Shell-Thron region except \(\eta\) is a branch point.
(Or does he give a proof that Kneser can be (without any numerical assumptions) continued through the Shell-Thron boundary?)
That's cool, and actually my experiments with the regular iteration look similar.


(07/18/2022, 08:41 PM)JmsNxn Wrote: EDIT: Also, are you using pari to create these animations, if so you have to tell me how, I've wanted to animate things for so long...
No, I, since always, use sage (online even, on cocalc.com) for any computational needs.


RE: The Different Fixed Points of Exponentials - JmsNxn - 07/18/2022

The paper relies on the initial paper with him and Cowgill. In that paper they reconstruct Kneser on \(b > \eta\). From that point, the paper I linked he analytically continues in \(b\). The paper with Cowgill is more indepth, and the one I linked is a little loose.

You are correct though, there isn't much actual construction in the paper, it's more so a proof of existence of the correct functions, and then the double dagger/racetrack method to numerically evaluate it.

http://myweb.astate.edu/wpaulsen/tetration2.pdf


EDIT: Damn, I can never seem to get sage working. Largely because I don't get how to get it to read pari code. I should probably figure that out though, it has so many graphing protocols.


RE: The Different Fixed Points of Exponentials - bo198214 - 07/18/2022

(07/18/2022, 10:15 PM)JmsNxn Wrote: The paper relies on the initial paper with him and Cowgill. In that paper they reconstruct Kneser on \(b > \eta\). From that point, the paper I linked he analytically continues in \(b\). The paper with Cowgill is more indepth, and the one I linked is a little loose.

Yeah, I think I read the one with Cowgill. But I think we really must be specific here:
They have a numerical method, that is not proven to converge (though it practically seems to).
Then they have in the paper with Cowgill a uniqueness proof.
But with a numerical method, that is not proven to converge, you can not claim that it satisfies any (uniqueness) criterion.
And what does it mean to analytically continue? It just means the calculated plots look good.
(Correct me if I am wrong!)
Sheldons method is insofar as good as theirs (though maybe he had a problem with some bases if I remember), and other methods that have a good looking plot for complex bases. But Sheldon, was already close about a proof of convergence of his method, so in the race he is my favourite Wink. And you were also close to a proof of your method, if I remember! So what happened with that?!


RE: The Different Fixed Points of Exponentials - JmsNxn - 07/19/2022

(07/18/2022, 11:30 PM)bo198214 Wrote:
(07/18/2022, 10:15 PM)JmsNxn Wrote: The paper relies on the initial paper with him and Cowgill. In that paper they reconstruct Kneser on \(b > \eta\). From that point, the paper I linked he analytically continues in \(b\). The paper with Cowgill is more indepth, and the one I linked is a little loose.

Yeah, I think I read the one with Cowgill. But I think we really must be specific here:
They have a numerical method, that is not proven to converge (though it practically seems to).
Then they have in the paper with Cowgill a uniqueness proof.
But with a numerical method, that is not proven to converge, you can not claim that it satisfies any (uniqueness) criterion.
And what does it mean to analytically continue? It just means the calculated plots look good.
(Correct me if I am wrong!)
Sheldons method is insofar as good as theirs (though maybe he had a problem with some bases if I remember), and other methods that have a good looking plot for complex bases. But Sheldon, was already close about a proof of convergence of his method, so in the race he is my favourite Wink. And you were also close to a proof of your method, if I remember! So what happened with that?!

That is very true. So if I'm being very specific.

Cowgill and Paulsen describe how the fourier series is constructed, and designed--and Paulsen analytically continued that. I believe nestled in that paper is a proof of convergence for the Kneser case, but I could be mistaken... But I'm pretty sure they describe the solution, but you are correct, they could be divergent fourier series in Paulsen's case. I guess we'd have to rigorously prove that the Fourier series converges. I'll have to read the paper again, I believe there was some work put into it.

My method (the beta method) turns out to only be an asymptotic solution in the general case, but converges perfectly fine within the Shell-Thron region. I wrote a long report which details how everything works:

The essential statement was to construct the analytic function:

\[
\beta_{\mu,\lambda}(s)\\
\]

Such that:

\[
\beta_{\mu,\lambda}(s+1) = \frac{e^{\mu \beta_{\mu,\lambda}(s)}}{1+e^{-\lambda s}}\\
\]

This function is holomorphic for \(\mu \in \mathbb{C}\) and \(\Re\lambda > 0\) so long as \(e^{\lambda(j-s)} \neq -1\) for all \(j \ge 1\) with \(j \in \mathbb{N}\). Then the idea was to correct the beta function to be tetration. This was done with the tau error, so that:

\[
\beta_{\mu,\lambda}(s) + \tau_{\mu,\lambda}(s) = F_{\mu,\lambda}(s)\\
\]

Where then:

\[
\begin{align}
F_{\mu,\lambda}(s+1) &= e^{\mu F_{\mu,\lambda}(s)}\\
F_{\mu,\lambda}(s + 2 \pi i/\lambda) &= F_{\mu,\lambda}(s)\\
\end{align}
\]

Deriving where this converges is very difficult, and is the sum of 100 pages. But the basic answer is that when \(b=e^{\mu}\) is in the shell thron region, so long as \(\Re(\lambda) > \Re\kappa\), where \(2 \pi i/\kappa\) is the period of the regular iteration about the principal (attracting/neutral) fixed point of \(b\). Then the object converges outside of a measure zero set in \(\mathbb{C}\) (so a bunch of branches or fractals). These tended to be pretty small, so it was safe to say (even mathematically) that \(F_{\mu,\lambda}\) converges almost everywhere on \(\mathbb{C}\).

This essentially is mostly valuable because you can make a tetration base \(b=\sqrt{2}\) with arbitrary period \(2 \pi i / \lambda\), so long as \(\Re(\lambda) > -\log\log(2)\). And on the boundary of shell thron, at \(\eta\) you can make a tetration of arbitrary period. All of this, upto a measure zero set in \(\mathbb{C}\) of course (here I mean an area measure in \(\mathbb{R}^2\), so upto 1 dimensional lines and fractals).


Then when you let \(b = e^{\mu}\) outside of the Shell-thron region, you can make an arbitrarily accurate asymptotic expansion (too lengthy to draw out that statement without reading the paper), but it will never be analytic. So the function:

\[
F_{1,\lambda}(s)\\
\]

Is analytic nowhere, this was supported by Sheldon too, who followed my proof, and it was his own conjecture. I believe I proved it, it essentially just relied on the julia set of \(e^z\) being the entire plane. So essentially for \(b > \eta\) you can make arbitrarily accurate asymptotic approximations, but they'll never be analytic. In the complex plane (out side of shell thron) it essentially devolved into small little patches of analycity, but most of the domain only admitted an asymptotic expansion.

Additionally the program beta.gp is a great asymptotic tool for \(b \approx 0\) and \(b \approx 1E1E10\) so it works very well for very large numbers. Essentially I've reserved the solution to being an asymptotic solution for studying the orbits of the various exponential.

Here's the finished pdf, it's a long read, still a little rough around the edges, but I tried to keep myself to as high a standard as I could. Plus, lots of pretty graphs!


.pdf   Asymptotic_Solutions_Of_The_Tetration_Equation_In_The_Style_Of_Sterling.pdf (Size: 7.68 MB / Downloads: 557)





Also, I should add, that my conjecture, and Tommy's conjecture, is that the \(\beta\) method can reproduce Kneser's method for \( b =e\).

To me, I have maybe 60-70% of the proof, a good amount of numerical evidence that:

\[
\text{tet}_K(s+c) = \lim_{\lambda\to 0, n\to\infty} \log^{\circ n}\beta_\lambda(s+n)\,\,\text{while}\,\,\lambda = \mathcal{O}(n^{-1/2})\\
\]

Tommy's Gaussian method is equivalent to this construction, though Tommy says other wise. These are the same. I conjecture this is Kneser. The problem is that the code caps at about \(\lambda = 0.05\) and we can't test the asymptotics. But mathematically this is what should happen. I could elaborate more, but I leave it at that.

EDIT: Not to discredit tommy's work. He boiled it down into an absolute and a much simpler construction with the Gaussian method. But both methods are equivalent, is all I'm saying. tommy's gaussian is far better/more efficient.

Regards, James