I’m trying to understand why we’re iterating through Mandelbrot points until |z| < 4.
why 4? is there somekind of a law? or is it based on statistical measurements?
thanks, igal
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Consider the Mandelbrot set with along y=0, which would would be
z(i) = z(i-1)^2 + c.Consider when
c = (x=-2, y=0)This example (
x=-2,y=0) is the point with the greatest magnitude that will never blow up. Thus whenz^2 > 4, there is no point in further iteration since you already know it will blow up.All other points where the magnitude of the point >= 2 will blow up.