Artin–Schreier theory: Difference between revisions

From formulasearchengine
Jump to navigation Jump to search
en>Yobot
m →‎References: WP:CHECKWIKI error fixes - Replaced endash with hyphen in sortkey per WP:MCSTJR using AWB (9100)
en>Rjwilmsi
m →‎References: Added 1 doi to a journal cite using AWB (10388)
 
Line 1: Line 1:
{{no footnotes|date=June 2013}}
Hi there. Let me begin by introducing the author, her title is Myrtle Cleary. Managing people is his occupation. South Dakota is where me and my husband reside. To perform baseball is the hobby he will by no means stop performing.<br><br>My website; at home std test; [http://netwk.hannam.ac.kr/xe/data_2/38191 official source],
[[Image:Michael Wu - TinkerBellMapGraph.gif|thumb|right|Tinkerbell attractor with a=0.9, b=-0.6013, c=2, d=0.5. Used starting values of <math>x_0 = -0.72</math> and <math>y_0 = -0.64</math>.]]
The '''Tinkerbell map''' is a discrete-time [[dynamical system]] given by:
 
:<math>x_{n+1}=x_n^2-y_n^2+ax_n+by_n\,</math>
 
:<math>y_{n+1}=2x_ny_n+cx_n+dy_n\,</math>
 
Some commonly used values of a, b, c, and d are
 
*<math>a=0.9, b=-0.6013, c=2.0, d=0.50</math>
*<math>a=0.3, b=0.6000, c=2.0, d=0.27</math>
 
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:
<source lang="java">
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++;
    }
  }
}
</source>
 
==See also==
* [[List of chaotic maps]]
 
== References ==
* [http://www.macalester.edu/~kaplan/preprints/bremer.pdf 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.
* [http://www.maths.ox.ac.uk/~mcsharry/papers/dynsys18n3p191y2003mcsharry.pdf P.E. McSharry & P.R.C. Ruffino, ''Asymptotic angular stability in non-linear systems: rotation numbers and winding numbers'']
* [http://chaos1.la.asu.edu/~yclai/papers/PLA_01_DLKB.pdf 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"
* [http://www.goldsztejn.com/publications/SIADS2011.pdf A. Goldsztejn, W. Hayes, P. Collins "Tinkerbell is Chaotic" SIAM J. Applied Dynamical Systems 10, n.4 1480-1501, 2011]
 
   
 
{{Chaos theory}}
 
[[Category:Chaotic maps]]
 
{{Mathapplied-stub}}

Latest revision as of 17:15, 19 August 2014

Hi there. Let me begin by introducing the author, her title is Myrtle Cleary. Managing people is his occupation. South Dakota is where me and my husband reside. To perform baseball is the hobby he will by no means stop performing.

My website; at home std test; official source,