![]() |
|
b^b^x with base 0<b<e^-e have three real fixpoints - 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: b^b^x with base 0<b<e^-e have three real fixpoints (/showthread.php?tid=1182) |
b^b^x with base 0<b<e^-e have three real fixpoints - Gottfried - 10/29/2017 Triggered by a question in the math.stackexchange-forum I looked at real fixpoints of b^b^x and found that for the smallest b<e^-e have three real fixpoints (while b^x has only one). See a short compilation in: https://math.stackexchange.com/a/2494323/1714 I have not yet found a closed-form expression - for instance by the Lambert W as in the fixpoint-problem of the simple case b^x. Gottfried RE: b^b^x with base 0<b<e^-e have three real fixpoints - sheldonison - 11/07/2017 (10/29/2017, 11:14 AM)Gottfried Wrote: Triggered by a question in the math.stackexchange-forum I looked at real fixpoints of b^b^x and found that for the smallest b<e^-e have three real fixpoints (while b^x has only one). For the two-periodic fixed point pair of \( f(z,k)=-\exp(z)+1+k \) The formal solution for the fixed point of f(x,k) has a power series where the two fixed points are \( L=g(\pm\sqrt{6k});\;\;\;\;f(f(L))=L;\;\;\;\;f(g(\pm\sqrt{6k}),k)=g(\mp\sqrt{6k}); \) Then this solutions for the two periodic fixed points L for f(z,k) can be converted to solutions for the two periodic fixed point pair of \( a^z \) as follows: \( z=\frac{g(\pm\sqrt{6k})-\ln(-\ln(a))}{\ln(a)};\;\;\;\; k=\ln(-\ln(a))+1;\;\;\;\;a^{a^z}=z \) The definition of the formal series solution for g boils down to this equation; with the x^2/6 term chosen so g x^1 term coefficient=1. The pari-gp formalperiod2 program returns "1/6" as the x2term. Also see https://math.stackexchange.com/questions/2490769/solutions-of-aax-x-for-fixed-a0 \( -\exp(g(x))+1+\frac{x^2}{6}=g(-x) \) Code: {g=The pari-gp program to calculate the formal g-series for the two periodic fixed points of a generic function gf with a multiplier of (-1) at x=0, is as follows: Then for example, the error term for fixedaaz(0.04)=0.089600840934760930 is accurate to about about 17-18 decimal digits with a 30 term series. The other fixed point is fixedaaz(0.04,-1). For a>exp(-e), the two periodic fixed points are complex conjugate pairs. Code: /* formal period2 fixed point for generic function with slope=-1, 2-cyclic solution */ |