Maths Olympiad Prep

Library / /91 of 115

Geometry Difficulty 7.6 National olympiad, round 2 Find the answer

Let n5n \geq 5 be an integer. Find the largest integer kk (as a function of nn ) such that there exists a convex nn -gon A1A2AnA_{1}A_{2}\dots A_{n} for which exactly kk of the quadrilaterals AiAi+1Ai+2Ai+3A_{i}A_{i+1}A_{i+2}A_{i+3} have an inscribed circle. (Here An+j=AjA_{n+j} = A_{j} .)

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

Solution

Lemma: If quadrilaterals AiAi+1Ai+2Ai+3A_iA_{i+1}A_{i+2}A_{i+3} and Ai+2Ai+3Ai+4Ai+5A_{i+2}A_{i+3}A_{i+4}A_{i+5} in an equiangular nn -gon are tangential, and AiAi+3A_iA_{i+3} is the longest side quadrilateral AiAi+1Ai+2Ai+3A_iA_{i+1}A_{i+2}A_{i+3} for all ii , then quadrilateral Ai+1Ai+2Ai+3Ai+4A_{i+1}A_{i+2}A_{i+3}A_{i+4} is not tangential.
Proof:

Figure (Asymptote source)
import geometry; size(10cm); pair A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U; A = (-1,0); B = (1,0); draw(Circle(A,1)^^Circle(B,1)); C = (sqrt(2)/2-1,sqrt(2)/2); D = (-sqrt(3)/2 - 1, .5); E = (-sqrt(3)/2 - 1, -.5); F = (-1,-1); G = (1,-1); H = (sqrt(3)/2 + 1, -.5); I = (sqrt(3)/2 + 1, .5); J = (1-sqrt(2)/2, sqrt(2)/2); K = (-1-2/sqrt(3), 0); L = extension(K,E,F,G); M = (1+2/sqrt(3), 0); N = extension(M,H,F,G); O = extension(K,D,C,N); P = extension(M,I,L,J); Q = midpoint(F--G); R = midpoint(K--O); S = midpoint(P--M); T = midpoint(O--C); U = midpoint(J--P); draw(O--K--L--N--M--P--L^^K--M^^O--N); label("$A_i$", O, NW); label("$A_{i+1}$", K, W); label("$A_{i+2}$", L, SW); label("$A_{i+3}$", N, SE); label("$A_{i+4}$", M, dir(0)); label("$A_{i+5}$", P, NE); label("$j$", R, W); label("$u$", E, SW); label("$y$", Q, S); label("$n$", H, SE); label("$h$", S, NE); label("$j + y - u$", T, NE); label("$h + y - n$", U, SW);

If quadrilaterals AiAi+1Ai+2Ai+3A_iA_{i+1}A_{i+2}A_{i+3} and Ai+2Ai+3Ai+4Ai+5A_{i+2}A_{i+3}A_{i+4}A_{i+5} are tangential, then AiAi+3A_iA_{i+3} must have side length of j+yuj+y-u , and Ai+2Ai+5A_{i+2}A_{i+5} must have side length of h+ynh + y - n (One can see this from what is known as walk-around). Suppose quadrilateral Ai+1Ai+2Ai+3Ai+4A_{i+1}A_{i+2}A_{i+3}A_{i+4} is tangential. Then, again, we see that Ai+1Ai+4A_{i+1}A_{i+4} must have side length u+nyu + n - y . We assumed by lemma that AiAi+3>AiAi+1A_iA_{i+3} > A_{i}A_{i+1} for all ii , so we have AiAi+3>jA_iA_{i+3} > j , Ai+1Ai+4>yA_{i+1}A_{i+4} > y , and Ai+2Ai+5>hA_{i+2}A_{i+5} > h . If we add up the side lengths AiAi+3+Ai+1Ai+4+Ai+2Ai+5A_iA_{i+3} + A_{i+1}A_{i+4} + A_{i+2}A_{i+5} , we get: AiAi+3+Ai+1Ai+4+Ai+2Ai+5=j+yu+h+yn+u+nyA_iA_{i+3} + A_{i+1}A_{i+4} + A_{i+2}A_{i+5} = j + y - u + h + y - n + u + n - y AiAi+3+Ai+1Ai+4+Ai+2Ai+5=j+h+yA_iA_{i+3} + A_{i+1}A_{i+4} + A_{i+2}A_{i+5} = j + h + y
However, by the lemma, we assumed that AiAi+3>jA_iA_{i+3} > j , Ai+1Ai+4>yA_{i+1}A_{i+4} > y , and Ai+2Ai+5>hA_{i+2}A_{i+5} > h . Adding these up, we get: AiAi+3+Ai+1Ai+4+Ai+2Ai+5>j+h+y,A_iA_{i+3} + A_{i+1}A_{i+4} + A_{i+2}A_{i+5} > j + h + y,
which is a contradiction. Thus, quadrilateral Ai+1Ai+2Ai+3Ai+4A_{i+1}A_{i+2}A_{i+3}A_{i+4} is not tangential, proving the lemma.

By lemma, the maximum number of quadrilaterals in a nn -gon occurs when the tangential quadrilaterals alternate, giving us k=n2k = \lfloor \frac{n}{2} \rfloor .
Note that one can find the ratio of side of an equiangular nn -gon in order for alternating quadrilaterals to be tangential.
Figure (Asymptote source)
import geometry; size(10cm); pair A, B, C, D, E, F; A = (0,0); B = (1,0); C = (1+(1-cos(2pi/9))*cos(2pi/9), (1-cos(2pi/9))*sin(2pi/9)); D = (-(1-cos(2pi/9))*cos(2pi/9), (1-cos(2pi/9))*sin(2pi/9)); E = midpoint(D--A); F = midpoint(A--B); draw(A--B--C--D--A); label("$A_i$", D, NW); label("$A_{i+1}$", A, SW); label("$A_{i+2}$", B, SE); label("$A_{i+3}$", C, NE); label("$x$", E, W); label("$y$", F, S);

Since exterior angles of a equiangular nn -gon have degree measure 2pin\frac{2pi}{n} , one can write the equation:
2x=y+y+2xcos2pin2x = y + y + 2x \cos \frac{2pi}{n} y=x(1cos2pin)y = x \left( 1- \cos \frac{2pi}{n} \right) yx=11cos2pin\frac{y}{x} = \frac{1}{1- \cos \frac{2pi}{n}}
Thus, we can find the ratio of sides of an equiangular nn -gon which fits the maximum to be 1 :1cos2πn1 : 1- \cos \frac{2\pi}{n} . Note that if nn is even, we can easily alternate them, but if nn is odd, we must have two adjacent sides be the same length, and that length must be the larger side in the ratio of adjacent sides. The proof is left as an exercise for the reader.

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: Omni-MATH, licensed Apache-2.0. Statement and solution reproduced as published; topic and difficulty added by this site.