Inverse super-composition
#12
Hi here, again!

I have been thinking about functional logarithm, and I coded it in pari/gp in this way:

Code:
D(f,n)={if(n>0,return(D(deriv(f),n-1)),return(f));};
M(f,n)=matrix(n,n,j,k,1/(k-1)!*subst(D(x*0+f^(j-1),k-1),x,0));
T(A,n)=sum(k=1,n,A[2,k]*x^(k-1));
inv(f,n)=T(M(f,n)^-1,n);
Ln(A,n)=sum(k=1,n,(-1)^(k+1)*(A-1)^k/k);
olog(f,g,n)=T(Ln(M(f,n),n^2)/(0.1^n+Ln(M(g,n),n^2)));

M is the Carleman-matrix, T is a generated taylor-series from the M matrix. Ln is log of a quadratic matrix. And olog is the functional logarithm: olog(f(x),(f^og(x))(x)) = g(x), but somewhy it is not working.
E. g. olog(2x,x*2^(2x),100...) = 2x.
Could help me?
Thank you very much!
Xorter Unizo
Reply


Messages In This Thread
Inverse super-composition - by Xorter - 11/24/2016, 12:53 PM
RE: Inverse super-composition - by JmsNxn - 11/25/2016, 08:55 PM
RE: Inverse super-composition - by Xorter - 12/23/2016, 01:33 PM
RE: Inverse super-composition - by JmsNxn - 12/23/2016, 08:12 PM
RE: Inverse super-composition - by Xorter - 12/24/2016, 09:53 PM
RE: Inverse super-composition - by sheldonison - 12/25/2016, 04:16 AM
RE: Inverse super-composition - by Xorter - 12/25/2016, 04:38 PM
RE: Inverse super-composition - by sheldonison - 12/25/2016, 08:35 PM
RE: Inverse super-composition - by Xorter - 12/25/2016, 10:23 PM
RE: Inverse super-composition - by sheldonison - 12/26/2016, 07:10 AM
RE: Inverse super-composition - by Xorter - 01/12/2017, 04:19 PM
RE: Inverse super-composition - by Xorter - 05/26/2018, 12:00 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  another infinite composition gaussian method clone tommy1729 2 5,002 01/24/2023, 12:53 AM
Last Post: tommy1729
  inverse supers of x^3 tommy1729 0 2,107 06/12/2022, 12:02 AM
Last Post: tommy1729
  Consistency in the composition of iterations Daniel 9 12,206 06/08/2022, 05:02 AM
Last Post: JmsNxn
  Improved infinite composition method tommy1729 5 10,247 07/10/2021, 04:07 AM
Last Post: JmsNxn
  Composition, bullet notation and the general role of categories MphLee 8 15,938 05/19/2021, 12:25 AM
Last Post: MphLee
  Is bugs or features for fatou.gp super-logarithm? Ember Edison 10 32,162 08/07/2019, 02:44 AM
Last Post: Ember Edison
  Can we get the holomorphic super-root and super-logarithm function? Ember Edison 10 34,396 06/10/2019, 04:29 AM
Last Post: Ember Edison
  Inverse Iteration Xorter 3 13,029 02/05/2019, 09:58 AM
Last Post: MrFrety
  The super 0th root and a new rule of tetration? Xorter 4 16,443 11/29/2017, 11:53 AM
Last Post: Xorter
  Solving tetration using differintegrals and super-roots JmsNxn 0 6,504 08/22/2016, 10:07 PM
Last Post: JmsNxn



Users browsing this thread: 1 Guest(s)