Iteration exercises: f(x)=x^2 - 0.5 ; Fixpoint-irritation...
#10
Sometimes we find easter-eggs even after easter...

For the alternating iteration-series
\( \hspace{48} sn(x,p)=\sum_{h=0}^{\infty} (-1)^h g(x,h) ^p \\
\hspace{48} \text{where } g(x)=\sqrt{0.5+x} \hspace{48} g(x,h)=g(g(x,h-1)) \hspace{48} g(x,1)=g(x) \)

(definitions as copied and extended from previous post, see below)

we find a rational polynomial for p=4. That means

\( \hspace{48} x^4 - g(x)^4 + g(x,2)^4-g(x,3)^4+ ... - ... \\
\hspace{48}= sn(x,4) = 1/8 - x^2 + x^4 \)


(maybe this is trivial and a telescoping sum only, didn't check this thorough)
<hr>
Another one:
\( \hspace{48} sn(x,1)+sn(x,2) = -0.25 + x^2
\)
<hr>

Code:
\\ define function f(x) for forward iteration and g(x) for backward iteration (=negative height)
\\(additional parameter h for positive integer heights is possible)
f(x,h=1) = for(k=1,h,x = x^2 - 0.5 ); return (x) ;
g(x,h=1) = for(k=1,h,x = sqrt(0.5 + x) ); return (x) ;

\\ do analysis at central value for alternating sums x0=1
x = 1.0
sp(x) = sumalt(h=0,(-1)^h * f(x , h))
sn(x) = sumalt(h=0,(-1)^h * g(x , h))
y(x) = sp(x) + sn(x) - x

Gottfried Helms, Kassel
Reply


Messages In This Thread
RE: Iteration exercises: f(x)=x^2 - 0.5 ; Fixpoint-irritation... - by Gottfried - 06/04/2011, 01:13 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Exotic fixpoint formulas tommy1729 2 4,238 06/20/2023, 10:10 PM
Last Post: tommy1729
  Fractional iteration of x^2+1 at infinity and fractional iteration of exp bo198214 17 54,743 06/11/2022, 12:24 PM
Last Post: tommy1729
  (Again) fixpoint outside Period tommy1729 2 10,146 02/05/2017, 09:42 AM
Last Post: tommy1729
  Polygon cyclic fixpoint conjecture tommy1729 1 8,525 05/18/2016, 12:26 PM
Last Post: tommy1729
  The " outside " fixpoint ? tommy1729 0 5,560 03/18/2016, 01:16 PM
Last Post: tommy1729
  2 fixpoint pairs [2015] tommy1729 0 5,920 02/18/2015, 11:29 PM
Last Post: tommy1729
  [2014] The secondary fixpoint issue. tommy1729 2 12,067 06/15/2014, 08:17 PM
Last Post: tommy1729
  Simple method for half iterate NOT based on a fixpoint. tommy1729 2 11,921 04/30/2013, 09:33 PM
Last Post: tommy1729
  Iteration exercises: Lucas-Lehmer-test and Schröder-function Gottfried 0 6,829 04/04/2012, 06:17 AM
Last Post: Gottfried
  Iteration series: Different fixpoints and iteration series (of an example polynomial) Gottfried 0 8,093 09/04/2011, 05:59 AM
Last Post: Gottfried



Users browsing this thread: 2 Guest(s)