![]() |
|
Expansion of base-e pentation - Printable Version +- Tetration Forum (https://tetrationforum.org) +-- Forum: Tetration and Related Topics (https://tetrationforum.org/forumdisplay.php?fid=1) +--- Forum: Computation (https://tetrationforum.org/forumdisplay.php?fid=8) +--- Thread: Expansion of base-e pentation (/showthread.php?tid=372) Pages:
1
2
|
Expansion of base-e pentation - andydude - 10/24/2009 So I have been revamping the functions I use for tetration, and I recently solved all the mumbo-jumbo to use tetration as the function in the NaturalIterate function. So now you can do: Code: <<Tetration`I'm still working on doing this for other bases, but this is enough to get an expansion of pentation about zero. What follows below is InverseSeries[...] of the output from above. In other words, the above gives the coefficients of the base-e penta-logarithm about (0), and the following gives the coefficients of the base-e penta-exponential about (-1). Code: 0,So, what I'm wondering is, how do I turn this into an expansion about 3i? RE: Expansion of base-e pentation - bo198214 - 10/24/2009 Oh wow you did Intuitive iteration on the intuitive iteration of exp? RE: Expansion of base-e pentation - andydude - 10/24/2009 (10/24/2009, 10:13 AM)bo198214 Wrote: Oh wow you did Intuitive iteration on the intuitive iteration of exp? Yes, It was quite a nightmare.
RE: Expansion of base-e pentation - nuninho1980 - 10/24/2009 I downloaded and open "tetration-0.8.zip" but I this compression doesn't have any file after folder "tetration"!?? RE: Expansion of base-e pentation - andydude - 10/25/2009 Sorry, try again. PS. You might have to rewrite the 'PackageFile' function. RE: Expansion of base-e pentation - nuninho1980 - 10/25/2009 I don't get run for errors (invalid characters) using matlab r2009a. but this matlab doesn't have "PackageFile" function. do you fix? if not then I ask if you convert this file from matlab to mathematica 7? please.
RE: Expansion of base-e pentation - andydude - 10/29/2009 (10/25/2009, 12:14 PM)nuninho1980 Wrote: I don't get run for errors (invalid characters) using matlab r2009a. but this matlab doesn't have "PackageFile" function.This is a Mathematica package, it will not work in matlab... I'm not talking about a system function, I'm talking about one of my functions. In the file Tetration/Tetration.m there is a function called 'PackageFile' that imports files based on an absolute path. Depending on where you install it, you will probably have to change this to suit your installation. RE: Expansion of base-e pentation - nuninho1980 - 10/29/2009 thanks! but the height of tetration is integer only? RE: Expansion of base-e pentation - andydude - 10/31/2009 (10/29/2009, 10:18 PM)nuninho1980 Wrote: thanks! but the height of tetration is integer only?Nope, it works for complex values, but only for base E. I'm still working on making it easier to use other bases. RE: Expansion of base-e pentation - sheldonison - 10/30/2010 (10/24/2009, 04:30 AM)andydude Wrote: ..... I read through the pentation posts scattered through this forum, and decided to generate some results of my own. First off go to my fast accurate kneser.gp post, and download the latest version of the pari-gp kneser.gp code. Then, download the pentation.gp code. After the downloads, start gp. Code: \r kneser.gpSo what's all this telling you? Its telling you that the fixed point for sexp(z) to generate pentation base e, pfixed, is -1.85035.... Its telling you the slope of sexp(pfixed)=-6.46067... which leads to the pentation complex periodic period, pperiod=3.367*I. At imag(z)=0, the function is real valued for all z. Here is the graph, generated by that last line ploth line. Notice, it starts out at the real valued fixed point, pfixed, and then grows somewhat intermittantly, with pent(-inf)=-1.85..., pent(-2)=-1, pent(-1)=0, and pent(0)=1, and pent(2)=e, and pent(3)=sexp(e). At imag(z)=imag(pperiod/2), there is another real valued line, starting at the fixed point and growing towards -infinity, which is the first singularity that occurs at -2.315 + 1.6838*I. Then there is a slew of singularities after that, corresponding to sexp(z)=-2,-3,-4,-5 .... Continuing, to generate the Taylor series, centered at pentation(z=-1). Notice that the first term of the Taylor series is almost zero, but not quite due to precision errors. The pentation taylor series is accurate to approximately 20 decimal digits. More accurate results are possible by setting gp's precision to "\p 134". Then type in the sexp initialization command, "init;loop". Later, I will post pentation plots for other bases. So far, I've only had time to try bases between B=1.6 and B=e, all of which worked fine. I'll post more later. Here are the Taylor series terms, followed by Andy's terms for historical comparison. - Sheldon Code: gp > pentaylor(-1,1)Andy's results are pretty reasonable, all considering, but only for the first few terms. Here are Andy's coefficients for historical record. Code: 0, |