Is there a way to test if a high-order polynomials has any roots within a radius r of a specified point?
I need this so that I can find all the complex roots of the following system for arbitrary integers {m,n}.
$$z_0 \equiv c$$ $$z_n \equiv z_{n-1}^2 + c $$ $$z_m - z_n = 0$$ $$|c-i|<r$$
I can generate a large polynomial like $z_{20}-z_8$, calculate a root near i, divide it out of the polynomial, repeat... But then I need to know when there are no more roots in that radius so I can stop looking. Does such a test exist? Efficient root-finding is important because the polynomial orders scale as $2^n$.
As a side note, these points are called Misiurewicz points