![]() |
|
Superroots and a generalization for the Lambert-W - 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: Superroots and a generalization for the Lambert-W (/showthread.php?tid=1033) |
RE: Superroots and a generalization for the Lambert-W - andydude - 11/22/2015 I found the thread that mentions log(x^x^x) in it: http://math.eretrandre.org/tetrationforum/showthread.php?tid=280 RE: Superroots and a generalization for the Lambert-W - andydude - 11/24/2015 I believe I may have found a closed form for the third superroot / generalized LambertW function: \( {}^{3}W(v) = \log\left(\sqrt[3]{e^v}_s\right) = \sum_{k=0}^{\infty} \frac{v^k}{k!} \sum_{j=0}^k {k-1 \choose j}j(k-j)^{j-2}(-k)^{k-j} \) Regards, Andrew Robbins RE: Superroots and a generalization for the Lambert-W - Gottfried - 11/24/2015 (11/24/2015, 12:51 AM)andydude Wrote: I believe I may have found a closed form for the third superroot / generalized LambertW function: Hah, that sounds good, I'll try it tomorrow! (I've just seen formulae 96-100 in your earlier announced paper, but can read it also not before tomorrow afternoon) Did you see already whether it is possibly simply extensible to higher orders? Gottfried RE: Superroots and a generalization for the Lambert-W - andydude - 11/24/2015 I believe I found a slightly smaller or cleaner closed-form for the above function \( {}^{3}W(v) = \log\left(\sqrt[3]{e^v}_s\right) = \sum_{k=0}^{\infty} \frac{v^k}{k!} \sum_{j=0}^{k-1} {k-1 \choose j}(k-j-1)^j(-k)^{k-j-1} \) Regards, Andrew Robbins RE: Superroots and a generalization for the Lambert-W - andydude - 11/24/2015 (11/24/2015, 02:56 AM)Gottfried Wrote: Did you see already whether it is possibly simply extensible to higher orders? I tried doing something similar with superroot-4, but no luck, however, I found the coefficients by solving the equation \( \exp_{\exp(u)}^{3}(z) = \exp(v) \) so you should be able to add \( z^j \) to the above formula to solve this generalization. The above formula is just the special case when \( z=1 \). RE: Superroots and a generalization for the Lambert-W - Gottfried - 12/01/2015 [text updated] Having not yet studied Andrew's formulae, I just played around with the idea of iterated superroots. In this case, instead of \( x=H_2(y),x=H_3(y), ... \) with x being the second, third superroot of some y, I reconsidered simply the iterated second superroot - which is easier to implement, because \( x=H_2(H_2(y)) = \exp( LW(LW( \log(y)))) \) and for LW (the Lambert-W) there are easy implementations in M'tica and Pari/GP. Of course, for \( x=H_2(H_2(y)) \) we have, that \( (x\^x)\^{(x\^x)}= x\^x\^(x+1) = y \) - where x is a bit smaller than \( H_3(y) \) (of course the latter is what I tried to approximate by some iteration). Now I found the following amazing procedure. Consider for example \( y=3\^3\^3 \) . Then compute \( x_1=H_2(y) ,x_2=H_2(x_1), x_3=H_2(x_2) , ... \) up to some limit. Then the inhomogenuous exponentialtower / "nested exponentiation" (wikipedia) \( x_1\^ ... \^x_{n-2} \^x_{n-1} \^ x_n \approx y \) . Of course, a bit thinking about this makes it clear that this is a nearly trivial matter; but the amazing part of it is, to get a new intuition for a general/nested exponential tower, where the single stairs are not equal but follow some functional description... and, for instance, might be interpolated to give some fractional interpolation of the H2()-procedure ... In Pari/GP: Code: h2(x)= exp(LW(log(x))) \\ define h2(x), use Lambert-W-implementationNice... Here the vectorv vx (read from left to right, then top down): Code: 11.9551115478 2.59837825984 1.73428401000 1.45860478939Appendix: the code for Lambert-W, taken from wikipedia: Code: LW(x, prec=1E-80, maxiters=200) = local(w, we, w1e); For y=27^27 we get the following vector vx of "stairs": Code: 27.0000000000 3.00000000000 1.82545502292 1.49546396135y = 27^27 = 27 ^ 3 ^ 1.82... ^ 1.49... ^... RE: Superroots and a generalization for the Lambert-W - tommy1729 - 12/01/2015 @andrew Congrats with your result. @gottfried The thing is solving (x_m ^ x_m)^[m] = y is only close to solving X_n^^[n] = y ( n = m in value ) When Y is large and n (or m) is small. For instance x in x^x^x^x = 2000 is close to Y in (y^y)^(y^y) = 2000. But a in a^a^a^a = 2,718 is different from B in (b^b)^(b^b) = 2,718. This is logical considering the fixpoint X^x = x Gives x = {-1,1}. So one method is attracted to eta and the other to 1. For y > e that is. For y < e its even worse. Since we are mainly intrested in small y and Large n ... This idea seems not so practical here. Guess it might be more usefull for the base-change .... Well Maybe ... Regards Tommy1729 RE: Superroots and a generalization for the Lambert-W - andydude - 12/02/2015 @Tommy1729 Thanks! @Gottfried By "inhomogenuous" do you mean "heterogeneous"? Iterated superroots? I need some time to wrap my head around this... RE: Superroots and a generalization for the Lambert-W - Gottfried - 12/02/2015 Hi Andrew - (12/02/2015, 12:48 AM)andydude Wrote: By "inhomogenuous" do you mean "heterogeneous"? Well, this might also be correct. I simply mean that the power-tower has varying entries (tetration has one fixed entry, the base, except the top one which if equals 1 can be omitted). In wikipedia it is proposed to call it "nested exponentiation" (I forgot that). Quote:Iterated superroots? I need some time to wrap my head around this...I think, Henryk had discussed them in his dissertation? (I'm not sure). Just \( z=y^y ; y=x^x; x=w^w; ... \) Gottfried RE: Superroots and a generalization for the Lambert-W - Gottfried - 12/02/2015 (12/01/2015, 11:58 PM)tommy1729 Wrote: The thing is solving (x_m ^ x_m)^[m] = y is only close to solvingTrue. But having this way a (non-trivial) vector of different exponents (or better: bases) which comes out to be a meaningful "nested exponentiation" I'm curious, whether one can do something with it, for instance weighting, averaging, or multisecting that sequence of exponents/bases when re-combining them to a "nested exponential". We have not yet many examples of "nested exponentiations" with a meaningful outcome. For instance, the construction of the Schroeder-function is based on (ideally) infinite iteration of the base-function to get a linearization. If we iterate the h2()-function infinitely, the curve of the consecutive values in an x/y-diagram (where x is the iteration number) approach a horizontal line; don't know whether using that linearization shall prove useful for something similar. (When Euler found his version of the gamma-function, that was in one version putting together sequences of integer numbers weighting and repeating in a meaningful way; there is some infinite product-representation for his gamma-function I think I recall correctly... ) (see also the updates in my previous (introducing) posting) |