12
Part of 2017 AIME Problems
Problems(2)
Wot n' Subset Formation
Source: 2017 AIME I #12
3/8/2017
Call a set product-free if there do not exist (not necessarily distinct) such that . For example, the empty set and the set are product-free, whereas the sets and are not product-free. Find the number of product-free subsets of the set .
2017 AIME IcombinatoricsSetsrecursionAIMEAIME IAMC
Anna Kareninested internally tangent circles
Source: 2017 AIME II #12
3/23/2017
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]
AMCAIMEAIME IIAIME I