This is another type of magnet fractal. The iteration is defined by:

z_{n+1} = z_n - \frac{(z_n^2 - 1)^2}{4z_n^3 + 4z_n^2c}
    

This variation produces different but equally complex and beautiful patterns compared to Type 1. In this implementation, the point $c$ in the formula is the same as the initial point $z_0$, which is the coordinate of the point on the complex plane being tested.

This type of fractal, where the parameter $c$ is the same as the starting point $z_0$, is sometimes called a "Multibrot" type set.

Parameters

GUI Parameters

Complex Parameters

This fractal does not have any complex parameters that can be controlled directly as control points. The complex number $c$ corresponds to each point on the plane being tested.