computing the iterated exp(x)-1
#8
jaydfox Wrote:
bo198214 Wrote:
Daniel Wrote:\( f^n(z)=z+\frac{1}{2} n z^2 + \frac{1}{12} (3n^2-n) z^3 + \frac{1}{48} (6n^3-5n^2+n) z^4 + \cdots \) is the general solution

Which formula for the coefficients is this exactly?


The coefficients occur also by explicitely computing
the matrix-exponential via the exponential-series.

Let CL = log( C ) ,
where C is the iterable operator for exp(z)-1 as defined in my other post, then

Code:
.
     exp(n*CL)= (n Cl)^0 + (n CL)^1 + (n CL)^2/2! + (n CL)^3/3! ...

with as many terms as a given finite dimension requires
(CL is nilpotent to the order of its dimension)

Then we have (selecting dimension 5 for an example)

Code:
exponential-series
     tmpm = CL*n
     tmpe= matid(5)+ tmpm + tmpm^2/2! + tmpm^3/3! + tmpm^4/4!

and tmpe is
Code:
tmpe
  1                        .              .      .  .
  0                        1              .      .  .
  0                    1/2*n              1      .  .
  0           1/4*n^2-1/12*n              n      1  .
  0  1/8*n^3-5/48*n^2+1/48*n  3/4*n^2-1/6*n  3/2*n  1

The value for the half-iterate h(z) occurs then from the matrix-product
Code:
V(z)~ * tmpe [,1]

where as usual the second column of tmpe is the interesting one.

Code:
second column of tmpe:
    tmpe[,1]= [0, 1, 1/2*n, 1/4*n^2 - 1/12*n, 1/8*n^3 - 5/48*n^2 + 1/48*n]~

and with h(z) for the value of the half-iterate resp to parameter z in
Code:
.
    h(z) = V(z)~ * tmpe [,1]


we have

Code:
formula for half-iterate, using matrix dimension 5
h(z) = z^0 * 0
       +z^1 * 1
       +z^2 * 1/2 *(1*n)
       +z^3 * 1/12*(3*n^2 - 1*n)
       +z^4 * 1/48*(6*n^3 - 5*n^2 + 1*n]

which agrees with your formula.

Gottfried
Gottfried Helms, Kassel
Reply


Messages In This Thread
computing the iterated exp(x)-1 - by Daniel - 08/13/2007, 10:47 PM
RE: computing the iterated exp(x)-1 - by andydude - 08/16/2007, 01:28 AM
RE: computing the iterated exp(x)-1 - by jaydfox - 08/16/2007, 06:51 AM
RE: computing the iterated exp(x)-1 - by bo198214 - 08/16/2007, 07:48 AM
RE: computing the iterated exp(x)-1 - by andydude - 08/17/2007, 08:44 PM
RE: Iterability of exp(x)-1 - by bo198214 - 08/13/2007, 10:50 PM
RE: Iterability of exp(x)-1 - by Daniel - 08/14/2007, 06:51 PM
RE: Iterability of exp(x)-1 - by jaydfox - 08/14/2007, 01:01 AM
RE: Iterability of exp(x)-1 - by Gottfried - 08/14/2007, 12:45 PM
RE: Iterability of exp(x)-1 - by bo198214 - 08/14/2007, 04:11 PM
RE: Iterability of exp(x)-1 - by Gottfried - 08/14/2007, 04:35 PM
RE: Iterability of exp(x)-1 - by jaydfox - 08/14/2007, 02:42 AM
RE: Iterability of exp(x)-1 - by Gottfried - 08/14/2007, 03:08 AM
RE: Iterability of exp(x)-1 - by jaydfox - 08/14/2007, 05:09 AM
RE: Iterability of exp(x)-1 - by Gottfried - 08/14/2007, 05:09 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  4 hypothesis about iterated functions Shanghai46 11 13,146 04/22/2023, 08:22 PM
Last Post: Shanghai46
  Question about the properties of iterated functions Shanghai46 9 11,483 04/21/2023, 09:07 PM
Last Post: Shanghai46
  Computing sqrt 2 with rational functions. tommy1729 0 2,349 03/31/2023, 11:49 AM
Last Post: tommy1729
  [MSE] iterated sin using Besselfunction 1st kind Gottfried 7 8,908 12/18/2022, 02:06 PM
Last Post: Gottfried
  Iterated function convergence Daniel 1 4,086 12/18/2022, 01:40 AM
Last Post: JmsNxn
  Uniqueness of fractionally iterated functions Daniel 7 11,096 07/05/2022, 01:21 AM
Last Post: JmsNxn
Question Iterated Hyperbolic Sine and Iterated Natural Logarithm Catullus 2 4,861 06/11/2022, 11:58 AM
Last Post: tommy1729
  Generalized Kneser superfunction trick (the iterated limit definition) MphLee 25 43,765 05/26/2021, 11:55 PM
Last Post: MphLee
  iterated derivation Xorter 0 4,362 06/09/2019, 09:43 PM
Last Post: Xorter
  1st iterated derivatives and the tetration of 0 Xorter 0 5,706 05/12/2018, 12:34 PM
Last Post: Xorter



Users browsing this thread: 3 Guest(s)