Conjugate Maps in Chaos Theory
Overview
In chaos theory, the conjugacy of maps is akin to isometry and isomorphism, and indeed, in a more general context of dynamics, it is synonymous with homeomorphism itself.
1 Although not exactly the same according to some textbooks, their purpose is precisely the same. As is the case with mathematics, the idea is to verify a property in a simpler computation context first and then preserve that property where the actual proof is necessary.
Definition2
For two maps defined in , if there exists a continuous bijection such that is satisfied, then and are said to be conjugate.
Theorems3
Let’s assume for all , it holds that .
- [1]: If is a period- point of , then is a period- point of .
- [2]: If in the period- orbit of , holds
Explanation
These two theorems imply that conjugacy maintains irrespective of iterating the maps or taking derivatives. This means if it is easier to calculate the Lyapunov exponent in one system, it should be equally feasible in the system conjugate to it.
Examples4
A good example is showing that the logistic map has a chaotic orbit.
For example, the tent map is defined as , and the logistic map is defined as part of the logistic family as . In this case
is a continuous bijection that exists such that and are conjugate. It can be easily verified by actually calculating that
The pictures above show the graphs obtained by repeatedly applying the tent map and the process of finding the period- points of by finding the intersection points with . This demonstrates that for all , there exists a period- orbit for , and due to the existence of and theorem [1], it can also be shown that for all , there exists a period- orbit for .
Meanwhile, as almost everywhere , the period point of is a source, and the period point of is also a source. Therefore, the period orbit corresponding to the period orbit of cannot be asymptotically periodic for , and according to theorem [2], it guarantees that the Lyapunov exponent is positive.
This ultimately means that the logistic map has a chaotic orbit. While this indirect proof might feel difficult, it’s significantly easier than directly proving that the logistic map has a chaotic orbit.
Proof
Proof of theorem [1]
Assuming that holds,
Meanwhile, when , since ,
By mathematical induction for all ,
If is a period- point of , since ,
Thus, is a period- point of .
■
Proof of theorem [2]
Let’s consider is a period- point of .
From the proof of theorem [1],
By the chain rule,
Since , by cancelling the terms on both sides,
■
Code
Below is code written in R to draw graphs of the tent map , the logistic map , and .
tent<-function(x) {1 - abs(1-2*x)}
logistic<-function(x) {4*x*(1-x)}
win.graph(8,4); par(mfrow=c(1,2))
plot(tent,main='Tent Map T')
plot(logistic,main='Logistic Map G\')
win.graph(9,3.5); par(mfrow=c(1,3))
plot(tent,main='T',xlab='x',ylab='y'); abline(0,1)
plot(seq(0,1,len=1000),tent(tent(seq(0,1,len=1000))),main='T^2',type='l',xlab='x',ylab='y');abline(0,1)
plot(seq(0,1,len=1000),tent(tent(tent(tent(tent(seq(0,1,len=1000))))))
,main='T^k',type='l',xlab='x',ylab='y');abline(0,1)