Original file(1,000 × 1,000 pixels, file size: 7 KB, MIME type: image/png)

Summary

Description
English: Distance between point of orbit of discrete dynamical system.

We have discrete dynamical system:

where

Distance between and is :

From this image one can see that:

  • distance tends to zero, so all orbit tends to one point ( attractor),
  • distance is not 0 at the beginning, so attractor is not :
    • super attracting
    • Siegel disc,
IMHO maximal distance is 4 ( from -2 to 2 ).
Source self-made with Maxima
Author Adam majewski

See also

Long description

Maxima code

Here is batch file for Maxima:

c:-0.71+0.1*%i;
f(z,c):=z*z+c;
iMax:300;
z0:0+0*%i;
dist(z_prev,z_next):=
 block(
 dr:realpart(z_next)-realpart(z_prev),
 di:imagpart(z_next)-imagpart(z_prev),
 d:sqrt(dr*dr+di*di),
 return(d)
);
/* */
z1:f(z0,c);
d1:dist(z0,z1);
/* save the z values to 2 lists */
xx:makelist (1, i, 1, 1); /* list of numbers of iterations */
yy:makelist (d1, i, 1, 1); /* list of distance(z(n),z(n+1)) */
/* */ 
z_prev:z1;
for i:2 thru iMax step 1 do
 block
 (
   z_next:f(z_prev,c),
   d:dist(z_prev,z_next),
   xx:cons(i,xx), 
   yy:cons(d,yy),
   z_prev:z_next
 );
load(draw);
draw2d(
   file_name = "distance",
   terminal  = 'png,
   yrange = [0,0.8],
   xrange = [0,iMax],
   pic_width  = 1000,
   pic_height = 1000,
   title= "distance between points zn and z(n+1) where z(n+1)=f(zn)= zn*zn+c and z0=0 is critical point",
   key = concat("distance for c = ",string(c)),
   xlabel     = "number of iteration",
   ylabel     = "distance",
   point_type    = filled_circle,
   point_size    = 0.5,
   color         = red,
   points(xx,yy)
  );

Licensing

I, the copyright holder of this work, hereby publish it under the following licenses:
GNU head Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License.
w:en:Creative Commons
attribution share alike
This file is licensed under the Creative Commons Attribution-Share Alike 4.0 International, 3.0 Unported, 2.5 Generic, 2.0 Generic and 1.0 Generic license.
You are free:
  • to share – to copy, distribute and transmit the work
  • to remix – to adapt the work
Under the following conditions:
  • attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
  • share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.
You may select the license of your choice.

Captions

Add a one-line explanation of what this file represents

Items portrayed in this file

depicts

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current13:02, 20 April 2008Thumbnail for version as of 13:02, 20 April 20081,000 × 1,000 (7 KB)Soul windsurfer{{Information |Description=Distance between point of orbit of discrete dynamical system |Source=self-made with Maxima |Date= |Author= Adam majewski |Permission= |other_versions= }}

Global file usage

The following other wikis use this file:

  • Usage on pl.wikibooks.org