# Julia Size
The central feature of a Julia set associated with a baby Mandelbrot set is a circle.
Let be the orbit of the origin.
Consider on the boundary of the circle.
Then .
Write the Taylor expansion about :
.
If is periodic with period , then and you can pick on the boundary of the circle such that .
This gives , that is,
# 1 C99 Code
#include <complex.h>
double _Complex m_julia_size(double _Complex c, int p)
{
double _Complex z = c;
double _Complex dz = 1;
for (int q = 1; q < p; ++q)
{
dz = 2 * z * dz;
z = z * z + c;
}
return 1 / dz;
}# 2 Examples
Circle: , : .
Airplane: , : .
Kokopelli: , : , .