There is a nonlinear dynamical system x_n = f(x_n,eta) , the functional form of which is x[n+1] = 2*x[n] mod 1 . This is a chaotic dynamical system called the Savoto map or Bernoulli map. It is difficult for me to fulfill two representations of the inverse mapping given by formulas (4) and Eq (5). The following is a brief description of the problem.

where the sequence (s[n+k])_k=1 to N-1 is a symbolic description of the state x[n]. This description arises from the unit breakdown described below.
Let the number of partitions M = 2 and the symbol space = {0,1} and the symbol assignment rule
s[n+1] = 1 if x[n] >= 0.5, otherwise s[n+1] = 0
The authors of this article:
Linear, Random Representations of Chaos
For Eq (5), I do not get the same time series after the inversion, several values โโdiffer after the binary conversion. Can someone please give me the correct procedure?
I tried to implement a Bijective map for equations (4) and (5), but that didn't work.
Code for Eq (5) . I binarize in 2 ways. x contains real numbers; s is the binary equivalent of 0/1 of each real; y is the answer after converting s to real. s1 is the binary equivalent of x + 1 / -1; b - response after conversion to real. In this case, + 1 / -1, when I switch from character representation to real, I switch -1 from 0, and then apply the formula in Eq (5). From the answers it is clear that after the conversion, y and b do not coincide with x . I also get negative values โโfor b when the source realities are all unsigned rationals !! How can I implement correctly so that they are the same?
N =10; x(1) = 0.1; for i =1 : N x(i+1) = mod(x(i)*2, 1); end y = x; s = (y>=0.5); %generate 0/1 logicals for n = 1: N y(n) = 0.5*s(n+1) + 0.5*y(n+1); end b=x; s1 = 2*(b>=0.5)-1; %Generate +1/-1 for k =1: N if s1(k)== -1 s1(k) = 0; end b(k) = 0.5*s1(k+1) + 0.5*b(k+1); end
Let x =
0.100000000000000 0.200000000000000 0.400000000000000 0.800000000000000 0.600000000000000 0.200000000000000 0.400000000000000 0.800000000000001 0.600000000000001 0.200000000000003 0.400000000000006
y =
0.100000000000000 0.200000000000000 0.900000000000000 0.800000000000000 0.100000000000000 0.200000000000000 0.900000000000000 0.800000000000001 0.100000000000001 0.200000000000003 0.400000000000006
b =
-0.400000000000000 0.700000000000000 0.900000000000000 -0.200000000000000 -0.400000000000000 0.700000000000000 0.900000000000000 -0.199999999999999 -0.399999999999999 -0.299999999999997 0.400000000000006