Fine Art

.


The Tinkerbell map is a discrete-time dynamical system given by:

\( x_{n+1}=x_n^2-y_n^2+ax_n+by_n\, \)

\( y_{n+1}=2x_ny_n+cx_n+dy_n\, \)

Some commonly used values of a, b, c, and d are

a=0.9, b=-0.6013, c=2.0, d=0.50
a=0.3, b=0.6000, c=2.0, d=0.27

Like all chaotic maps, the Tinkerbell Map has also been shown to have periods; after a certain number of mapping iterations any given point shown in the map to the right will find itself once again at its starting location.

The origin of the name is uncertain; however, the graphical picture of the system (as shown to the right) shows a similarity to the movement of Tinker Bell over Cinderella Castle, as shown at the beginning of all films produced by Disney.
Source code

The Java source code that was used to generate the Tinkerbell Map displayed above:

import java.io.*;

public class TinkerBellMap {
public static void main(String[] args) throws Exception {
FileWriter fstream = new FileWriter("TinkerBellMapOutput.txt");
BufferedWriter out = new BufferedWriter(fstream);
int time = 0, iterations = 50000;
double x = -0.72, y = -0.64;
double a = 0.9, b = -0.6013, c = 2.0, d = 0.5;
while (time < iterations) {
double oldX = x;
x = Math.pow(x,2)-Math.pow(y,2)+a*x+b*y;
y = 2*oldX*y+c*oldX+d*y;
out.write(x+" "+y+"\n"); //writing data to a txt file to be read by Mathematica
time++;
}
}
}

See also

List of chaotic maps

References

C.L. Bremer & D.T. Kaplan, Markov Chain Monte Carlo Estimation of Nonlinear Dynamics from Time Series
K.T. Alligood, T.D. Sauer & J.A. Yorke, Chaos: An Introduction to Dynamical Systems, Berlin: Springer-Verlag, 1996.
P.E. McSharry & P.R.C. Ruffino, Asymptotic angular stability in non-linear systems: rotation numbers and winding numbers
R.L. Davidchack, Y.-C. Lai, A. Klebanoff & E.M. Bollt, Towards complete detection of unstable periodic orbits in chaotic systems
B. R. Hunt, Judy A. Kennedy, Tien-Yien Li, Helena E. Nusse, "SLYRB measures: natural invariant measures for chaotic systems"
A. Goldsztejn, W. Hayes, P. Collins "Tinkerbell is Chaotic" SIAM J. Applied Dynamical Systems 10, n.4 1480-1501, 2011


Mathematics Encyclopedia

Retrieved from "http://en.wikipedia.org/"
All text is available under the terms of the GNU Free Documentation License

Home - Hellenica World