Anna Kareninested internally tangent circles
Source: 2017 AIME II #12
March 23, 2017
AMCAIMEAIME IIAIME I
Problem Statement
Circle has radius , and the point is a point on the circle. Circle has radius and is internally tangent to at point . Point lies on circle so that is located counterclockwise from on . Circle has radius and is internally tangent to at point . In this way a sequence of circles and a sequence of points on the circles are constructed, where circle has radius and is internally tangent to circle at point , and point lies on counterclockwise from point , as shown in the figure below. There is one point inside all of these circles. When , the distance from the center of to is , where and are relatively prime positive integers. Find .[asy]
size(6cm);
real r = 0.8;pair nthCircCent(int n){
pair ans = (0, 0);
for(int i = 1; i <= n; ++i)
ans += rotate(90 * i - 90) * (r^(i - 1) - r^i, 0);
return ans;
}void dNthCirc(int n){
draw(circle(nthCircCent(n), r^n));
}dNthCirc(0);
dNthCirc(1);
dNthCirc(2);
dNthCirc(3);dot("", (1, 0), dir(0));
dot("", nthCircCent(1) + (0, r), dir(135));
dot("", nthCircCent(2) + (-r^2, 0), dir(0));
[/asy]