# Exact Mandelbrot
# 1 Claim
The Mandelbrot set cannot be calculated with exact rational arithmetic, because the precision required goes up by a factor of two each iteration, so by as few as iterations, the storage space of the computer has long been exhausted.
# 2 Proof
# 2.1 Real
Let where is odd and .
Induction step:
Let where is odd and .
Then in lowest terms because is odd and is even, so their sum is odd.
Base case:
It is given that , then .
The argument works the same way with multipliers replaced by (and other prime bases) and “odd” replaced by , “even” by .
For composite bases I think (but I’m not sure) that you need for each prime factor of .
The argument also works changing the power from to or any integer .
# 2.2 Complex
To be continued…
# 3 Alternatives
Continued fractions and continued logarithms allow exact computation with rational numbers with different space/time tradeoffs, by using (implicit) rational intervals that are computed as narrowly as needed to resolve inequalities (like ) to a definite answer.