Third circle radius
Source:
December 4, 2005
Pythagorean Theoremgeometry
Problem Statement
A circle centered at with a radius of 1 and a circle centered at with a radius of 4 are externally tangent. A third circle is tangent to the first two and to one of their common external tangents as shown. The radius of the third circle is
[asy]
size(220);
real r1 = 1;
real r2 = 3;
real r = (r1*r2)/((sqrt(r1)+sqrt(r2))**2);
pair A=(0,r1), B=(2*sqrt(r1*r2),r2);
dot(A); dot(B);
draw( circle(A,r1) );
draw( circle(B,r2) );
draw( (-1.5,0)--(7.5,0) );
draw( A -- (A+dir(210)*r1) );
label("", A -- (A+dir(210)*r1), N );
draw( B -- (B+r2*dir(330)) );
label("", B -- (B+r2*dir(330)), N );
label("",A,dir(330));
label("",B, dir(140));draw( circle( (2*sqrt(r1*r),r), r ));
[/asy]