Problem with infinite product of a function: exp(x) = x * f(x)*f(f(x))*...
#1
I http://math.stackexchange.com/questions/327995 I discuss the problem


Problem with infinite product using iterating of a function: \( \exp(x) = x \cdot f^{\circ 1}(x)\cdot f^{\circ 2}(x) \cdot \ldots \)
I think, because of the better latex-formatting it is easier to read there, but for completeness I'll copy&paste the problem here too.


Considering the iteration of functions, with focus on the iterated exponentiation, I'm looking, whether the function which I want to iterate can -hopefully with some advantage- itself be expressed by iterations of a -so to say- "more basic" function.

Now I assume a function f(x) such that
\( \exp(x) = x \cdot f^{\circ 1}(x)\cdot f^{\circ 2}(x)\cdot f^{\circ 3}(x)\cdots \)

(where the circle-notation means iteration, and \( f^{\circ 0}=x, f^{\circ 1}(x)=f(x) \)) - and I ask: what does this function look like? What I'm doing then is this substitution:


\( \begin{array} {lrll}
1.& \exp(x) & = &x & \cdot f^{\circ 1}(x) & \cdot f^{\circ 2}(x) & \cdot f^{\circ 3}(x) & \cdots \\
2.& \exp(f(x))&= && f^{\circ 1}(x) & \cdot f^{\circ 2}(x) & \cdot f^{\circ 3}(x) & \cdots \\ \\ \\
3.& {\exp(f(x))\over \exp(x) } & = & \frac 1x \\ \\
& \exp(f(x)) & = & &{ \exp(x) \over x} \\ \\ \\
4. & f(x)&=& x & - \log(x) \end{array} \)

\( \qquad \qquad \) *(From 4. I know, that x is now restricted to \( x \gt 0 \))*

But if I do now the computation with some example *x* I get the result

\( y = x \cdot f^{\circ 1}(x)\cdot f^{\circ 2}(x)\cdot f^{\circ 3}(x)\cdots
\\ y = \exp(x) / \exp(1) \)



***Q:*** Where does this additional factor come from? Where have the above steps missed some crucial information?

<hr>
A code snippet using Pari/GP:
PHP Code:
f(x) = x-log(x)  // define the function 
    
    
x0=1.5
         
//  = 1.50000000000
    
[tmp=x0,pr=1]              // initialize
    
for(k=1,64,pr *= tmp;tmp f(tmp));   pr   // compute 64 terms, show result
          // = 1.64872127070

    
exp(x0)        // show expected value
           // = 4.48168907034
     
    
pr*exp(1)      // show, how it matches
           //  = 4.48168907034 



<hr>
Here is an example which shows the type of convergence; I use *x_0=1.5* and internal precision of 200 decimal digits. Then we get the terms of the partial product as
\( \begin{array} {r|r}
x_k=f^{\circ k}(x) & (x_k-1) \\
\hline
1.50000000000 & 0.500000000000 \\
1.09453489189 & 0.0945348918918 \\
1.00420537512 & 0.00420537512103 \\
1.00000881788 & 0.00000881787694501 \\
1.00000000004 & 3.88772483656E-11 \\
1.00000000000 & 7.55720220223E-22 \\
1.00000000000 & 2.85556525627E-43 \\
1.00000000000 & 4.07712646640E-86 \\
1.00000000000 & 8.31148011150E-172 \\
1.00000000000 & 1.020640763E-202 \\
1.00000000000 & 1.020640763E-202 \\
\cdots & \cdots
\end{array}
\)
Gottfried Helms, Kassel
Reply


Messages In This Thread
Problem with infinite product of a function: exp(x) = x * f(x)*f(f(x))*... - by Gottfried - 03/12/2013, 08:58 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  extending normal tetration to real numbers using product tetration Alex Zuma 2025 0 945 12/12/2025, 07:49 PM
Last Post: Alex Zuma 2025
  product tetration Alex Zuma 2025 0 1,231 09/24/2025, 12:47 PM
Last Post: Alex Zuma 2025
  self penta root and infinite hexation Alex Zuma 2025 0 4,158 08/30/2025, 10:07 PM
Last Post: Alex Zuma 2025
  Is there any ways to compute iterations of a oscillating function ? Shanghai46 3 7,907 10/15/2023, 11:21 PM
Last Post: tommy1729
  Anyone have any ideas on how to generate this function? JmsNxn 3 5,105 05/21/2023, 03:30 PM
Last Post: Ember Edison
  [MSE] Mick's function Caleb 1 3,885 03/08/2023, 02:33 AM
Last Post: Caleb
  [special] binary partition zeta function tommy1729 1 3,831 02/27/2023, 01:23 PM
Last Post: tommy1729
  [NT] Extending a Jacobi function using Riemann Surfaces JmsNxn 2 4,880 02/26/2023, 08:22 PM
Last Post: tommy1729
  another infinite composition gaussian method clone tommy1729 2 5,056 01/24/2023, 12:53 AM
Last Post: tommy1729
  toy zeta function tommy1729 0 2,799 01/20/2023, 11:02 PM
Last Post: tommy1729



Users browsing this thread: 1 Guest(s)