[Math] what is $c$ in Mandelbrot set

fractals

The Mandelbrot Set is an extremly complex object that shows new structure at all magnifications. It is the set of complex numbers $c$ for which the iteration indicated nearby remains bounded.
$$z_0=c$$
$$z_{n+1}=z_n^2+c$$

  • what is $c$ in Mandelbrot set?
  • isn't $c$ complex number

Best Answer

$c$ in the above formulas is the complex number for which you want to determine if it is or isn't in the Mandelbrot set. In images of the Mandelbrot set, the real part of $c$ is typically mapped to the $x$ axis and the imaginary part to the $y$ axis. In other words, each point of the image corresponds to a different value of $c$. Most pictures of the Mandelbrot set additionally use colours to indicate how quickly the iteration diverges for points not in the Mandelbrot set. That is, the colourful images you usually see for the Mandelbrot set are in some sense images for the complement of the Mandelbrot set: That's where all the structure lies. The Mandelbrot set itself, on the other hand, usually is shown in an uniform colour (most often black, sometimes white, rarely other colours).

Related Question