Real-analytic tetration uniqueness criterion?
#12
(06/10/2014, 09:42 AM)mike3 Wrote: Ah, so it gives n/2 correct digits (or thereabout), then. So at the 340 or so digits I was using, it should've had around 170 digits correct, which would probably have been enough to get the 32nd derivative provided the epsilon was not too small (I think I used 1e-4 or so, maybe 1e-5 but the last one may have been pushing it, although 1e-4 still produces a graphable approximation of the derivative).
There is an internal "xsexp" Taylor series polynomial at zero, that should work well for the derivatives. Earlier, I tried "\p 134", and that was starting to show significant errors (>0.1%) for the 100th derivative at x=0.5, since the higher order derivatives started to dominate the error term, and there wasn't enough precision in those higher order Taylor series terms. but that was at "\p 134".

Also, you could use the internal function, sexptaylor(z0,r), where r is the sample radius for a 200 term polynomial generated via Cauchy approximation radius r centered at z0. The following algoritm will give accurate results for the 150th derivative, but starts to fall apart near the 175th derivative. Perhaps I could add the option for more sample points on sexptaylor when used with higher precision.
Code:
\p 134
init(exp(1));
dnz(n,z)={for (i=1,n,z=deriv(z));z}
default(format,"g0.14")
d150=dnz(150,sexptaylor(0.5,1));
print ("150th derivative at 0.5= "polcoeff(d150,0));

150th derivative at 0.5= 2.4946223112445 E207

Alternatively, this algorithm works accurately to about the 370th derivative at x=0.5.
Code:
\p 539
init(exp(1)); /* wait about 2 hours */
dnz(n,z)={for (i=1,n,z=deriv(z));z}
default(format,"g0.14")
print ("360th derivative at 0.5: "subst(dnz(360,xsexp),x,0.5));

360th derivative at 0.5: 2.1356744655704 E621
- Sheldon
Reply


Messages In This Thread
RE: Real-analytic tetration uniqueness criterion? - by sheldonison - 06/10/2014, 10:38 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  extending normal tetration to real numbers using product tetration Alex Zuma 2025 0 951 12/12/2025, 07:49 PM
Last Post: Alex Zuma 2025
  my proposed extension of the fast growing hierarchy to real numbers Alex Zuma 2025 0 1,346 09/28/2025, 07:15 PM
Last Post: Alex Zuma 2025
  Behaviour of tetration into the real negatives Shanghai46 1 6,411 03/24/2025, 12:34 AM
Last Post: MphLee
  X-th iteration where x is a real number Natsugou 1 5,732 10/27/2024, 11:23 PM
Last Post: MphLee
  Real tetration as a limit of complex tetration Daniel 5 9,579 06/20/2023, 07:52 PM
Last Post: tommy1729
  Real and complex tetration Daniel 13 17,364 04/04/2023, 10:25 AM
Last Post: JmsNxn
  double functional equation , continuum sum and analytic continuation tommy1729 6 9,811 03/05/2023, 12:36 AM
Last Post: tommy1729
  Iteration with two analytic fixed points bo198214 62 73,373 11/27/2022, 06:53 AM
Last Post: JmsNxn
  Range of complex tetration as real Daniel 2 4,995 10/22/2022, 08:08 PM
Last Post: Shanghai46
  From complex to real tetration Daniel 3 6,357 10/21/2022, 07:55 PM
Last Post: Daniel



Users browsing this thread: 1 Guest(s)