10/24/2009, 04:30 AM (This post was last modified: 10/24/2009, 04:33 AM by andydude.)
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:
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).
10/25/2009, 12:14 PM (This post was last modified: 10/25/2009, 12:16 PM by nuninho1980.)
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.
10/29/2009, 11:36 AM (This post was last modified: 10/29/2009, 11:40 AM by andydude.)
(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.
do you fix? if not then I ask if you convert this file from matlab to mathematica 7?
please.
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.
10/30/2010, 11:11 PM (This post was last modified: 10/30/2010, 11:12 PM by sheldonison.)
(10/24/2009, 04:30 AM)andydude Wrote: .....
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).
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.
\r kneser.gp
\r pentation.gp
gp > init;loop; /* 13 sexp(z) loops .... */
gp > genpent /* generate pentation base e */
complex sexp Taylor series centered at -1.8503545290271814184834459502910
pentation base 2.71828182845904523536029
pentation(-0.5) 0.491054338635648197413514
sexp fixed point -1.85035452902718141848345
sexp slope at fixed 6.46067129568183939020883
pentation period 3.36767615671259898023746*I
pentation singularity -2.31527062760141112146561 + 1.68383807835629949011873*I
pentation precision, via sexp(pent(-0.5))-pent(0.5)
-9.69394178147793704836998 E-21
gp > ploth(t=-10,1.5,pent(t));
So 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