Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

-2 belongs to the Mandelbrot set #3

Open
rs1729 opened this issue Mar 15, 2024 · 0 comments
Open

-2 belongs to the Mandelbrot set #3

rs1729 opened this issue Mar 15, 2024 · 0 comments

Comments

@rs1729
Copy link

rs1729 commented Mar 15, 2024

Thanks for the nice lectures!

Your escape check in
VGA_Graphics/Mandelbrot_Set/mandelbrot_fixvfloat.c
should be |z|^2 > 4, and not


if ((Zre_sq + Zim_sq) >= FOURfix28) break ;

The parameter c=-2 belongs to the Mandelbrot set. For this parameter the critical point is pre-periodic (0 -> -2 -> 2 -> 2 -> ...), so it is bounded and the corresponding Julia set is connected (it is the interval [-2,2] on the real axis).
If the orbit gets outside of radius 2, you can show that it escapes to infinity, i.e. that the parameter is not in the Mandelbrot set.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant