Maths Olympiad Prep

Library / /303 of 520

Geometry Difficulty 7.0 National olympiad, round 2 Find the answer

In the figure on the right, OO is the center of the circle, OKOK and OAOA are perpendicular to one another, MM is the midpoint of OKOK, BNBN is parallel to OKOK, and AMN=NMO\angle AMN=\angle NMO. Determine the measure of ABN\angle A B N in degrees.

Figure (Asymptote source)
defaultpen(linewidth(0.7)+fontsize(10));
pair O=origin, A=dir(90), K=dir(180), M=0.5*dir(180), N=2/5*dir(90), B=dir(degrees((2/5, sqrt(21/25)))+90);
draw(K--O--A--M--N--B--A^^Circle(origin,1));
label("$A$", A, dir(O--A));
label("$K$", K, dir(O--K));
label("$B$", B, dir(O--B));
label("$N$", N, E);
label("$M$", M, S);
label("$O$", O, SE);

A number or a short expression. Spacing and $ signs are ignored.

Solution

1. Define the radius and key segments:
Let the radius of the circle be 2r2r. Since OO is the center of the circle, OKOK and OAOA are radii, so OK=OA=2rOK = OA = 2r. Given that MM is the midpoint of OKOK, we have OM=KM=rOM = KM = r.

2. **Calculate AMAM:**
Since OKOK and OAOA are perpendicular, AOM\triangle AOM is a right triangle with OM=rOM = r and OA=2rOA = 2r. Using the Pythagorean theorem:
AM=OA2+OM2=(2r)2+r2=4r2+r2=5r2=r5 AM = \sqrt{OA^2 + OM^2} = \sqrt{(2r)^2 + r^2} = \sqrt{4r^2 + r^2} = \sqrt{5r^2} = r\sqrt{5}

3. Apply the Angle Bisector Theorem:
Given that AMN=NMO\angle AMN = \angle NMO, MNMN is the angle bisector of AMO\angle AMO. By the Angle Bisector Theorem:
ANNO=AMMO=5 \frac{AN}{NO} = \frac{AM}{MO} = \sqrt{5}
Let AN=xAN = x and NO=yNO = y. Then:
xy=5andx+y=2r \frac{x}{y} = \sqrt{5} \quad \text{and} \quad x + y = 2r
Solving these equations:
x=5yand5y+y=2r    y(5+1)=2r    y=2r5+1 x = \sqrt{5}y \quad \text{and} \quad \sqrt{5}y + y = 2r \implies y(\sqrt{5} + 1) = 2r \implies y = \frac{2r}{\sqrt{5} + 1}
x=52r5+1=2r55+1 x = \sqrt{5} \cdot \frac{2r}{\sqrt{5} + 1} = \frac{2r\sqrt{5}}{\sqrt{5} + 1}

4. **Simplify ANAN and NONO:**
Rationalize the denominators:
AN=2r55+15151=2r5(51)51=2r5(51)4=r(55)2 AN = \frac{2r\sqrt{5}}{\sqrt{5} + 1} \cdot \frac{\sqrt{5} - 1}{\sqrt{5} - 1} = \frac{2r\sqrt{5}(\sqrt{5} - 1)}{5 - 1} = \frac{2r\sqrt{5}(\sqrt{5} - 1)}{4} = \frac{r(5 - \sqrt{5})}{2}
NO=2r5+15151=2r(51)51=2r(51)4=r(51)2 NO = \frac{2r}{\sqrt{5} + 1} \cdot \frac{\sqrt{5} - 1}{\sqrt{5} - 1} = \frac{2r(\sqrt{5} - 1)}{5 - 1} = \frac{2r(\sqrt{5} - 1)}{4} = \frac{r(\sqrt{5} - 1)}{2}

5. **Examine BNO\triangle BNO:**
Since BNBN is parallel to OKOK, BNO=OKA=90\angle BNO = \angle OKA = 90^\circ. Using the Pythagorean theorem in BNO\triangle BNO:
BO=2r,NO=r(51)2 BO = 2r, \quad NO = \frac{r(\sqrt{5} - 1)}{2}
BN=BO2NO2=(2r)2(r(51)2)2=4r2r2(525+1)4=4r2r2(625)4 BN = \sqrt{BO^2 - NO^2} = \sqrt{(2r)^2 - \left(\frac{r(\sqrt{5} - 1)}{2}\right)^2} = \sqrt{4r^2 - \frac{r^2(5 - 2\sqrt{5} + 1)}{4}} = \sqrt{4r^2 - \frac{r^2(6 - 2\sqrt{5})}{4}}
=4r26r22r254=4r26r22r254=4r26r22r254=4r26r22r254 = \sqrt{4r^2 - \frac{6r^2 - 2r^2\sqrt{5}}{4}} = \sqrt{4r^2 - \frac{6r^2 - 2r^2\sqrt{5}}{4}} = \sqrt{4r^2 - \frac{6r^2 - 2r^2\sqrt{5}}{4}} = \sqrt{4r^2 - \frac{6r^2 - 2r^2\sqrt{5}}{4}}

6. **Calculate ABN\angle ABN:**
Using trigonometric identities:
tanABN=51+55+256+25=5525=25+1055=525 \tan{\angle ABN} = \frac{\frac{\sqrt{5}}{1 + \sqrt{5}}}{\sqrt{\frac{5 + 2\sqrt{5}}{6 + 2\sqrt{5}}}} = \frac{\sqrt{5}}{\sqrt{5 - 2\sqrt{5}}} = \sqrt{\frac{25 + 10\sqrt{5}}{5}} = \sqrt{5 - 2\sqrt{5}}
Therefore, ABN=36\angle ABN = 36^\circ.

The final answer is 36\boxed{36^\circ}.

Want a route through all this instead of an archive? The track puts 2,000 problems in a working order, from AMC 10 level to the IMO shortlist.

Source: NuminaMath-1.5, licensed Apache-2.0. Statement and solution reproduced as published; topic and difficulty added by this site.