Angles in Concentric Circle
Source: 2024 AMC 8 #18
October 11, 2024
2024 AMC 8AMC 8AMCgeometry
Problem Statement
Three concentric circles centered at have radii of , , and . Points and lie on the largest circle. The region between the two smaller circles is shaded, as is the portion of the region between the two larger circles bounded by central angle , as shown in the figure below. Suppose the shaded and unshaded regions are equal in area. What is the measure of in degrees?[asy]
size(100);
import graph;draw(circle((0,0),3));
real radius = 3;
real angleStart = -54; // starting angle of the sector
real angleEnd = 54; // ending angle of the sector
label("",(0,0),W);
pair O = (0, 0);
filldraw(arc(O, radius, angleStart, angleEnd)--O--cycle, lightgray);
filldraw(circle((0,0),2),lightgray);
filldraw(circle((0,0),1),white);
draw((1.763,2.427)--(0,0)--(1.763,-2.427));
label("",(1.763,2.427),NE);
label("",(1.763,-2.427),SE);
[/asy]