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


Messages In This Thread
Iterative square root like square root recursion limit - by bo198214 - 02/23/2009, 02:35 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  can normal tetration be defined as a limit of product tetration? Alex Zuma 2025 0 837 05/27/2026, 06:00 PM
Last Post: Alex Zuma 2025
  self penta root and infinite hexation Alex Zuma 2025 0 5,086 08/30/2025, 10:07 PM
Last Post: Alex Zuma 2025
  Limit when x approaches 0 saudinho 2 8,290 10/12/2023, 09:51 PM
Last Post: saudinho
  Real tetration as a limit of complex tetration Daniel 5 11,228 06/20/2023, 07:52 PM
Last Post: tommy1729
  Simple limit approximation to exp(x) tommy1729 0 3,357 05/16/2023, 11:13 PM
Last Post: tommy1729
  [MSE][NT][MOD][Tetration] tetration primitive root mod p tommy1729 1 3,626 04/03/2023, 06:50 PM
Last Post: tommy1729
  [MSE]root expressions and sine tommy1729 2 4,023 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 5,363 12/30/2022, 11:27 PM
Last Post: tommy1729
  [NT] primitive root conjecture tommy1729 0 3,163 09/02/2022, 12:32 PM
Last Post: tommy1729
Question A Limit Involving 2sinh Catullus 0 3,261 07/17/2022, 06:15 AM
Last Post: Catullus



Users browsing this thread: 1 Guest(s)