Suvarna Garge (Editor)

Kaplan–Yorke map

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Kaplan–Yorke map

The Kaplan–Yorke map is a discrete-time dynamical system. It is an example of a dynamical system that exhibits 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 = 2 x n   ( mod   1 ) y n + 1 = α y n + cos ( 4 π x n )

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

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 = 2 a n   ( mod   b ) x n + 1 = a n / b y n + 1 = α y n + cos ( 4 π x n )

where the a n 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 x n .

References

Kaplan–Yorke map Wikipedia