File:Critical curves of real quadratic map.svg

Original file(SVG file, nominally 2,000 × 2,000 pixels, file size: 528 KB)

Summary

Description
English: Critical curves of real quadratic map for periods 1,2,4,8,16 and 32
Date
Source Own work
Author Adam majewski

Licensing

I, the copyright holder of this work, hereby publish it under the following license:
w:en:Creative Commons
attribution share alike
This file is licensed under the Creative Commons Attribution-Share Alike 3.0 Unported 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.

Summary

Critical polynomial

so

These polynomials are used for finding :

  • centers of period n Mandelbrot set components. Centers are roots of n-th critical polynomials ( points where critical curve Qn croses x axis )
  • Misiurewicz points

Maxima CAS src code

kill(all);
remvalue(all);

/* ---------- functions ---------------------- */

/* http://en.wikipedia.org/wiki/Complex_quadratic_polynomial  */
f(z,c):=z*z+c;

fn(p, z, c) :=
  if p=0 then z
  elseif p=1 then f(z,c)
  else f(fn(p-1, z, c),c);

GiveDrawList(Period,cMin, cMax, cStep):=
 block
 (
  [MyList:[]],
  for c:cMin while c <= cMax step cStep do
    MyList:cons([c,fn(Period,0,c)],MyList),
 
   return(MyList)
)$

compile(all);

/* ---------- constant ---------------------------*/

nMax:5$
cMin:-2;
cMax:0.25;
cStep:0.003;

/* -------------  main -----------------------*/

ColorList:[red,blue,green, black, purple , brown, cyan, violet,gray ]$

DrawLists:[]$ /* empty list */

for n:0 thru nMax do 
(
 Period : 2^n,
 DrawList:GiveDrawList( Period,cMin, cMax, cStep),
 DrawLists:cons(points(DrawList),DrawLists),
 DrawLists:cons(key =concat("period =", string(Period)),DrawLists),
 DrawLists:cons(color=ColorList[n+1],DrawLists)
 
 
);

/* ----------------- draw ------------  */

path:"~/maxima/batch/skeleton/even/test/"$ /* result of pwd; to save image in the same directory as mac file  */
 FileName:string(nMax)$ /* without extension which is the terminal name */

load(draw); 

draw2d(
  terminal  = svg,
  file_name = concat(path,FileName),
  title = "Critical curves diagram for real quadratic map fc(z) = z^2 + c",
  dimensions=[2000,2000],
  user_preamble = "",
  xlabel     = "c",
  ylabel     = "z",
  xaxis        = true,
  points_joined =true,
  point_size    =  0.2,
  point_type = filled_circle,
  DrawLists
);

Captions

Add a one-line explanation of what this file represents

Items portrayed in this file

depicts

26 February 2014

File history

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

Date/TimeThumbnailDimensionsUserComment
current15:51, 26 February 2014Thumbnail for version as of 15:51, 26 February 20142,000 × 2,000 (528 KB)Soul windsurferUser created page with UploadWizard

The following page uses this file:

Global file usage

The following other wikis use this file:

Metadata