Gunga P11
Source:
October 16, 2021
MOAA 2021Gunga
Problem Statement
Let be a rectangle with and . Let be the circle with diameter and be the circle with diameter . Suppose is a common internal tangent to and and that intersects and at and respectively. What is ?[asy]
size(10cm);
draw((0,0)--(26,0)--(26,10)--(0,10)--cycle);
draw((1,0)--(25,10));
draw(circle((0,5),5));
draw(circle((26,5),5));
dot((1,0));
dot((25,10));
label("",(1,0),SE);
label("",(25,10),NW);
label("", (0,0), SW);
label("", (0,10), NW);
label("", (26,10), NE);
label("", (26,0), SE);
dot((0,0));
dot((0,10));
dot((26,0));
dot((26,10));
[/asy]Proposed by Nathan Xiong