GeometryDifficulty 7.0National olympiad, round 2Find the answer
In the figure on the right, O is the center of the circle, OK and OA are perpendicular to one another, M is the midpoint of OK, BN is parallel to OK, and ∠AMN=∠NMO. Determine the measure of ∠ABN 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 2r. Since O is the center of the circle, OK and OA are radii, so OK=OA=2r. Given that M is the midpoint of OK, we have OM=KM=r.
2. **Calculate AM:** Since OK and OA are perpendicular, △AOM is a right triangle with OM=r and OA=2r. Using the Pythagorean theorem: AM=OA2+OM2=(2r)2+r2=4r2+r2=5r2=r5
3. Apply the Angle Bisector Theorem: Given that ∠AMN=∠NMO, MN is the angle bisector of ∠AMO. By the Angle Bisector Theorem: NOAN=MOAM=5 Let AN=x and NO=y. Then: yx=5andx+y=2r Solving these equations: x=5yand5y+y=2r⟹y(5+1)=2r⟹y=5+12r x=5⋅5+12r=5+12r5
4. **Simplify AN and NO:** Rationalize the denominators: AN=5+12r5⋅5−15−1=5−12r5(5−1)=42r5(5−1)=2r(5−5) NO=5+12r⋅5−15−1=5−12r(5−1)=42r(5−1)=2r(5−1)
5. **Examine △BNO:** Since BN is parallel to OK, ∠BNO=∠OKA=90∘. Using the Pythagorean theorem in △BNO: BO=2r,NO=2r(5−1) BN=BO2−NO2=(2r)2−(2r(5−1))2=4r2−4r2(5−25+1)=4r2−4r2(6−25) =4r2−46r2−2r25=4r2−46r2−2r25=4r2−46r2−2r25=4r2−46r2−2r25
6. **Calculate ∠ABN:** Using trigonometric identities: tan∠ABN=6+255+251+55=5−255=525+105=5−25 Therefore, ∠ABN=36∘.
The final answer is 36∘.
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.