Jump to content

Talk:Plotting algorithms for the Mandelbrot set

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Majow (talk | contribs) at 19:19, 2 January 2023 (A useful special case of the distance estimation formula: small correction (c was used twice).). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Article needs "see also", "further reading" and "external links" sections

This article needs the above sections, but I'm not sure where to begin. Any help would be appreciated. Jdbtwo (talk) 18:00, 12 February 2020 (UTC)[reply]

Feedback from New Page Review process

I left the following feedback for the creator/future reviewers while reviewing this article: Most of the text is from the set]. In edit summary, I would add the attribution per policy..

scope_creepTalk 10:47, 3 June 2020 (UTC)[reply]

Missing section: e^(-|z|)-smoothing

I stumbled upon the following Mandelbrot animation:

https://rtricks.blogspot.com/2007/04/mandelbrot-set-with-r-animation.html

By chance I found out that there is a name for this coloring. The addition of the individual images is called e^(-|z|)-smoothing.

You can find the description here (https://eudml.org/doc/257038):

http://www.mi.sanu.ac.rs/vismath/javier/b3.htm (year: 1999)

http://math.unipa.it/~grim/Jbarrallo.PDF (year: 2002)

If you know the Julia programming language, you can try this out right away:

https://www.rosettacode.org/wiki/Mandelbrot_set#Mandelbrot_Set_with_Julia_Animation

https://www.rosettacode.org/wiki/Mandelbrot_set#Normalized_Iteration_Count.2C_Distance_Estimation_and_Mercator_Maps

Since I am not a native speaker, I cannot create this section myself.

Greetings --Majow (talk) 10:42, 7 July 2021 (UTC)[reply]

Primary Source for Mariani/Silver

I have written the following article: https://ricomariani.medium.com/the-mariani-silver-algorithm-for-drawing-the-mandelbrot-set-a71e31bc20b6

You may or may not want to use some of that information as a primary source in any future edits. It helps to support [13] if nothing else.

Mariani-Silver isn't really characterized very well in the main text. All versions of it used recursion to look for bigger regions and then divide as necessary even the very first one I wrote.

50.35.68.222 (talk) 05:37, 29 August 2021 (UTC)[reply]

Thank you for pointing this out. A Java-based implementation of the Mariani-Silver algorithm (Divide and Conquer) can be found here: https://en.wikibooks.org/wiki/Fractals/fractalzoomer#Greedy_Drawing_Algorithms and https://github.com/hrkalona/Fractal-Zoomer/tree/master/src/fractalzoomer/core/drawing_algorithms Majow (talk) 09:25, 25 September 2022 (UTC)[reply]

complex numbers

Hi. Pseudocode/code can use complex mumbers, not 2 double numbers. This makes code easier to read. --Adam majewski (talk) 08:47, 24 December 2021 (UTC)[reply]

Derivative Bailout or "derbail"

I'm not a specialist, but doesn't the derbail code always return 1024? And I also think the while loop never starts because: magn(x,y) > 4 is not true. — Preceding unsigned comment added by Philipsjps (talkcontribs) 16:23, 19 May 2022 (UTC)[reply]

A useful special case of the distance estimation formula

To understand the distance estimation formula more easily, one can consider the Julia set with as a special case: This set is simply the unit circle around the origin (cf. Julia set: Examples). Considering the associated sequence at the point , the first polynomials are , , and . The first derivatives are , , and . In general, the polynomial results from the iteration rule to . The derivation results from the derivation rule to .

If you now apply the distance formula (without the factor 2), you get , and thus . This formula is a very good approximation of the distance to the unit circle near the boundary: , and . The error only becomes large at greater distances from the boundary, e.g. , so here the real distance 5 is overestimated by a factor of 2. Majow (talk) 16:51, 2 January 2023 (UTC)[reply]