Jabotinsky's iterative logarithm
#5
I tried using my finite power series methods with this, and here is the code:
Code:
def iter_log(expr, t, x):
  if is_parabolic(expr, x, 0):
    f = parabolic_flow(expr, t, x)
  else:
    f = hyperbolic_flow(expr, t, x)
  return diff(f, t).subs(t=0)

def cto(ch): return dict([('C'+str(k), var(ch+str(k))) for k in range(1,10)])

t = var('t')

f = p_poly(x, 6).subs(cto('F'))
g = p_poly(x, 6).subs(cto('G'))
fog = taylor(f.subs(x=g).expand(), x, 0, 6)

z1 = taylor(
  ( iter_log(f, t, x)
  + iter_log(g, t, x)
  - iter_log(fog, t, x)
  ).expand(), x, 0, 6)

z2 = taylor(
  ( g*iter_log(f, t, x)
  + f*iter_log(g, t, x)
  - iter_log(fog, t, x)
  ).expand(), x, 0, 6)

z3 = taylor(
  ( iter_log(f, t, x)
  + iter_log(f.subs(x=f), t, x)
  - iter_log(f.subs(x=f).subs(x=f), t, x)
  ).expand(), x, 0, 6)

...

sage: z1
(F2*G3 - F2*G2^2 - F3*G2 + F2^2*G2)*x^4/2

sage: z2
(-G2 - F2)*x^2 + (-G3 + G2^2 + G2 - F3 + F2^2 + F2)*x^3 + ...

sage: z3
0

So, Jabotinsky is wrong.
If Jabotinsky is right, then z1 = 0, but
according to this, \( z1 =
\frac{x^4}{2}((f_2g_3 - f_3g_2) + (f_2 -
g_2)f_2g_2) + \cdots \) which is only
true if \( f = g \) or if g is an iterate of f.

Sadly, the same is true of z2, only more so, because it displayes non-zero terms way before the 4th term, so it is more obvious that it is non-zero.

Andrew Robbins
Reply


Messages In This Thread
Jabotinsky's iterative logarithm - by bo198214 - 05/21/2008, 06:00 PM
RE: Jabotinsky's iterative logarithm - by Ivars - 05/22/2008, 09:02 AM
RE: Jabotinsky's iterative logarithm - by Ivars - 05/22/2008, 01:13 PM
RE: Jabotinsky's iterative logarithm - by andydude - 05/22/2008, 05:53 PM
RE: Jabotinsky's iterative logarithm - by Ivars - 05/23/2008, 07:05 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
Question Derivative of the Tetration Logarithm Catullus 1 3,287 07/03/2022, 07:23 AM
Last Post: JmsNxn
Question Iterated Hyperbolic Sine and Iterated Natural Logarithm Catullus 2 4,880 06/11/2022, 11:58 AM
Last Post: tommy1729
  Jabotinsky IL and Nixon's program: a first categorical foundation MphLee 10 18,501 05/13/2021, 03:11 PM
Last Post: MphLee
  Is bugs or features for fatou.gp super-logarithm? Ember Edison 10 32,341 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,557 06/10/2019, 04:29 AM
Last Post: Ember Edison
  True or False Logarithm bo198214 4 22,239 04/25/2012, 09:37 PM
Last Post: andydude
  Base 'Enigma' iterative exponential, tetrational and pentational Cherrina_Pixie 4 22,100 07/02/2011, 07:13 AM
Last Post: bo198214
  Principal Branch of the Super-logarithm andydude 7 31,307 06/20/2011, 09:32 PM
Last Post: tommy1729
  Logarithm reciprocal bo198214 10 47,385 08/11/2010, 02:35 AM
Last Post: bo198214
  Kneser's Super Logarithm bo198214 16 92,146 01/29/2010, 06:43 AM
Last Post: mike3



Users browsing this thread: 2 Guest(s)