Deep zoom and perturbation
At extreme magnification, adjacent pixels differ by less than ordinary floating-point numbers can represent near the current center. Deep zoom is therefore a precision problem before it is a graphics problem.

The coordinate-collapse threshold
Double precision carries roughly sixteen decimal digits. Once the viewport is much narrower than the representable spacing around its center, several screen pixels map to the same number and detail freezes or forms blocks.
When neighboring pixels map to the same floating-point coordinate, direct iteration can no longer distinguish their detail. More mantissa bits delay the threshold but are expensive per pixel. Zoom alone does not determine the need; center, view width and pixel density all matter. A precision indicator should name the coordinate representation actually in use.
One reference, many deltas
Perturbation computes a reference orbit at high precision and expresses nearby pixel orbits as small deltas from it. Those deltas can often be advanced in faster arithmetic, concentrating expensive precision in the shared reference.
Perturbation computes a reference orbit X at high precision and represents each nearby point as X+δ. Small deltas can often be propagated in fast standard precision. Expensive work is concentrated from millions of pixels into a few references. Reliable error control is essential: when δ grows or the approximation becomes ill-conditioned, a new reference orbit is required.
Glitches and rebasing
Approximation fails when a delta is no longer small relative to the reference or rounding overwhelms it. Detection, rebasing to another reference and arbitrary-precision fallback prevent false rectangles from becoming part of the image. Progressive passes must still finish at the display’s true resolution.
Glitches appear as false blocks, stripes or pixel islands and should not be hidden by blur. A renderer can detect suspect pixels, rebase them and recompute only affected regions. Extreme crops may need multiple references or series approximations. A correct slow fallback matters more than a fast path that occasionally returns convincing but false geometry.
Sources and further reading
This article summarizes the following specialist sources in original wording. Accessed and editorially reviewed 12 August 2026.
- Perturbation Theory for the Mandelbrot SetFractal Forums
- Mandelbrot SetWolfram MathWorld

