Iterative square root like square root recursion limit
#1
Surely you guys know the recursion limit formula (I use recursion to avoid the term iteration which is already occupied) for the square root of \( b \):

\( x_{n+1} = \frac{1}{2}\left(x_n+\frac{b}{x_n}\right) \)
\( \lim_{n\to \infty} x_n = \sqrt{b} \)

Now - also inspired the Newton formula analogy - I was asking myself whether we cant do a similar thing for the iterative square root \( w \) of \( f \), i.e. \( w\circ w =f \).

An analogon could be:
\( w_0 = f \)
\( w_{n+1} = \frac{1}{2}\left(w_n + {w_n}^{-1}\circ f\right) \), \( w = \lim_{n\to\infty} w_n \).

The numerical verification will take some more time for me and is currently too slow. Do you think that the above construction converge?

For matrices the method works to compute matrix square root. But matrix multiplication is both side distributive while function composition is only distributive from the right.

Because this restricted distributivity there may also be variants like
\( w_{n+1} = \frac{1}{2}\left(w_n + f\circ {w_n}^{-1}\right) \) or
\( w_{n+1} = \frac{1}{2}{w_n}^{-1}\left( w_n \circ w_n + f\right) \)

will they converge to a differnt iterative square root?
Tell me what you think!
Reply
#2
bo198214 Wrote:Now - also inspired the Newton formula analogy - I was asking myself whether we cant do a similar thing for the iterative square root \( w \) of \( f \), i.e. \( w\circ w =f \).

Nice idea. I've used f(x) = 2x + x^2 , then

f05 = Ser(x)
f05 = 1/2*(f05 + f (serreverse(f05))) \\ recurse

to arrive at the same result like when using the matrix-root.

:-)

[update] it works also for the dxp(x) = exp(x)-1 function, matching the matrix-method.
For exp(x) Pari/GP cannot give a seriesinversion, so I can't check this [/update]
Gottfried
Gottfried Helms, Kassel
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  self penta root and infinite hexation Alex Zuma 2025 0 4,115 08/30/2025, 10:07 PM
Last Post: Alex Zuma 2025
  Limit when x approaches 0 saudinho 2 7,293 10/12/2023, 09:51 PM
Last Post: saudinho
  Real tetration as a limit of complex tetration Daniel 5 9,440 06/20/2023, 07:52 PM
Last Post: tommy1729
  Simple limit approximation to exp(x) tommy1729 0 2,760 05/16/2023, 11:13 PM
Last Post: tommy1729
  [MSE][NT][MOD][Tetration] tetration primitive root mod p tommy1729 1 2,999 04/03/2023, 06:50 PM
Last Post: tommy1729
  [MSE]root expressions and sine tommy1729 2 3,239 03/03/2023, 05:52 PM
Last Post: tommy1729
  Semi-group iso , tommy's limit fix method and alternative limit for 2sinh method tommy1729 1 4,591 12/30/2022, 11:27 PM
Last Post: tommy1729
  [NT] primitive root conjecture tommy1729 0 2,664 09/02/2022, 12:32 PM
Last Post: tommy1729
Question A Limit Involving 2sinh Catullus 0 2,841 07/17/2022, 06:15 AM
Last Post: Catullus
Question Functional Square Root Catullus 24 28,578 07/01/2022, 09:17 PM
Last Post: tommy1729



Users browsing this thread: 1 Guest(s)