Purple Comet 2009 HS Problem 24
Source:
April 21, 2012
geometry3D geometrysphere
Problem Statement
A right circular cone pointing downward forms an angle of at its vertex. Sphere with radius is set into the cone so that it is tangent to the side of the cone. Three congruent spheres are placed in the cone on top of S so that they are all tangent to each other, to sphere , and to the side of the cone. The radius of these congruent spheres can be written as where , , and are positive integers such that and are relatively prime. Find .[asy]
size(150);
real t=0.12;
void ball(pair x, real r, real h, bool ww=true)
{
pair xx=yscale(t)*x+(0,h);
path P=circle(xx,r);
unfill(P);
draw(P);
if(ww) draw(ellipse(xx-(0,r/2),0.85*r,t*r));
}
pair X=(0,0);
real H=17, h=5, R=h/2;
draw(H*dir(120)--(0,0)--H*dir(60));
draw(ellipse((0,0.87*H),H/2,t*H/2));
pair Y=(R,h+2*R),C=(0,h);
real r;
for(int k=0;k<20;++k)
{
r=-(dir(30)*Y).x;
Y-=(sqrt(3)/2*Y.x-r,abs(Y-C)-R-r)/3;
}
ball(Y.x*dir(90),r,Y.y,false);
ball(X,R,h);
ball(Y.x*dir(-30),r,Y.y);
ball(Y.x*dir(210),r,Y.y);[/asy]