Terse Schroeder & Abel function code
#1
The following provides the Schroeder and Abel functions in Mathematica using the support for solving recursive equations and Bell polynomials. The code takes about a hour to run for the first ten derivatives.
Code:
order=10;
H[0]=0;
H[1]=f'[0]^t ;
Do[H[max]=First[r[t]/.RSolve[{r[0]==0,r[t]==Sum[Derivative[k][f][0]BellY[max,k,Table[H[j]/.t->t-1,{j,max}]],{k,2,max}]+ f'[0] r[t-1]},r[t],t]],{max,2,order}];
Schroeder=f'[0]^t z+Sum[1/k! H[k]z^k,{k,2,order}]
Abel=Limit[Schroeder,{f'[0]->1}]
Daniel


Messages In This Thread
Terse Schroeder & Abel function code - by Daniel - 10/02/2022, 02:42 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Code to calculate tetration using my method Shanghai46 10 2,151 10/19/2023, 09:15 PM
Last Post: marracco
  Quickest way to compute the Abel function on the Shell-Thron boundary JmsNxn 1 1,242 10/10/2023, 05:17 AM
Last Post: leon
  FractionalIteration now in Wolfram Function Repository Daniel 0 449 07/10/2023, 07:16 AM
Last Post: Daniel
  Revisting my accelerated slog solution using Abel matrix inversion jaydfox 22 45,745 05/16/2021, 11:51 AM
Last Post: Gottfried
  C++ code for tet, ate and hexp MorgothV8 0 5,943 07/10/2014, 04:24 PM
Last Post: MorgothV8
  "Kneser"/Riemann mapping method code for *complex* bases mike3 2 12,672 08/15/2011, 03:14 PM
Last Post: Gottfried
  An incremental method to compute (Abel) matrix inverses bo198214 3 16,084 07/20/2010, 12:13 PM
Last Post: Gottfried
  Single-exp series computation code mike3 0 5,466 04/20/2010, 08:59 PM
Last Post: mike3
  SAGE code for computing flow matrix for exp(z)-1 jaydfox 4 16,857 08/21/2009, 05:32 PM
Last Post: jaydfox
  Computing Abel function at a given center jaydfox 10 25,690 11/30/2007, 06:44 PM
Last Post: andydude



Users browsing this thread: 1 Guest(s)