Circle Inscribed in Semicircle
Source: 2017 AMC 12A #16
February 8, 2017
2017 AMC 12AAMCAMC 12AMC 12 A
Problem Statement
In the figure below, semicircles with centers at and and with radii and , respectively, are drawn in the interior of, and sharing bases with, a semicircle with diameter . The two smaller semicircles are externally tangent to each other and internally tangent to the largest semicircle. A circle centered at is drawn externally tangent to the two smaller semicircles and internally tangent to the largest semicircle. What is the radius of the circle centered at ?[asy]
size(8cm);
draw(arc((0,0),3,0,180));
draw(arc((2,0),1,0,180));
draw(arc((-1,0),2,0,180));
draw((-3,0)--(3,0));
pair P = (-1,0)+(2+6/7)*dir(36.86989);
draw(circle(P,6/7));
dot((-1,0)); dot((2,0)); dot((-3,0)); dot((3,0)); dot(P);
label("",(-3,0),W);
label("",(-1,0),NW);
label("",(2,0),NE);
label("",(3,0),E);
label("",P,NW);
[/asy]