Kaplan-Yorke map

From Wikipedia, the free encyclopedia

A plot of 100,000 iterations of the Kaplan-Yorke map with α=0.2. The initial value (x0,y0) was (128873/350377,0.667751).
Enlarge
A plot of 100,000 iterations of the Kaplan-Yorke map with α=0.2. The initial value (x0,y0) was (128873/350377,0.667751).

The Kaplan-Yorke map is a discrete-time dynamical system. It is an example of dynamical system that exhibit chaotic behavior. The Kaplan-Yorke map takes a point (xn, yn ) in the plane and maps it to a new point given by

x_{n+1}=2x_n\ (\textrm{mod}~1)\,
y_{n+1}=\alpha y_n+\cos(4\pi x_n)\,

where mod is the modulo operator with real arguments. The map depends on only the one constant α.

[edit] Calculation method

Due to roundoff error, successive applications of the modulo operator will yield zero after some ten or twenty iterations when implemented as a floating point operation on a computer. It is better to implement the following equivalent algorithm:

a_{n+1}=2a_n\ (\textrm{mod}~b)\,
x_{n+1}=a/b\,
y_{n+1}=\alpha y_n+\cos(4\pi x_n)\,

where the an and b are computational integers. It is also best to choose b to be a large prime number in order to get many different values of xn.

[edit] References


Image:Mathapplied-stub_ico.png This applied mathematics-related article is a stub. You can help Wikipedia by expanding it.