[Math] Numbers of circles around a circle

circlesgeometry

"When you draw a circle in a plane of radius $1$ you can perfectly surround it with $6$ other circles of the same radius."

BUT when you draw a circle in a plane of radius $1$ and try to perfectly surround the central circle with $7$ circles you have to change the radius of the surround circles.

How can I find the radius of the surround circles if I want to use more that $6$ circles?

ex :
$7$ circles of radius $0.4$

$8$ circles of radius $0.2$

Best Answer

Imagine there are $n \geq 3$ circles surrounding your unit circle. Then the situation would look like:

alt text

Whence $\cos(x)=\frac{r}{r+1}$. The angle $x$ is half of the interior angle of the corresponding regular polygon, so $x=\frac{n-2}{2n} \cdot 180^\circ$. You can then solve for $r=\dfrac{\cos(x)}{1-\cos(x)}$.

For example

  • when $n=4$ we have $r=\dfrac{\cos(45^\circ)}{1-\cos(45^\circ)}=1+\sqrt{2}=2.41421\ldots$.
  • when $n=6$ we have $r=\dfrac{\cos(60^\circ)}{1-\cos(60^\circ)}=1$.
  • when $n=8$ we have $r=\dfrac{\cos(67.5^\circ)}{1-\cos(67.5^\circ)}=0.619914\ldots$.