This is a file from the Wikimedia Commons

File:Jung200.png

From Wikibooks, open books for an open world
Jump to navigation Jump to search

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

Summary

Description
English: Boundary of Mandelbrot set as an image of unit circle of Jungreis function
Polski: Brzeg Zbioru Mandelbrota jako obraz koła jednostkowego po zastosowaniu funkcji Jungreisa
Date 4 January 2009 (upload date)
Source Own work : translation of maple code by G. A. Edgar; Help : G. A. Edgar and Richard J. Fateman, Robert P. Munafo and Richard J. Fateman.[1] See also : Bifurcation of Dynamic Rays in Complex Polynomials of Degree Two, Atela, P., Ergod Th & Dynam Sys (1991) 12, 401-423
Author Adam majewski
File:Jungreis.svg is a vector version of this file. It should be used in place of this PNG file when not inferior.

File:Jung200.png → File:Jungreis.svg

For more information, see Help:SVG.

In other languages
Alemannisch  Bahasa Indonesia  Bahasa Melayu  British English  català  čeština  dansk  Deutsch  eesti  English  español  Esperanto  euskara  français  Frysk  galego  hrvatski  Ido  italiano  lietuvių  magyar  Nederlands  norsk bokmål  norsk nynorsk  occitan  Plattdüütsch  polski  português  português do Brasil  română  Scots  sicilianu  slovenčina  slovenščina  suomi  svenska  Tiếng Việt  Türkçe  vèneto  Ελληνικά  беларуская (тарашкевіца)  български  македонски  нохчийн  русский  српски / srpski  татарча/tatarça  українська  ქართული  հայերեն  বাংলা  தமிழ்  മലയാളം  ไทย  한국어  日本語  简体中文  繁體中文  עברית  العربية  فارسی  +/−
New SVG image

Maxima source code

 /*  batch file for maxima 
 uses :
 - symmetry around horizontal ( 0X ) axis
 - Psi_M function to map conjugate plane to parameter plane
 - jungreis algorithm to 
 time :
 263 sec for jMax:100; and iMax:800;
 4000 sec for jMax:400
 
 */ 
 start:elapsed_run_time ();
 
 jMax:300; /* precision  = proportional to details and time of computations  */
 iMax:800; /* number of points to draw */
 
/* ------------ computes b coefficient of Jungreis function ----------------*/
 betaF[n,m]:=block
 (
 [nnn:2^(n+1)-1],
 if m=0
 then 1.0
 else if ((n>0) and (m < nnn)) 
  then 0.0
  else (betaF[n+1,m]- sum(betaF[n,k]*betaF[n,m-k],k,nnn,m-nnn)-betaF[0,m-nnn])/2.0
 )$
 b[m]:=betaF[0,m+1]$
 /* -------------------------------*/
 /* Power of w to j */
 wn[w,j]:= if j=0 then 1 else w*wn[w,j-1]$
 

/* ---------Jungreis function ;  c = Psi_M(w) ----------------------------- */
 Psi_M(w):=w + sum(b[j]/wn[w,j],j,0,jMax)$

 /* exponential for of complex number with angle in turns */
 GiveCirclePoint(t):=R*%e^(%i*t*2*%pi)$ /* gives point of unit circle for angle t in turns */
 
/* -------------------------------------- w-plane -----------------------------------------*/
 

/*-------------- unit circle ------------*/
 R:1;
 circle_angles:makelist(i/iMax,i,0,iMax/2)$
 CirclePoints:map(GiveCirclePoint,circle_angles)$
 
/* -------------------------parameter plane = c plane -----------------------------------*/
 MPoints:map(Psi_M,CirclePoints); /* Mandelbrot set points */
 /* add points below horizontal axis */
 for w in CirclePoints do CirclePoints:cons(conjugate(w),CirclePoints);
 for c in MPoints do MPoints:cons(conjugate(c),MPoints);
 
/* time */
 stop:elapsed_run_time ();
 time:fix(stop-start); 
 
/* ---------------- draw *--------------------------------------------------------------------------*/
 load(draw); /* Mario Rodríguez Riotorto   http://www.telefonica.net/web2/biomates/maxima/gpdraw/index.html */
 draw(file_name = "jung300",
  dimensions=[1000, 500],
  terminal  = 'png,
  columns  = 2,
  gr2d(title = " unit circle {w:abs(w)=1} ",
  point_type = filled_circle,
  points_joined =true,
  point_size    =  0.34,
  color         = red,
  points(map(realpart, CirclePoints),map(imagpart, CirclePoints))
  ),
  gr2d(title      = " Image of circle under Psi_M(w) ",
  points_joined =true,
  point_type = filled_circle,
  point_size    =0.34,
  color         = blue,
  points(map(realpart, MPoints),map(imagpart, MPoints))
  ) 
 );

References

  1. Drawing Mc by Jungreis Algorithm

Licensing

I, the copyright holder of this work, hereby publish it under the following licenses:
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.
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.
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

4 January 2009

File history

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

Date/TimeThumbnailDimensionsUserComment
current13:28, 4 January 2009Thumbnail for version as of 13:28, 4 January 20091,000 × 500 (8 KB)Soul windsurfer{{Information |Description={{en|1=Boundary of Mandelbrot set as an image of unit circle}} {{pl|1=Brzeg Zbioru Mandelbrota jako obraz koła jednostkowego}} |Source=Own work |Author=Adam majewski |Date=4.01.2009 |Permission= |other_ve

Global file usage

The following other wikis use this file: