Tested tool guide
Tested browser tools
Checked August 16, 2026
What Mandelbrot Set Explorer does, with a checked example
Move through the Mandelbrot parameter plane, zoom into boundary structure, change the iteration limit and color map, or use a selected complex parameter to display its Julia set. The view represents repeated evaluation of a quadratic complex function, with color distinguishing how quickly sampled points escape. The main trap is confusing the two views: a Mandelbrot pixel represents a parameter c, while a Julia pixel represents a starting value z for one fixed c. Higher iteration limits reveal slower escape, but do not add screen resolution.
Worked example
A concrete input and expected output from the current implementation.
Input
Julia parameter c = 0 + 0i
->
Expected output
A circular Julia boundary at |z| = 1, with the filled non-escaping region |z| <= 1.
With c = 0, the iteration is z(n+1) = z(n)^2. Magnitudes below 1 approach zero, magnitudes above 1 grow without bound, and magnitudes exactly equal to 1 remain on the unit circle.