The Mandelbrot Explorer is a Windows Forms application developed as an assignment at Utrecht University. This project brings the mesmerizing Mandelbrot set to life with an interactive and visually stunning interface. Check out the Mandelbrot Explorer below, where zooming and colorful rendering reveal the fractal’s hidden depths.

At its core, the Mandelbrot set is driven by a recursive function: f(a, b) = (a*a - b*b + x, 2*a*b + y). For each point (x, y) in the complex plane, we start at (0, 0) and iterate this function. The "Mandel number" is the count of iterations until the point’s distance from (0, 0) exceeds 2—or capped at 100, hinting at infinity. This simple rule paints a fractal of astonishing complexity, especially when zoomed between -2.5 and 2.5 for x and y.