What change of variables would trtansform the logistic equation into the Mandelbrot equation $z_{n+1}=z_n^2+c$?
2026-03-28 07:41:41.1774683701
On
Show that the familiar logistic map $x_{n+1} = sx_n(1 - x_n)$, can be recoded into the form $x_{n+1} = x_n^2 + c$.
5.1k Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
3
There are 3 best solutions below
0
On
Well, you can do the next trick:
$$z_n=f(x_n)$$
$$f(sx_n(1-x_n))=f(x_{n+1})=z_{n+1}=z_n^2+c = f(x_n)^2+c$$
So we want our transformation to fulfill:
$$f(sx_n-sx_n^2)-(f(x_n))^2= c$$
I guess you can check for $$f(x)=Ax+B$$, and then solve to find $A,B$.
$$A(sx-sx^2)+B-(A^2x^2+2ABx+B^2) = c$$ Because this should be valid for all $x$, we should have: $$-As-A^2=0$$ $$-2BA+As=0$$ $$B-B^2=c$$ $A\neq 0$, thus: $A=-s$ and $B=s/2$, and we should also have $s/2-s^2/4=c$
$$ z= i \cdot s \cdot (x - 0.5),\quad c = 0.5 \cdot \sqrt{s} $$