problem_id
int64
1
978
question
stringlengths
86
2.11k
source
stringlengths
19
76
solution
stringlengths
94
14.7k
asymptote_code
stringlengths
44
17.8k
solution_image_url
stringclasses
16 values
1
Let $AXYZB$ be a convex pentagon inscribed in a semicircle of diameter $AB$. Denote by $P, Q, R, S$ the feet of the perpendiculars from $Y$ onto lines $AX, BX, AZ, BZ$, respectively. Prove that the acute angle formed by lines $PQ$ and $RS$ is half the size of $\angle XOZ$, where $O$ is the midpoint of segment $AB$.
2010 USAJMO Problem 3
Let $\alpha = \angle BAZ$, $\beta = \angle ABX$. Since $XY$ is a chord of the circle with diameter $AB$, $\angle XAY = \angle XBY = \gamma$. From the chord $YZ$, we conclude $\angle YAZ = \angle YBZ = \delta$. Triangles $BQY$ and $APY$ are both right-triangles, and share the angle $\gamma$, therefore they are similar, and so the ratio $PY : YQ = AY : YB$. Now by Thales' theorem the angles $\angle AXB = \angle AYB = \angle AZB$ are all right-angles. Also, $\angle PYQ$, being the fourth angle in a quadrilateral with 3 right-angles is again a right-angle. Therefore $\triangle PYQ \sim \triangle AYB$ and $\angle YQP = \angle YBA = \gamma + \beta$. Similarly, $RY : YS = AY : YB$, and so $\angle YRS = \angle YAB = \alpha + \delta$. Now $RY$ is perpendicular to $AZ$ so the direction $RY$ is $\alpha$ counterclockwise from the vertical, and since $\angle YRS = \alpha + \delta$ we see that $SR$ is $\delta$ clockwise from the vertical. (Draw an actual vertical line segment if necessary.) Similarly, $QY$ is perpendicular to $BX$ so the direction $QY$ is $\beta$ clockwise from the vertical, and since $\angle YQP$ is $\gamma + \beta$ we see that $QY$ is $\gamma$ counterclockwise from the vertical. Therefore the lines $PQ$ and $RS$ intersect at an angle $\chi = \gamma + \delta$. Now by the central angle theorem $2\gamma = \angle XOY$ and $2\delta = \angle YOZ$, and so $2(\gamma + \delta) = \angle XOZ$, and we are done. Note that $RTQY$ is a quadrilateral whose angles sum to 360°; can you find a faster approach using this fact? Footnote We can prove a bit more. Namely, the extensions of the segments $RS$ and $PQ$ meet at a point on the diameter $AB$ that is vertically below the point $Y$. Since $YR = AY \sin(\delta)$ and is inclined $\alpha$ counterclockwise from the vertical, the point $S$ is $AY \sin(\delta) \sin(\alpha)$ horizontally to the right of $Y$. Now $AS = AY \cos(\delta)$, so $S$ is $AS \sin(\alpha) = AY \cos(\delta)\sin(\alpha)$ vertically above the diameter $AB$. Also, the segment $SR$ is inclined $\delta$ clockwise from the vertical, so if we extend it down from $S$ towards the diameter $AB$ it will meet the diameter at a point which is $AY \cos(\delta)\sin(\alpha)\tan(\delta) = AY \sin(\delta)\sin(\alpha)$ horizontally to the left of $S$. This places the intersection point of $RS$ and $AB$ vertically below $Y$. Similarly, and by symmetry the intersection point of $PQ$ and $AB$ is directly below $Y$ on $AB$, so the lines through $PQ$ and $RS$ meet at a point $T$ on the diameter that is vertically below $Y$. Footnote to the Footnote The Footnote's claim is more easily proved as follows. Note that because $\angle{QPY}$ and $\angle{YAB}$ are both complementary to $\beta + \gamma$, they must be equal. Now, let $PQ$ intersect diameter $AB$ at $T'$. Then $PYT'A$ is cyclic and so $\angle{YT'A} = 180^\circ - \angle{APY} = 90^\circ$. Hence $T'YSB$ is cyclic as well, and so we deduce that $\angle{YST'} = \angle{YBT'} = 90^\circ - \alpha - \delta = \angle{YSR}.$ Hence $S, R, T'$ are collinear and so $T = T'$. This proves the Footnote. Footnote to the Footnote to the Footnote The Footnote's claim can be proved even more easily as follows. Drop an altitude from $Y$ to $AB$ at point $T$. Notice that $P, Q, T$ are collinear because they form the Simson line of $\triangle AXB$ from $Y$. Also notice that $P, Q, T$ are collinear because they form the Simson line of $\triangle AZB$ from $Y$. Since $T$ is at the diameter $AB$, lines $PQ$ and $SR$ must intersect at the diameter. Footnote to the Fourth Power There is another, simpler solution using Simson lines. Can you find it?
import olympiad; // Scale unitsize(1inch); real r = 1.75; // Semi-circle: centre O, radius r, diameter A--B. pair O = (0,0); dot(O); label("$O$", O, plain.S); pair A = r * plain.W; dot(A); label("$A$", A, unit(A)); pair B = r * plain.E; dot(B); label("$B$", B, unit(B)); draw(arc(O, r, 0, 180)--cycle); // points X, Y, Z real alpha = 22.5; real beta = 15; real delta = 30; pair X = r * dir(180 - 2*beta); dot(X); label("$X$", X, unit(X)); pair Y = r * dir(2*(alpha + delta)); dot(Y); label("$Y$", Y, unit(Y)); pair Z = r * dir(2*alpha); dot(Z); label("$Z$", Z, unit(Z)); // Feet of perpendiculars from Y pair P = foot(Y, A, X); dot(P); label("$P$", P, unit(P-Y)); dot(P); pair Q = foot(Y, B, X); dot(P); label("$Q$", Q, unit(A-Q)); dot(Q); pair R = foot(Y, B, Z); dot(R); label("$S$", R, unit(R-Y)); dot(R); pair S = foot(Y, A, Z); dot(S); label("$R$", S, unit(B-S)); dot(S); pair T = foot(Y, A, B); dot(T); label("$T$", T, unit(T-Y)); dot(T); // Segments draw(B--X); draw(B--Y); draw(B--R); draw(A--Z); draw(A--Y); draw(A--P); draw(Y--P); draw(Y--Q); draw(Y--R); draw(Y--S); draw(R--T); draw(P--T); // Right angles draw(rightanglemark(A, X, B, 3)); draw(rightanglemark(A, Y, B, 3)); draw(rightanglemark(A, Z, B, 3)); draw(rightanglemark(A, P, Y, 3)); draw(rightanglemark(Y, R, B, 3)); draw(rightanglemark(Y, S, A, 3)); draw(rightanglemark(B, Q, Y, 3)); // Acute angles import markers; void langle(pair A, pair B, pair C, string l="", real r=40, int n=1, int nm = 0) { string sl = "$\scriptstyle{" + l + "}$"; marker m = (nm > 0) ? marker(markinterval(stickframe(n=nm, 2mm), true)) : nomarker; markangle(Label(sl), radius=r, n=n, A, B, C, m); } langle(B, A, Z, "\alpha" ); langle(X, B, A, "\beta", n=2); langle(Y, A, X, "\gamma", nm=1); langle(Y, B, X, "\gamma", nm=1); langle(Z, A, Y, "\delta", nm=2); langle(Z, B, Y, "\delta", nm=2); langle(R, S, Y, "\alpha+\delta", r=23); langle(Y, Q, P, "\beta+\gamma", r=23); langle(R, T, P, "\chi", r=15);
[]
1
Let $AXYZB$ be a convex pentagon inscribed in a semicircle of diameter $AB$. Denote by $P, Q, R, S$ the feet of the perpendiculars from $Y$ onto lines $AX, BX, AZ, BZ$, respectively. Prove that the acute angle formed by lines $PQ$ and $RS$ is half the size of $\angle XOZ$, where $O$ is the midpoint of segment $AB$.
2010 USAJMO Problem 3
Let $T$ be the foot of the perpendicular from $Y$ to $\overline{AB}$, let $O$ be the center of the semi-circle. Since we have a semi-circle, if we were to reflect it over $\overline {AB}$, we would have a full circle, with $\triangle{AXB}$ and $\triangle{AZB}$ inscribed in it. Now, notice that $Y$ is a point on that full circle, so we can say that $T$ lies on the Simson Line $\overline{PQ}$ from $Y$ to $\triangle AXB$ and that it also lies on the Simson line $\overline {RS}$ from $Y$ to $\triangle AZB$. Thus, $T$ lies on two distinct lines in a plane, which means that $T=\overline{PQ}\cap\overline{RS}$. Therefore, it suffices to show that $\angle PTS=\tfrac{1}{2}\angle XOZ$. Since $m\angle YTA + m\angle YPA = 90^\circ + 90^\circ = 180^\circ$ and $m \angle YTB + m \angle YSB = 90^\circ + 90^\circ = 180^\circ$, we know that $TAPY$ and $TBSY$ are cyclic quadrilaterals. We use this fact to get \[\angle PTS=\angle PTY+\angle YTS=\angle PAY+\angle YBS=\angle XAY+\angle YBZ. \space \space (1)\] \\ Now note that $\angle XAY$ is the inscribed angle of minor arc $\overset{\huge\frown}{PY}$, and $\angle XOY$ is the central angle of minor arc $\overset{\huge\frown}{AB}$, so $\angle XAY = \frac{\overset{\huge\frown}{PY}}{2} = \frac{\angle XOY}{2}$. Similarly, $\angle YBZ = \frac{\overset{\huge\frown}{YZ}}{2}=\frac{\angle YOZ}{2}$. Thus we can say \[\angle XAY + \angle YBZ = \frac{\angle XOY}{2} + \frac{\angle YOZ}{2}=\frac{\angle XOY + \angle YOZ}{2} = \frac{\angle XOZ}{2}. \space \space (2)\] Combining statements $(1)$ and $(2)$, we can say that $\angle PTS = \frac{\angle XOZ}{2}$, as desired. $\square$ ~thinker123
currentpicture=new picture; size(12cm); pair O, A, B, X, Y, Z, P, Q, R, SS, T; O=(0, 0); A=(-1, 0); B=(1, 0); X=(Cos(144), Sin(144)); Y=(Cos(105), Sin(105)); Z=(Cos(27), Sin(27)); P=foot(Y, A, X); Q=foot(Y, B, X); R=foot(Y, A, Z); SS=foot(Y, B, Z); T=foot(Y, A, B); dot(O); dot(A); dot(B); dot(X); dot(Y); dot(Z); dot(P); dot(Q); dot(R); dot(SS); dot(T); draw(arc(O, 1, 0, 180)); draw(circumcircle(T, A, Y), dotted); draw(circumcircle(T, B, Y), dotted); draw(A -- B); draw(Z -- O -- X -- A -- Z -- B -- X); draw(A -- Y -- B); draw(P -- T -- SS); draw(P -- Y -- Q); draw(R -- Y -- SS); draw(X -- P); draw(Z -- SS); draw(Y -- T); draw(rightanglemark(Y, T, B, 1.25)); draw(rightanglemark(Y, P, A, 1.25)); draw(rightanglemark(Y, Q, X, 1.25)); draw(rightanglemark(Y, R, Z, 1.25)); draw(rightanglemark(Y, SS, B, 1.25)); draw(rightanglemark(A, X, B, 1.25)); draw(rightanglemark(A, Y, B, 1.25)); draw(rightanglemark(A, Z, B, 1.25)); label("$O$", O, S); label("$A$", A, SW); label("$B$", B, SE); label("$X$", X, (X-B)/length(X-B)); label("$Y$", Y, Y); label("$Z$", Z, (Z-A)/length(Z-A)); label("$P$", P, (P-T)/length(P-T)); label("$Q$", Q, SW); label("$R$", R, SE); label("$S$", SS, (SS-T)/length(SS-T)); label("$T$", T, S);
[]
2
Let $ABC$ be a triangle with $\angle A = 90^{\circ}$. Points $D$ and $E$ lie on sides $AC$ and $AB$, respectively, such that $\angle ABD = \angle DBC$ and $\angle ACE = \angle ECB$. Segments $BD$ and $CE$ meet at $I$. Determine whether or not it is possible for segments $AB, AC, BI, ID, CI, IE$ to all have integer lengths.
2010 USAJMO Problem 6
We know that angle $BIC = 135^{\circ}$, as the other two angles in triangle $BIC$ add to $45^{\circ}$. Assume that only $AB, AC, BI$, and $CI$ are integers. Using the Law of Cosines on triangle BIC, $BC^2 = BI^2 + CI^2 - 2BI\cdot CI \cdot \cos 135^{\circ}$. Observing that $BC^2 = AB^2 + AC^2$ is an integer and that $\cos 135^{\circ} = -\frac{\sqrt{2}}{2},$ we have \[BC^2 - BI^2 - CI^2 = BI\cdot CI\cdot \sqrt{2}\] and therefore, \[\sqrt{2} = \frac{BC^2 - BI^2 - CI^2}{BI\cdot CI}\] The LHS ($\sqrt{2}$) is irrational, while the RHS is the quotient of the division of two integers and thus is rational. Clearly, there is a contradiction. Therefore, it is impossible for $AB, AC, BI$, and $CI$ to all be integers, which invalidates the original claim that all six lengths are integers, and we are done.
import olympiad; // Scale unitsize(1inch); // Shape real h = 1.75; real w = 2.5; // Points void ldot(pair p, string l, pair dir=p) { dot(p); label(l, p, unit(dir)); } pair A = origin; ldot(A, "$A$", plain.SW); pair B = w * plain.E; ldot(B, "$B$", plain.SE); pair C = h * plain.N; ldot(C, "$C$", plain.NW); pair D = extension(B, bisectorpoint(C, B, A), A, C); ldot(D, "$D$", D-B); pair E = extension(C, bisectorpoint(A, C, B), A, B); ldot(E, "$E$", E-C); pair I = extension(B, D, C, E); ldot(I, "$I$", A-I); // Segments draw(A--B); draw(B--C); draw(C--A); draw(C--E); draw(B--D); // Angles import markers; draw(rightanglemark(B, A, C, 4)); markangle(Label("$\scriptstyle{\frac{\theta}{2}}$"), radius=40, I, B, E); markangle(Label("$\scriptstyle{\frac{\theta}{2}}$"), radius=40, C, B, I); markangle(Label("$\scriptstyle{\frac{\pi}{4} - \frac{\theta}{2}}$"), radius=40, I, C, B); markangle(Label("$\scriptstyle{\frac{\pi}{4} - \frac{\theta}{2}}$"), radius=40, D, C, I); markangle(Label("$\scriptstyle{\frac{3\pi}{4}}$"), radius=10, B, I, C);
[]
3
For a point $P = (a, a^2)$ in the coordinate plane, let $\ell(P)$ denote the line passing through $P$ with slope $2a$. Consider the set of triangles with vertices of the form $P_1 = (a_1, a_1^2)$, $P_2 = (a_2, a_2^2)$, $P_3 = (a_3, a_3^2)$, such that the intersections of the lines $\ell(P_1)$, $\ell(P_2)$, $\ell(P_3)$ form an equilateral triangle $\triangle$. Find the locus of the center of $\triangle$ as $P_1P_2P_3$ ranges over all such triangles.
2011 USAJMO Problem 3
Solution 1 Note that the lines $l(P_1), l(P_2), l(P_3)$ are \[y=2a_1x-a_1^2, y=2a_2x-a_2^2, y=2a_3x-a_3^2,\] respectively. It is easy to deduce that the three points of intersection are \[\left(\frac{a_1+a_2}{2},a_1a_2\right),\left(\frac{a_2+a_3}{2},a_2a_3\right), \left(\frac{a_3+a_1}{2},a_3a_1\right).\] The slopes of each side of this equilateral triangle are \[2a_1,2a_2,2a_3,\] and we want to find the locus of \[\left(\frac{a_1+a_2+a_3}{3},\frac{a_1a_2+a_2a_3+a_3a_1}{3}\right).\] Define the three complex numbers $w_n = 1+2a_ni$ for $n=1,2,3$. Then note that the slope - that is, the imaginary part divided by the real part - of all $w_n^3$ is constant, say it is $k$. Then for $n=1,2,3$, \begin{align*} \frac{\Im(w_n^3)}{\Re(w_n^3)} &= \frac{\Im((1+2a_ni)^3)}{\Re((1+2a_ni)^3)}\\ &= \frac{\Im(1+6a_ni-12a_n^2-8a_n^3i)}{\Re(1+6a_ni-12a_n^2-8a_n^3i)}\\ &= \frac{6a_n-8a_n^3}{1-12a_n^2}\\ &= k.\\ \end{align*} Rearranging, we get that\[8a_n^3 -12ka_n^2-6a_n+k=0,\]or\[a_n^3-\frac{3ka_n^2}2-\frac{3a_n}4+\frac k8=0.\]Note that this is a cubic, and the roots are $a_1,a_2$ and $a_3$ which are all distinct, and so there are no other roots. Using Vieta's, we get that \[a_1+a_2+a_3=\frac{3k}2,\]and\[a_1a_2+a_2a_3+a_3a_1=-\frac34.\] Obviously all values of $k$ are possible, and so our answer is the line \[\boxed{y=-\frac{1}{4}.}\] $\blacksquare$ ~ cocohearts Solution 2 Note that all the points $P=(a,a^2)$ belong to the parabola $y=x^2$ which we will denote $p$. This parabola has a focus $F=\left(0,\frac{1}{4}\right)$ and directrix $y=-\frac{1}{4}$ which we will denote $d$. We will prove that the desired locus is $d$. First note that for any point $P$ on $p$, the line $\ell(P)$ is the tangent line to $p$ at $P$. This is because $\ell(P)$ contains $P$ and because $[\frac{d}{dx}] x^2=2x$. If you don't like calculus, you can also verify that $\ell(P)$ has equation $y=2a(x-a)+a^2$ and does not intersect $y=x^2$ at any point besides $P$. Now for any point $P$ on $p$ let $P'$ be the foot of the perpendicular from $P$ onto $d$. Then by the definition of parabolas, $PP'=PF$. Let $q$ be the perpendicular bisector of $\overline{P'F}$. Since $PP'=PF$, $q$ passes through $P$. Suppose $K$ is any other point on $q$ and let $K'$ be the foot of the perpendicular from $K$ to $d$. Then in right $\Delta KK'P'$, $KK'$ is a leg and so $KK'<KP'=KF$. Therefore $K$ cannot be on $p$. This implies that $q$ is exactly the tangent line to $p$ at $P$, that is $q=\ell(P)$. So we have proved Lemma 1: If $P$ is a point on $p$ then $\ell(P)$ is the perpendicular bisector of $\overline{P'F}$. We need another lemma before we proceed. Lemma 2: If $F$ is on the circumcircle of $\Delta XYZ$ with orthocenter $H$, then the reflections of $F$ across $\overleftrightarrow{XY}$, $\overleftrightarrow{XZ}$, and $\overleftrightarrow{YZ}$ are collinear with $H$. Proof of Lemma 2: Say the reflections of $F$ and $H$ across $\overleftrightarrow{YZ}$ are $C'$ and $J$, and the reflections of $F$ and $H$ across $\overleftrightarrow{XY}$ are $A'$ and $I$. Then we angle chase $\angle JYZ=\angle HYZ=\angle HXZ=\angle JXZ=m(JZ)/2$ where $m(JZ)$ is the measure of minor arc $JZ$ on the circumcircle of $\Delta XYZ$. This implies that $J$ is on the circumcircle of $\Delta XYZ$, and similarly $I$ is on the circumcircle of $\Delta XYZ$. Therefore $\angle C'HJ=\angle FJH=m(XF)/2$, and $\angle A'HX=\angle FIX=m(FX)/2$. So $\angle C'HJ = \angle A'HX$. Since $J$, $H$, and $X$ are collinear it follows that $C'$, $H$ and $A'$ are collinear. Similarly, the reflection of $F$ over $\overleftrightarrow{XZ}$ also lies on this line, and so the claim is proved. Now suppose $A$, $B$, and $C$ are three points of $p$ and let $\ell(A)\cap\ell(B)=X$, $\ell(A)\cap\ell(C)=Y$, and $\ell(B)\cap\ell(C)=Z$. Also let $A''$, $B''$, and $C''$ be the midpoints of $\overline{A'F}$, $\overline{B'F}$, and $\overline{C'F}$ respectively. Then since $\overleftrightarrow{A''B''}\parallel \overline{A'B'}=d$ and $\overleftrightarrow{B''C''}\parallel \overline{B'C'}=d$, it follows that $A''$, $B''$, and $C''$ are collinear. By Lemma 1, we know that $A''$, $B''$, and $C''$ are the feet of the altitudes from $F$ to $\overline{XY}$, $\overline{XZ}$, and $\overline{YZ}$. Therefore by the Simson Line Theorem, $F$ is on the circumcircle of $\Delta XYZ$. If $H$ is the orthocenter of $\Delta XYZ$, then by Lemma 2, it follows that $H$ is on $\overleftrightarrow{A'C'}=d$. It follows that the locus described in the problem is a subset of $d$. Since we claim that the locus described in the problem is $d$, we still need to show that for any choice of $H$ on $d$ there exists an equilateral triangle with center $H$ such that the lines containing the sides of the triangle are tangent to $p$. So suppose $H$ is any point on $d$ and let the circle centered at $H$ through $F$ be $O$. Then suppose $A$ is one of the intersections of $d$ with $O$. Let $\angle HFA=3\theta$, and construct the ray through $F$ on the same halfplane of $\overleftrightarrow{HF}$ as $A$ that makes an angle of $2\theta$ with $\overleftrightarrow{HF}$. Say this ray intersects $O$ in a point $B$ besides $F$, and let $q$ be the perpendicular bisector of $\overline{HB}$. Since $\angle HFB=2\theta$ and $\angle HFA=3\theta$, we have $\angle BFA=\theta$. By the inscribed angles theorem, it follows that $\angle AHB=2\theta$. Also since $HF$ and $HB$ are both radii, $\Delta HFB$ is isosceles and $\angle HBF=\angle HFB=2\theta$. Let $P_1'$ be the reflection of $F$ across $q$. Then $2\theta=\angle FBH=\angle C'HB$, and so $\angle C'HB=\angle AHB$. It follows that $P_1'$ is on $\overleftrightarrow{AH}=d$, which means $q$ is the perpendicular bisector of $\overline{FP_1'}$. Let $q$ intersect $O$ in points $Y$ and $Z$ and let $X$ be the point diametrically opposite to $B$ on $O$. Also let $\overline{HB}$ intersect $q$ at $M$. Then $HM=HB/2=HZ/2$. Therefore $\Delta HMZ$ is a $30-60-90$ right triangle and so $\angle ZHB=60^{\circ}$. So $\angle ZHY=120^{\circ}$ and by the inscribed angles theorem, $\angle ZXY=60^{\circ}$. Since $ZX=ZY$ it follows that $\Delta ZXY$ is and equilateral triangle with center $H$. By Lemma 2, it follows that the reflections of $F$ across $\overleftrightarrow{XY}$ and $\overleftrightarrow{XZ}$, call them $P_2'$ and $P_3'$, lie on $d$. Let the intersection of $\overleftrightarrow{YZ}$ and the perpendicular to $d$ through $P_1'$ be $P_1$, the intersection of $\overleftrightarrow{XY}$ and the perpendicular to $d$ through $P_2'$ be $P_2$, and the intersection of $\overleftrightarrow{XZ}$ and the perpendicular to $d$ through $P_3'$ be $P_3$. Then by the definitions of $P_1'$, $P_2'$, and $P_3'$ it follows that $FP_i=P_iP_i'$ for $i=1,2,3$ and so $P_1$, $P_2$, and $P_3$ are on $p$. By lemma 1, $\ell(P_1)=\overleftrightarrow{YZ}$, $\ell(P_2)=\overleftrightarrow{XY}$, and $\ell(P_3)=\overleftrightarrow{XZ}$. Therefore the intersections of $\ell(P_1)$, $\ell(P_2)$, and $\ell(P_3)$ form an equilateral triangle with center $H$, which finishes the proof. --Killbilledtoucan Solution 3 Note that the lines $l(P_1), l(P_2), l(P_3)$ are \[y=2a_1x-a_1^2, y=2a_2x-a_2^2, y=2a_3x-a_3^2,\] respectively. It is easy to deduce that the three points of intersection are \[\left(\frac{a_1+a_2}{2},a_1a_2\right),\left(\frac{a_2+a_3}{2},a_2a_3\right), \left(\frac{a_3+a_1}{2},a_3a_1\right).\] The slopes of each side of this equilateral triangle are \[2a_1,2a_2,2a_3,\] and we want to find the locus of \[\left(\frac{a_1+a_2+a_3}{3},\frac{a_1a_2+a_2a_3+a_3a_1}{3}\right).\] We know that \[2a_1=\tan(\theta), 2a_2=\tan (\theta + 120), 2a_3=\tan (\theta-120)\] for some $\theta.$ Therefore, we can use the tangent addition formula to deduce \[\frac{a_1+a_2+a_3}{3}=\frac{\tan(\theta)+\tan (\theta + 120)+\tan (\theta-120)}{6}=\frac{3\tan\theta-\tan^3\theta}{2-6\tan^2\theta}\] and \begin{align*} \frac{a_1a_2+a_2a_3+a_3a_1}{3}&=\frac{\tan\theta (\tan(\theta-120)+\tan(\theta+120))+\tan(\theta-120)\tan(\theta+120)}{12}\\ &=\frac{9\tan^2\theta-3}{12(1-3\tan^2\theta)}\\ &=-\frac{1}{4}.\end{align*} Now we show that $\frac{a_1+a_2+a_3}{3}$ can be any real number. Let's say \[\frac{3\tan\theta-\tan^3\theta}{2-6\tan^2\theta}=k\] for some real number $k.$ Multiplying both sides by $2-\tan^2\theta$ and rearranging yields a cubic in $\tan\theta.$ Clearly this cubic has at least one real solution. As $\tan \theta$ can take on any real number, all values of $k$ are possible, and our answer is the line \[\boxed{y=-\frac{1}{4}.}\] Of course, as the denominator could equal 0, we must check $\tan \theta=\pm \frac{1}{\sqrt{3}}.$ \[3\tan \theta-\tan^3\theta=k(2-6\tan^2\theta).\] The left side is nonzero, while the right side is zero, so these values of $\theta$ do not contribute to any values of $k.$ So, our answer remains the same. $\blacksquare$ ~ Benq Work in progress: Solution 4 (Clean algebra) It can be easily shown that the center of $\triangle$ has coordinates $\left(\frac{a_{1}+a_{2}+a_{3}}{3},\frac{a_{1}a_{2}+a_{2}a_{3}+a_{3}a_{1}}{3}\right)$. Without loss of generality, let $a_{1}>a_{2}>a_{3}$. Notice that $\ell(P_2)$ is a $60^{\circ}$ clockwise rotation of $\ell(P_1)$, $\ell(P_3)$ is a $60^{\circ}$ clockwise rotation of $\ell(P_2)$, and $\ell(P_1)$ is a $60^{\circ}$ clockwise rotation of $\ell(P_3)$. By definition, $\arctan(2a_{i})$ is the (directed) angle from the x-axis to $\ell(P_{i})$. Remember that the range of $\arctan(x)$ is $(-90^{\circ},90^{\circ})$. We have \begin{align*}\arctan(2a_{1})-\arctan(2a_{2})&=60^{\circ}\\\arctan(2a_{2})-\arctan(2a_{3})&=60^{\circ}\\\arctan(2a_{3})-\arctan(2a_{1})&=-120^{\circ}.\end{align*} Taking the tangent of both sides of each equation and rearranging, we get \begin{align*}2a_{1}-2a_{2}&=\sqrt{3}(1+4a_{1}a_{2})\\2a_{2}-2a_{3}&=\sqrt{3}(1+4a_{2}a_{3})\\2a_{3}-2a_{1}&=\sqrt{3}(1+4a_{3}a_{1}).\end{align*} We add these equations to get \[\sqrt{3}(3+4(a_{1}a_{2}+a_{2}a_{3}+a_{3}a_{1}))=0.\] We solve for $a_{1}a_{2}+a_{2}a_{3}+a_{3}a_{1}$ to get \[a_{1}a_{2}+a_{2}a_{3}+a_{3}a_{1}=-\frac{3}{4}.\] So, the y-coordinate of $\triangle$ is $-\frac{1}{4}$. We will prove that the x-coordinate of $\triangle$ can be any real number. If $2a_{1}$ tends to infinity, then $2a_{2}$ tends to $\frac{\sqrt{3}}{2}$ and $2a_{3}$ tends to $-\frac{\sqrt{3}}{2}$. So, $\frac{a_{1}+a_{2}+a_{3}}{3}$ can be arbitrarily large. Similarly, if we let $2a_{3}$ tend to negative infinity, then $2a_{1}$ tends to $\frac{\sqrt{3}}{2}$ and $2a_{2}$ tends to $-\frac{\sqrt{3}}{2}$. So, $\frac{a_{1}+a_{2}+a_{3}}{3}$ can be arbitrarily small. Since $\frac{a_{1}+a_{2}+a_{3}}{3}$ is continuous, it can take any real value. So, the locus is the line $y=-\frac{1}{4}$.
Label f; f.p=fontsize(6); xaxis(-2,2); yaxis(-2,2); real f(real x) { return x^2; } draw(graph(f,-sqrt(2),sqrt(2))); real f(real x) { return (2*sqrt(3)/3)*x-1/3; } draw(graph(f,-5*sqrt(3)/6,2)); real f(real x) { return (-sqrt(3)/9)*x-1/108; } draw(graph(f,-2,2)); real f(real x) { return (-5*sqrt(3)/3)*x-25/12; } draw(graph(f,-49*sqrt(3)/60,-sqrt(3)/60));
[]
4
Points $A$, $B$, $C$, $D$, $E$ lie on a circle $\omega$ and point $P$ lies outside the circle. The given points are such that (i) lines $PB$ and $PD$ are tangent to $\omega$, (ii) $P$, $A$, $C$ are collinear, and (iii) $\overline{DE} \parallel \overline{AC}$. Prove that $\overline{BE}$ bisects $\overline{AC}$.
2011 USAJMO Problem 5
This is the solution from EGMO Problem 1.43 page 242 Let $O$ be the center of the circle, and let $M$ be the midpoint of $AC$. Let $\theta$ denote the circle with diameter $OP$. Since $\angle OBP = \angle OMP = \angle ODP = 90^\circ$, $B$, $D$, and $M$ all lie on $\theta$. Since quadrilateral $BOMP$ is cyclic, $\angle BMP = \angle BOP$. Triangles $BOP$ and $DOP$ are congruent, so $\angle BOP = \angle BOD/2 = \angle BED$, so $\angle BMP = \angle BED$. Because $AC$ and $DE$ are parallel, $M$ lies on $BE$ (using Euclid's Parallel Postulate). -Evan Chen (vEnhance)
// Block 1 import graph; unitsize(2 cm); pair A, B, C, D, E, M, O, P; path circ; O = (0,0); circ = Circle(O,1); B = dir(100); D = dir(240); P = extension(B, B + rotate(90)*(B), D, D + rotate(90)*(D)); C = dir(-40); A = intersectionpoint((P--(P + 0.9*(C - P))),circ); E = intersectionpoint((D + 0.1*(C - A))--(D + C - A),circ); M = (A + C)/2; draw(circ); draw(P--B); draw(P--D); draw(P--C); draw(B--E); draw(D--E); draw(O--B); draw(O--D); draw(O--M); draw(O--P); draw(Circle((O + P)/2, abs(O - P)/2),dashed); draw(D--M); dot("$A$", A, NE); dot("$B$", B, NE); dot("$C$", C, SE); dot("$D$", D, S); dot("$E$", E, S); dot("$M$", M, NE); dot("$O$", O, dir(0)); dot("$P$", P, W); label("$\theta$", (O + P)/2 + abs(O - P)/2*dir(120), NW); // Block 2 import graph; unitsize(2 cm); pair A, B, C, D, E, M, O, P; path circ; O = (0,0); circ = Circle(O,1); B = dir(100); D = dir(240); P = extension(B, B + rotate(90)*(B), D, D + rotate(90)*(D)); C = dir(-40); A = intersectionpoint((P--(P + 0.9*(C - P))),circ); E = intersectionpoint((D + 0.1*(C - A))--(D + C - A),circ); M = (A + C)/2; draw(circ); draw(P--B); draw(P--D); draw(P--C); draw(B--E); draw(D--E); draw(O--B); draw(O--D); draw(O--M); draw(O--P); draw(Circle((O + P)/2, abs(O - P)/2),dashed); draw(D--M); dot("$A$", A, NE); dot("$B$", B, NE); dot("$C$", C, SE); dot("$D$", D, S); dot("$E$", E, S); dot("$M$", M, NE); dot("$O$", O, dir(0)); dot("$P$", P, W); label("$\theta$", (O + P)/2 + abs(O - P)/2*dir(120), NW);
[]
5
Given a triangle $ABC$, let $P$ and $Q$ be points on segments $\overline{AB}$ and $\overline{AC}$, respectively, such that $AP = AQ$. Let $S$ and $R$ be distinct points on segment $\overline{BC}$ such that $S$ lies between $B$ and $R$, $\angle{BPS} = \angle{PRS}$, and $\angle{CQR} = \angle{QSR}$. Prove that $P$, $Q$, $R$, $S$ are concyclic (in other words, these four points lie on a circle).
2012 USAJMO Problem 1
Since $\angle BPS = \angle PRS$, the circumcircle of triangle $PRS$ is tangent to $AB$ at $P$. Similarly, since $\angle CQR = \angle QSR$, the circumcircle of triangle $QRS$ is tangent to $AC$ at $Q$. For the sake of contradiction, suppose that the circumcircles of triangles $PRS$ and $QRS$ are not the same circle. Since $AP = AQ$, $AP^2 = AQ^2$, so the power of A with respect to both circumcircles is the same. Thus, $A$ lies on the radical axis of both circles. However, both circles pass through $R$ and $S$, so the radical axis of both circles is $RS$. Hence, $A$ lies on $RS$, which is a contradiction. Therefore, the two circumcircles are the same circle. In other words, $P$, $Q$, $R$, and $S$ all lie on the same circle.
// Block 1 import markers; unitsize(0.5 cm); pair A, B, C, O, P, Q, R, S; A = (2,12); B = (0,0); C = (14,0); P = intersectionpoint(A--B,Circle(A,8)); Q = intersectionpoint(A--C,Circle(A,8)); O = extension(P, P + rotate(90)*(A - P), Q, Q + rotate(90)*(A - Q)); S = intersectionpoint(B--C,arc(O, abs(O - P), 180, 270)); R = intersectionpoint(B--C,arc(O, abs(O - P), 270, 360)); draw(A--B--C--cycle); draw(Circle(O, abs(O - P))); draw(S--P--R); draw(S--Q--R); label("$A$", A, N); label("$B$", B, SW); label("$C$", C, SE); label("$P$", P, W); label("$Q$", Q, NE); label("$R$", R, SE); label("$S$", S, SW); markangle(1, B, P, S, radius=4mm, marker(markinterval(stickframe(n=1,2mm),true))); markangle(1, P, R, S, radius=4mm, marker(markinterval(stickframe(n=1,2mm),true))); markangle(1, R, Q, C, radius=4mm, marker(markinterval(stickframe(n=2,2mm),true))); markangle(1, R, S, Q, radius=4mm, marker(markinterval(stickframe(n=2,2mm),true))); // Block 2 import markers; unitsize(0.5 cm); pair A, B, C, O, P, Q, R, S; A = (2,12); B = (0,0); C = (14,0); P = intersectionpoint(A--B,Circle(A,8)); Q = intersectionpoint(A--C,Circle(A,8)); O = extension(P, P + rotate(90)*(A - P), Q, Q + rotate(90)*(A - Q)); S = intersectionpoint(B--C,arc(O, abs(O - P), 180, 270)); R = intersectionpoint(B--C,arc(O, abs(O - P), 270, 360)); draw(A--B--C--cycle); draw(Circle(O, abs(O - P))); draw(S--P--R); draw(S--Q--R); label("$A$", A, N); label("$B$", B, SW); label("$C$", C, SE); label("$P$", P, W); label("$Q$", Q, NE); label("$R$", R, SE); label("$S$", S, SW); markangle(1, B, P, S, radius=4mm, marker(markinterval(stickframe(n=1,2mm),true))); markangle(1, P, R, S, radius=4mm, marker(markinterval(stickframe(n=1,2mm),true))); markangle(1, R, Q, C, radius=4mm, marker(markinterval(stickframe(n=2,2mm),true))); markangle(1, R, S, Q, radius=4mm, marker(markinterval(stickframe(n=2,2mm),true)));
[]
6
Let $P$ be a point in the plane of triangle $ABC$, and $\gamma$ a line passing through $P$. Let $A'$, $B'$, $C'$ be the points where the reflections of lines $PA$, $PB$, $PC$ with respect to $\gamma$ intersect lines $BC$, $AC$, $AB$, respectively. Prove that $A'$, $B'$, $C'$ are collinear.
2012 USAJMO Problem 6
By the sine law on triangle $AB'P$, \[\frac{AB'}{\sin \angle APB'} = \frac{AP}{\sin \angle AB'P},\] so \[AB' = AP \cdot \frac{\sin \angle APB'}{\sin \angle AB'P}.\] Similarly, \begin{align*} B'C &= CP \cdot \frac{\sin \angle CPB'}{\sin \angle CB'P}, \\ CA' &= CP \cdot \frac{\sin \angle CPA'}{\sin \angle CA'P}, \\ A'B &= BP \cdot \frac{\sin \angle BPA'}{\sin \angle BA'P}, \\ BC' &= BP \cdot \frac{\sin \angle BPC'}{\sin \angle BC'P}, \\ C'A &= AP \cdot \frac{\sin \angle APC'}{\sin \angle AC'P}. \end{align*} Hence, \begin{align*} &\frac{AB'}{B'C} \cdot \frac{CA'}{A'B} \cdot \frac{BC'}{C'A} \\ &= \frac{\sin \angle APB'}{\sin \angle AB'P} \cdot \frac{\sin \angle CB'P}{\sin \angle CPB'} \cdot \frac{\sin \angle CPA'}{\sin \angle CA'P} \cdot \frac{\sin \angle BA'P}{\sin \angle BPA'} \cdot \frac{\sin \angle BPC'}{\sin \angle BC'P} \cdot \frac{\sin \angle AC'P}{\sin \angle APC'}. \end{align*} Since angles $\angle AB'P$ and $\angle CB'P$ are supplementary or equal, depending on the position of $B'$ on $AC$, \[\sin \angle AB'P = \sin \angle CB'P.\] Similarly, \begin{align*} \sin \angle CA'P &= \sin \angle BA'P, \\ \sin \angle BC'P &= \sin \angle AC'P. \end{align*} By the reflective property, $\angle APB'$ and $\angle BPA'$ are supplementary or equal, so \[\sin \angle APB' = \sin \angle BPA'.\] Similarly, \begin{align*} \sin \angle CPA' &= \sin \angle APC', \\ \sin \angle BPC' &= \sin \angle CPB'. \end{align*} Therefore, \[\frac{AB'}{B'C} \cdot \frac{CA'}{A'B} \cdot \frac{BC'}{C'A} = 1,\] so by Menelaus's theorem, $A'$, $B'$, and $C'$ are collinear.
import graph; import geometry; unitsize(0.5 cm); pair[] A, B, C; pair P, R; A[0] = (2,12); B[0] = (0,0); C[0] = (14,0); P = (4,5); R = 5*dir(70); A[1] = extension(B[0],C[0],P,reflect(P + R,P - R)*(A[0])); B[1] = extension(C[0],A[0],P,reflect(P + R,P - R)*(B[0])); C[1] = extension(A[0],B[0],P,reflect(P + R,P - R)*(C[0])); draw((P - R)--(P + R),red); draw(A[1]--B[1]--C[1]--cycle,blue); draw(A[0]--B[0]--C[0]--cycle); draw(A[0]--P); draw(B[0]--P); draw(C[0]--P); draw(P--A[1]); draw(P--B[1]); draw(P--C[1]); draw(A[1]--B[0]); draw(A[1]--B[0]); label("$A$", A[0], N); label("$B$", B[0], S); label("$C$", C[0], SE); dot("$A'$", A[1], SW); dot("$B'$", B[1], NE); dot("$C'$", C[1], W); dot("$P$", P, SE); label("$\gamma$", P + R, N);
[]
7
In triangle $ABC$, points $P,Q,R$ lie on sides $BC,CA,AB$ respectively. Let $\omega_A$, $\omega_B$, $\omega_C$ denote the circumcircles of triangles $AQR$, $BRP$, $CPQ$, respectively. Given the fact that segment $AP$ intersects $\omega_A$, $\omega_B$, $\omega_C$ again at $X,Y,Z$ respectively, prove that $YX/XZ=BP/PC$.
2013 USAJMO Problem 3
In this solution, all lengths and angles are directed. Firstly, it is easy to see by that $\omega_A, \omega_B, \omega_C$ concur at a point $M$ (the Miquel point). Let $XM$ meet $\omega_B, \omega_C$ again at $D$ and $E$, respectively. Then by Power of a Point, we have \[XM \cdot XE = XZ \cdot XP \quad\text{and}\quad XM \cdot XD = XY \cdot XP\] Thusly \[\frac{XY}{XZ} = \frac{XD}{XE}\] But we claim that $\triangle XDP \sim \triangle PBM$. Indeed, \[\measuredangle XDP = \measuredangle MDP = \measuredangle MBP = - \measuredangle PBM\] and \[\measuredangle DXP = \measuredangle MXY = \measuredangle MXA = \measuredangle MRA = 180^\circ - \measuredangle MRB = \measuredangle MPB = -\measuredangle BPM\] Therefore, $\frac{XD}{XP} = \frac{PB}{PM}$. Analogously we find that $\frac{XE}{XP} = \frac{PC}{PM}$ and we are done. courtesy v_enhance, minor clarification by integralarefun
/* DRAGON 0.0.9.6 Homemade Script by v_Enhance. */ import olympiad; import cse5; size(11cm); real lsf=0.8000; real lisf=2011.0; defaultpen(fontsize(10pt)); /* Initialize Objects */ pair A = (-1.0, 3.0); pair B = (-3.0, -3.0); pair C = (4.0, -3.0); pair P = (-0.6698198198198195, -3.0); pair Q = (1.1406465288818244, 0.43122416534181074); pair R = (-1.6269590345062048, 1.119122896481385); path w_A = circumcircle(A,Q,R); path w_B = circumcircle(B,P,R); path w_C = circumcircle(P,Q,C); pair O_A = midpoint(relpoint(w_A, 0)--relpoint(w_A, 0.5)); pair O_B = midpoint(relpoint(w_B, 0)--relpoint(w_B, 0.5)); pair O_C = midpoint(relpoint(w_C, 0)--relpoint(w_C, 0.5)); pair X = (2)*(foot(O_A,A,P))-A; pair Y = (2)*(foot(O_B,A,P))-P; pair Z = (2)*(foot(O_C,A,P))-P; pair M = 2*foot(P,relpoint(O_B--O_C,0.5-10/lisf),relpoint(O_B--O_C,0.5+10/lisf))-P; pair D = (2)*(foot(O_B,X,M))-M; pair E = (2)*(foot(O_C,X,M))-M; /* Draw objects */ draw(A--B, rgb(0.6,0.6,0.0)); draw(B--C, rgb(0.6,0.6,0.0)); draw(C--A, rgb(0.6,0.6,0.0)); draw(w_A, rgb(0.4,0.4,0.0)); draw(w_B, rgb(0.4,0.4,0.0)); draw(w_C, rgb(0.4,0.4,0.0)); draw(A--P, rgb(0.0,0.2,0.4)); draw(D--E, rgb(0.0,0.2,0.4)); draw(P--D, rgb(0.0,0.2,0.4)); draw(P--E, rgb(0.0,0.2,0.4)); draw(P--M, rgb(0.4,0.2,0.0)); draw(R--M, rgb(0.4,0.2,0.0)); draw(Q--M, rgb(0.4,0.2,0.0)); draw(B--M, rgb(0.0,0.2,0.4)); draw(C--M, rgb(0.0,0.2,0.4)); draw((abs(dot(unit(M-P),unit(B-P))) < 1/2011) ? rightanglemark(M,P,B) : anglemark(M,P,B), rgb(0.0,0.8,0.8)); draw((abs(dot(unit(M-R),unit(A-R))) < 1/2011) ? rightanglemark(M,R,A) : anglemark(M,R,A), rgb(0.0,0.8,0.8)); draw((abs(dot(unit(M-X),unit(A-X))) < 1/2011) ? rightanglemark(M,X,A) : anglemark(M,X,A), rgb(0.0,0.8,0.8)); draw((abs(dot(unit(D-X),unit(P-X))) < 1/2011) ? rightanglemark(D,X,P) : anglemark(D,X,P), rgb(0.0,0.8,0.8)); /* Place dots on each point */ dot(A); dot(B); dot(C); dot(P); dot(Q); dot(R); dot(X); dot(Y); dot(Z); dot(M); dot(D); dot(E); /* Label points */ label("$A$", A, lsf * dir(110)); label("$B$", B, lsf * unit(B-M)); label("$C$", C, lsf * unit(C-M)); label("$P$", P, lsf * unit(P-M) * 1.8); label("$Q$", Q, lsf * dir(90) * 1.6); label("$R$", R, lsf * unit(R-M) * 2); label("$X$", X, lsf * dir(-60) * 2); label("$Y$", Y, lsf * dir(45)); label("$Z$", Z, lsf * dir(5)); label("$M$", M, lsf * dir(M-P)*2); label("$D$", D, lsf * dir(150)); label("$E$", E, lsf * dir(5));
[]
7
In triangle $ABC$, points $P,Q,R$ lie on sides $BC,CA,AB$ respectively. Let $\omega_A$, $\omega_B$, $\omega_C$ denote the circumcircles of triangles $AQR$, $BRP$, $CPQ$, respectively. Given the fact that segment $AP$ intersects $\omega_A$, $\omega_B$, $\omega_C$ again at $X,Y,Z$ respectively, prove that $YX/XZ=BP/PC$.
2013 USAJMO Problem 3
We will use some construction arguments to solve the problem. Let $\angle BAC=\alpha,$ $\angle ABC=\beta,$ $\angle ACB=\gamma,$ and let $\angle APB=\theta.$ We construct lines through the points $Q,$ and $R$ that intersect with $\triangle ABC$ at the points $Q$ and $R,$ respectively, and that intersect each other at $T.$ We will construct these lines such that $\angle CQV=\angle ARV=\theta.$ Now we let the intersections of $AP$ with $RV$ and $QU$ be $Y'$ and $Z',$ respectively. This construction is as follows. We know that $\angle BRY'=180^\circ-\angle ARY'=180^\circ-\theta.$ Hence, we have, \begin{align*} \angle BRY'+\angle BPY' &=180^\circ-\theta+\theta\\ &=180^\circ. \end{align*} Since the opposite angles of quadrilateral $RY'PB$ add up to $180^\circ,$ it must be cyclic. Similarly, we can also show that quadrilaterals $CQZ'P,$ and $AQTR$ are also cyclic. Since points $Y'$ and $Z'$ lie on $AP,$ we know that, \[Y'=\omega_B\cap AP\] and that \[Z'=\omega_C\cap AP.\] Hence, the points $Y'$ and $Z'$ coincide with the given points $Y$ and $Z,$ respectively. Since quadrilateral $AQTR$ is also cyclic, we have, \begin{align*} \angle Y'TZ' &=180^\circ-\angle RTQ\\ &=180^\circ-(180^\circ-\angle RAQ)\\ &=\angle RAQ\\ &=\alpha. \end{align*} Similarly, since quadrilaterals $CQZ'P,$ and $AQTR$ are also cyclic, we have, \begin{align*} \angle TY'Z' &=180^\circ-\angle RY'P\\ &=180^\circ-(180^\circ-\angle RBP)\\ &=\angle RBP\\ &=\beta, \end{align*} and, \begin{align*} \angle Y'Z'T &=180^\circ-\angle PZ'Q\\ &=180^\circ-(180^\circ-\angle PCQ)\\ &=\angle PCQ\\ &=\gamma. \end{align*} Since these three angles are of $\triangle TY'Z',$ and they are equal to corresponding angles of $\triangle ABC,$ by AA similarity, we know that $\triangle TY'Z'\sim \triangle ABC.$ We now consider the point $X=\omega_c\cap AC.$ We know that the points $A,$ $Q,$ $T,$ and $R$ are concyclic. Hence, the points $A,$ $T,$ $X,$ and $R$ must also be concyclic. Hence, quadrilateral $AQTX$ is cyclic. Since the angles $\angle ART$ and $\angle AXT$ are inscribed in the same arc $\overarc{AT},$ we have, \begin{align*} \angle AXT &=\angle ART\\ &=\theta. \end{align*} Consider by this result, we can deduce that the homothety that maps $ABC$ to $TY'Z'$ will map $P$ to $X.$ Hence, we have that, \[Y'X/XZ'=BP/PC.\] Since $Y'=Y$ and $Z'=Z$ hence, \[YX/XZ=BP/PC,\] as required.
// Block 1 import graph; size(12cm); real labelscalefactor = 1.9; pen dps = linewidth(0.7) + fontsize(10); defaultpen(dps); pen rvwvcq = rgb(0.08235294117647059,0.396078431372549,0.7529411764705882); pen wrwrwr = rgb(0.3803921568627451,0.3803921568627451,0.3803921568627451); draw((-3.6988888888888977,6.426666666666669)--(-7.61,-5)--(7.09,-5)--cycle); draw((-3.6988888888888977,6.426666666666669)--(-7.61,-5)); draw((-7.61,-5)--(7.09,-5)); draw((7.09,-5)--(-3.6988888888888977,6.426666666666669)); draw((-3.6988888888888977,6.426666666666669)--(-2.958888888888898,-5)); draw((-5.053354907372894,2.4694710603912564)--(1.7922953932137468,0.6108747864253139)); draw((0.5968131669050584,1.8770271258031248)--(-5.8024625203461,-5)); dot((-3.6988888888888977,6.426666666666669)); label("$A$", (-3.6988888888888977,6.426666666666669), N * labelscalefactor); dot((-7.61,-5)); label("$B$", (-7.61,-5), SW * labelscalefactor); dot((7.09,-5)); label("$C$", (7.09,-5), SE * labelscalefactor); dot((-2.958888888888898,-5)); label("$P$", (-2.958888888888898,-5), S * labelscalefactor); dot((0.5968131669050584,1.8770271258031248)); label("$Q$", (0.5968131669050584,1.8770271258031248), NE * labelscalefactor); dot((-5.053354907372894,2.4694710603912564)); label("$R$", (-5.053354907372894,2.4694710603912564), dir(165) * labelscalefactor); dot((-3.143912404905382,-2.142970212141873)); label("$Z'$", (-3.143912404905382,-2.142970212141873), dir(170) * labelscalefactor); dot((-3.413789986031826,2.0243286531799747)); label("$Y'$", (-3.413789986031826,2.0243286531799747), NE * labelscalefactor); dot((-3.3284001481939356,0.7057864725120093)); label("$X$", (-3.3284001481939356,0.7057864725120093), dir(220) * labelscalefactor); dot((1.7922953932137468,0.6108747864253139)); label("$V$", (1.7922953932137468,0.6108747864253139), NE * labelscalefactor); dot((-5.8024625203461,-5)); label("$U$", (-5.8024625203461,-5), S * labelscalefactor); dot((-0.10264330299819162,1.125351256231488)); label("$T$", (-0.10264330299819162,1.125351256231488), dir(275) * labelscalefactor); // Block 2 import graph; size(12cm); real labelscalefactor = 1.9; pen dps = linewidth(0.7) + fontsize(10); defaultpen(dps); pen rvwvcq = rgb(0.08235294117647059,0.396078431372549,0.7529411764705882); pen wrwrwr = rgb(0.3803921568627451,0.3803921568627451,0.3803921568627451); draw((-3.6988888888888977,6.426666666666669)--(-7.61,-5)--(7.09,-5)--cycle); draw((-3.6988888888888977,6.426666666666669)--(-7.61,-5)); draw((-7.61,-5)--(7.09,-5)); draw((7.09,-5)--(-3.6988888888888977,6.426666666666669)); draw((-3.6988888888888977,6.426666666666669)--(-2.958888888888898,-5)); draw((-5.053354907372894,2.4694710603912564)--(1.7922953932137468,0.6108747864253139)); draw((0.5968131669050584,1.8770271258031248)--(-5.8024625203461,-5)); draw((-3.3284001481939356,0.7057864725120093)--(-0.10264330299819162,1.125351256231488)); draw((-3.3284001481939356,0.7057864725120093)--(-5.053354907372894,2.4694710603912564)); draw((-3.6988888888888977,6.426666666666669)--(-0.10264330299819162,1.125351256231488)); dot((-3.6988888888888977,6.426666666666669)); label("$A$", (-3.6988888888888977,6.426666666666669), N * labelscalefactor); dot((-7.61,-5)); label("$B$", (-7.61,-5), SW * labelscalefactor); dot((7.09,-5)); label("$C$", (7.09,-5), SE * labelscalefactor); dot((-2.958888888888898,-5)); label("$P$", (-2.958888888888898,-5), S * labelscalefactor); dot((0.5968131669050584,1.8770271258031248)); label("$Q$", (0.5968131669050584,1.8770271258031248), NE * labelscalefactor); dot((-5.053354907372894,2.4694710603912564)); label("$R$", (-5.053354907372894,2.4694710603912564), dir(165) * labelscalefactor); dot((-3.143912404905382,-2.142970212141873)); label("$Z'$", (-3.143912404905382,-2.142970212141873), dir(170) * labelscalefactor); dot((-3.413789986031826,2.0243286531799747)); label("$Y'$", (-3.413789986031826,2.0243286531799747), NE * labelscalefactor); dot((-3.3284001481939356,0.7057864725120093)); label("$X$", (-3.3284001481939356,0.7057864725120093), dir(220) * labelscalefactor); dot((1.7922953932137468,0.6108747864253139)); label("$V$", (1.7922953932137468,0.6108747864253139), NE * labelscalefactor); dot((-5.8024625203461,-5)); label("$U$", (-5.8024625203461,-5), S * labelscalefactor); dot((-0.10264330299819162,1.125351256231488)); label("$T$", (-0.10264330299819162,1.125351256231488), dir(275) * labelscalefactor);
[]
7
In triangle $ABC$, points $P,Q,R$ lie on sides $BC,CA,AB$ respectively. Let $\omega_A$, $\omega_B$, $\omega_C$ denote the circumcircles of triangles $AQR$, $BRP$, $CPQ$, respectively. Given the fact that segment $AP$ intersects $\omega_A$, $\omega_B$, $\omega_C$ again at $X,Y,Z$ respectively, prove that $YX/XZ=BP/PC$.
2013 USAJMO Problem 3
We begin again by noting that the three circumcircles intersect at point $M$ by Miquel's theorem. In addition, we state that the angle $\angle MQC = \alpha$, hence $\angle MPC = \angle MZC = 180 - \alpha$, as well as $\angle AQM$, from which follows that $\angle ARM = \alpha$, so $\angle BRM = 180 - \alpha$, and $\angle BPM = \alpha$. We shall prove that the triangles $\triangle MZC$ and $\triangle XMP$ and $\triangle YMB$ are similar, which will imply a rotational homotethy with angle $\angle APB$ about the point $M$, that takes $Y,X,Z$ to $B,P,C$, thus proving the problem. (In essence, just imagine we rotate $YMZX$ around M and lengthen things out and get $MCPB$ - the ratios will remain identical.) We do this by angle chasing. Denote angle $\angle ZMP = \beta$. From the angles labeled before, we now know $\angle ZPB = \alpha-\beta = \angle ZMC$. In addition, $\angle ZPM = \angle ZCM$. So the angles in triangle $\triangle ZMC$ are $\alpha-\beta$, $\beta$ and thus $180-\alpha$, with $\alpha-\beta$ at the point $M$. In addition, $\angle YRM = \angle YPM = \beta$, so $\angle ARY = \alpha-\beta$, so $\angle YMB = \alpha - \beta$. Since $\angle YBM = \angle YPM = \beta$, the triangle $\triangle YMB$ has angles $\alpha-\beta, \beta, 180-\alpha$ also, with $\alpha-\beta$ at $M$. Finally, In triangle $\triangle XPM$, we already know the angle $\angle XPM$ to be $\beta$; we also can find that $\angle AQM = 180-\alpha$, so $\angle AXM = \alpha$, so $\angle MXP = 180-\alpha$, so $\angle XMP = \alpha-\beta$. Thus, the three triangles are similar have a common point $M$, which proves that there is a rotational homotethy around $M$ that maps $Y, X, Z$ to $B, P, C$ as desired. Solution by SimilarTriangle.
/* DRAGON 0.0.9.6 */ import olympiad; import cse5; size(11cm); real lsf=0.8000; real lisf=2011.0; defaultpen(fontsize(10pt)); /* Initialize Objects */ pair A = (-1.0, 3.0); pair B = (-3.0, -3.0); pair C = (4.0, -3.0); pair P = (-0.6698198198198195, -3.0); pair Q = (1.1406465288818244, 0.43122416534181074); pair R = (-1.6269590345062048, 1.119122896481385); path w_A = circumcircle(A,Q,R); path w_B = circumcircle(B,P,R); path w_C = circumcircle(P,Q,C); pair O_A = midpoint(relpoint(w_A, 0)--relpoint(w_A, 0.5)); pair O_B = midpoint(relpoint(w_B, 0)--relpoint(w_B, 0.5)); pair O_C = midpoint(relpoint(w_C, 0)--relpoint(w_C, 0.5)); pair X = (2)*(foot(O_A,A,P))-A; pair Y = (2)*(foot(O_B,A,P))-P; pair Z = (2)*(foot(O_C,A,P))-P; pair M = 2*foot(P,relpoint(O_B--O_C,0.5-10/lisf),relpoint(O_B--O_C,0.5+10/lisf))-P; /* Draw objects */ draw(A--B, rgb(0.6,0.6,0.0)); draw(B--C, rgb(0.6,0.6,0.0)); draw(C--A, rgb(0.6,0.6,0.0)); draw(w_A, rgb(0.4,0.4,0.0)); draw(w_B, rgb(0.4,0.4,0.0)); draw(w_C, rgb(0.4,0.4,0.0)); draw(A--P, rgb(0.0,0.2,0.4)); draw(P--M, rgb(0.0,0.2,0.4)); draw(R--M, rgb(0.4,0.2,0.0)); draw(Q--M, rgb(0.4,0.2,0.0)); draw(B--M, rgb(0.0,0.2,0.4)); draw(C--M, rgb(0.0,0.2,0.4)); draw(Z--M, rgb(0.0,0.2,0.4)); draw(X--M, rgb(0.0,0.2,0.4)); draw(Y--M, rgb(0.0,0.2,0.4)); draw(C--Z, rgb(0.0,0.2,0.4)); draw(B--Y, rgb(0.0,0.2,0.4)); /* Place dots on each point */ dot(A); dot(B); dot(C); dot(P); dot(Q); dot(R); dot(X); dot(Y); dot(Z); dot(M); /* Label points */ label("$A$", A, lsf * dir(110)); label("$B$", B, lsf * unit(B-M)); label("$C$", C, lsf * unit(C-M)); label("$P$", P, lsf * unit(P-M) * 1.8); label("$Q$", Q, lsf * dir(90) * 1.6); label("$R$", R, lsf * unit(R-M) * 2); label("$X$", X, lsf * dir(-60) * 2); label("$Y$", Y, lsf * dir(45)); label("$Z$", Z, lsf * dir(5)); label("$M$", M, lsf * dir(M-P)*2);
[]
8
Let $\triangle{ABC}$ be a non-equilateral, acute triangle with $\angle A=60^{\circ}$, and let $O$ and $H$ denote the circumcenter and orthocenter of $\triangle{ABC}$, respectively. (a) Prove that line $OH$ intersects both segments $AB$ and $AC$. (b) Line $OH$ intersects segments $AB$ and $AC$ at $P$ and $Q$, respectively. Denote by $s$ and $t$ the respective areas of triangle $APQ$ and quadrilateral $BPQC$. Determine the range of possible values for $s/t$.
2014 USAJMO Problem 2
Lemma: $H$ is the reflection of $O$ over the angle bisector of $\angle BAC$ (henceforth 'the' reflection) Proof: Let $H'$ be the reflection of $O$, and let $B'$ be the reflection of $B$. Then reflection takes $\angle ABH'$ to $\angle AB'O$. $\Delta ABB'$ is equilateral, and $O$ lies on the perpendicular bisector of $\overline{AB}$ It's well known that $O$ lies strictly inside $\Delta ABC$ (since it's acute), meaning that $\angle ABH' = \angle AB'O = 30^{\circ},$ from which it follows that $\overline{BH'} \perp \overline{AC}$ . Similarly, $\overline{CH'} \perp \overline{AB}$. Since $H'$ lies on two altitudes, $H'$ is the orthocenter, as desired. End Lemma So $\overline{OH}$ is perpendicular to the angle bisector of $\angle OAH$, which is the same line as the angle bisector of $\angle BAC$, meaning that $\Delta APQ$ is equilateral. Let its side length be $s$, and let $PH=t$, where $0 < t < s, t \neq s/2$ because $O$ lies strictly within $\angle BAC$, as must $H$, the reflection of $O$. Also, it's easy to show that if $O=H$ in a general triangle, it's equilateral, and we know $\Delta ABC$ is not equilateral. Hence H is not on the bisector of $\angle BAC \implies t \neq s/2$. Let $\overrightarrow{BH}$ intersect $\overline{AC}$ at $P_B$. Since $\Delta HP_BQ$ and $BP_BA$ are 30-60-90 triangles, $AB=2AP_B=2(s-QP_B)=2(s-HQ/2)=2s-HQ=2s-(s-t)=s+t$ Similarly, $AC=2s-t$ The ratio $\frac{[APQ]}{[ABC]-[APQ]}$ is $\frac{AP \cdot AQ}{AB \cdot AC - AP \cdot AQ} = \frac{s^2}{(s+t)(2s-t)-s^2}$ The denominator equals $(1.5s)^2-(.5s-t)^2-s^2$ where $.5s-t$ can equal any value in $(-.5s, .5s)$ except $0$. Therefore, the denominator can equal any value in $(s^2, 5s^2/4)$, and the ratio is any value in $\boxed{\left(\frac{4}{5},1\right)}.$ Note: It's easy to show that for any point $H$ on $\overline{PQ}$ except the midpoint, Points B and C can be validly defined to make an acute, non-equilateral triangle.
// Block 1 import olympiad; unitsize(1inch); pair A,B,C,O,H,P,Q,i1,i2,i3,i4; //define dots A=3*dir(50); B=(0,0); C=right*2.76481496; O=circumcenter(A,B,C); H=orthocenter(A,B,C); i1=2*O-H; i2=2*i1-O; i3=2*H-O; i4=2*i3-H; //These points are for extending PQ. DO NOT DELETE! P=intersectionpoint(i2--i4,A--B); Q=intersectionpoint(i2--i4,A--C); //draw dot(P); dot(Q); draw(P--Q); dot(A); dot(B); dot(C); dot(O); dot(H); draw(A--B--C--cycle); //label label("$A$",A,N); label("$B$",B,SW); label("$C$",C,SE); label("$P$",P,NW); label("$Q$",Q,NE); label("$O$",O,N); label("$H$",H,N); //change O and H label positions if interfering with other lines to be added //further editing: ABCPQOH are the dots to be further used. i1,i2,i3,i4 are for drawing assistance and are not to be used // Block 2 import olympiad; unitsize(1inch); pair A,B,C,O,H,P,Q,i1,i2,i3,i4; //define dots A=3*dir(50); B=(0,0); C=right*2.76481496; O=circumcenter(A,B,C); H=orthocenter(A,B,C); i1=2*O-H; i2=2*i1-O; i3=2*H-O; i4=2*i3-H; //These points are for extending PQ. DO NOT DELETE! P=intersectionpoint(i2--i4,A--B); Q=intersectionpoint(i2--i4,A--C); //draw dot(P); dot(Q); draw(P--Q); dot(A); dot(B); dot(C); dot(O); dot(H); draw(A--B--C--cycle); //label label("$A$",A,N); label("$B$",B,SW); label("$C$",C,SE); label("$P$",P,NW); label("$Q$",Q,NE); label("$O$",O,N); label("$H$",H,N); //change O and H label positions if interfering with other lines to be added //further editing: ABCPQOH are the dots to be further used. i1,i2,i3,i4 are for drawing assistance and are not to be used
[]
9
Let $ABC$ be a triangle with incenter $I$, incircle $\gamma$ and circumcircle $\Gamma$. Let $M,N,P$ be the midpoints of sides $\overline{BC}$, $\overline{CA}$, $\overline{AB}$ and let $E,F$ be the tangency points of $\gamma$ with $\overline{CA}$ and $\overline{AB}$, respectively. Let $U,V$ be the intersections of line $EF$ with line $MN$ and line $MP$, respectively, and let $X$ be the midpoint of arc $BAC$ of $\Gamma$. (a) Prove that $I$ lies on ray $CV$. (b) Prove that line $XI$ bisects $\overline{UV}$.
2014 USAJMO Problem 6
(a) Solution 1: We will prove this via contradiction: assume that line $IC$ intersects line $MP$ at $Q$ and line $EF$ and $R$, with $R$ and $Q$ not equal to $V$. Let $x = \angle A/2 = \angle IAE$ and $y = \angle C/2 = \angle ICA$. We know that $\overline{MP} \parallel \overline{AC}$ because $MP$ is a midsegment of triangle $ABC$; thus, by alternate interior angles (A.I.A) $\angle MVE = \angle FEA = (180^\circ - 2x) / 2 = 90^\circ - x$, because triangle $AFE$ is isosceles. Also by A.I.A, $\angle MQC = \angle QCA = y$. Furthermore, because $AI$ is an angle bisector of triangle $AFE$, it is also an altitude of the triangle; combining this with $\angle QIA = x + y$ from the Exterior Angle Theorem gives $\angle FRC = 90 - x - y$. Also, $\angle VRQ = \angle FRC = 90 - x - y$ because they are vertical angles. This completes part (a). Solution 2: First we show that the intersection $V'$of $MP$ with the internal angle bisector of $C$ is the same as the intersection $V''$ of $EF$ with the internal angle bisector of $C.$ Let $D$ denote the intersection of $AB$ with the internal angle bisector of $C,$ and let $a,b,c$ denote the side lengths of $BC, AC, AB.$ By Menelaus on $V'', F, E,$ with respect to $\triangle ADC,$ \[\frac{AF}{FD}\cdot \frac{DV''}{V''C}\cdot \frac{CE}{EA}=-1\] \[\frac{DV''}{V''C}=-\frac{\frac{bc}{a+b}+\frac{a-b-c}{2}}{\frac{a+b-c}{2}}=\frac{b-a}{b+a}.\] Similarly, \[\frac{BP}{PD}\cdot \frac{DV'}{V'C}\cdot \frac{CM}{MB}=-1\] \[\frac{DV'}{V'C}=-\frac{\frac{ac}{a+b}-\frac{c}{2}}{\frac{c}{2}}=\frac{b-a}{b+a}.\] Since $V'$ and $V''$ divide $CD$ in the same ratio, they must be the same point. Now, since $\frac{b-a}{b+a}>-1,$ $I$ lies on ray $CV.$ $\blacksquare$ Solution 3: By the Iran Lemma, we know $CI, EF, MP$ concur, so Part $\text{A}$ follows easily. (b) Solution 1: Using a similar argument to part (a), point U lies on line $BI$. Because $\angle MVC = \angle VCA = \angle MCV$, triangle $VMC$ is isosceles. Similarly, triangle $BMU$ is isosceles, from which we derive that $VM = MC = MB = MU$. Hence, triangle $VUM$ is isosceles. Note that $X$ lies on both the circumcircle and the perpendicular bisector of segment $BC$. Let $D$ be the midpoint of $UV$; our goal is to prove that points $X$, $D$, and $I$ are collinear, which equates to proving $X$ lies on ray $ID$. Because $MD$ is also an altitude of triangle $MVU$, and $MD$ and $IA$ are both perpendicular to $EF$, $\overline{MD} \parallel \overline{IA}$. Furthermore, we have $\angle VMD = \angle UMD = x$ because $APMN$ is a parallelogram. (incomplete) Solution 2: Let $I_A$, $I_B$, and $I_C$ be the excenters of $ABC$. Note that the circumcircle of $ABC$ is the nine-point circle of $I_AI_BI_C$. Since $AX$ is the external angle bisector of $\angle BAC$, $X$ is the midpoint of $I_BI_C$. Now $UV$ and $I_BI_C$ are parallel since both are perpendicular to the internal angle bisector of $\angle BAC$. Since $IX$ bisects $I_BI_C$, it bisects $UV$ as well. Solution 3: Let $X'$ be the antipode of $X$ with respect to the circumcircle of triangle $ABC$. Then, by the Incenter-Excenter lemma, $X'$ is the center of a circle containing $B$, $I$, and $C$. Because $XX'$ is a diameter, $XB$ and $XC$ are tangent to the aforementioned circle; thus by a well-known symmedian lemma (the Tangent Construction Lemma), $XI$ is the $I$-symmedian of triangle $IBC$. From part (a); we know that $BVUC$ is cyclic with diameter $BC$ (we can derive a similar argument for point $U$); thus, from similar triangles, we know that $XI$ is also the median of triangle $VIU$, and we are done. Solution 4: Let $M_b, M_c$ be the midpoints of arcs $CA, AB$ respectively, and let $T_a$ be the tangency point between the $A$-mixtilinear incircle of $ABC$ and $\Gamma$. It's well-known that $T_a \in XI$, $T_aX$ bisects $M_bM_c$, $AI \perp EF$, and $AI \perp M_bM_c$. Now, it's easy to see $EF \parallel M_bM_c$, so $IUV$ and $IM_bM_c$ are homothetic at $I$. But $T_aX \equiv IX$ bisects $M_bM_c$, so Part $\text{B}$ follows directly from the homothety. ~ ike.chen
// Block 1 unitsize(5cm); import olympiad; pair A, B, C, I, M, N, P, E, F, U, V, X, R; A = dir(190); B = dir(120); C = dir(350); I = incenter(A, B, C); label("$A$", A, W); label("$B$", B, dir(90)); label("$C$", C, dir(0)); dot(I); label("$I$", I, SSE); draw(A--B--C--cycle); real r, R; r = inradius(A, B, C); R = circumradius(A, B, C); path G, g; G = circumcircle(A, B, C); g = incircle(A, B, C); draw(G); draw(g); label("$\Gamma$", dir(35), dir(35)); label("$\gamma$", 2/3 * dir(125)); M = (B+C)/2; N = (A+C)/2; P = (A+B)/2; label("$M$", M, NE); label("$N$", N, SE); label("$P$", P, W); E = tangent(A, I, r, 1); F = tangent(A, I, r, 2); label("$E$", E, SW); label("$F$", F, WNW); U = extension(E, F, M, N); V = intersectionpoint(P--M, F--E); label("$U$", U, S); label("$V$", V, NE); draw(P--M--U--F); X = dir(235); label("$X$", X, dir(235)); draw(X--I, dashed); draw(C--V, dashed); draw(A--I); label("$x^\circ$", A + (0.2,0), dir(90)); label("$y^\circ$", C + (-0.4,0), dir(90)); // Block 2 unitsize(5cm); import olympiad; pair A, B, C, I, M, N, P, E, F, U, V, X, R; A = dir(190); B = dir(120); C = dir(350); I = incenter(A, B, C); label("$A$", A, W); label("$B$", B, dir(90)); label("$C$", C, dir(0)); dot(I); label("$I$", I, SSE); draw(A--B--C--cycle); real r, R; r = inradius(A, B, C); R = circumradius(A, B, C); path G, g; G = circumcircle(A, B, C); g = incircle(A, B, C); draw(G); draw(g); label("$\Gamma$", dir(35), dir(35)); label("$\gamma$", 2/3 * dir(125)); M = (B+C)/2; N = (A+C)/2; P = (A+B)/2; label("$M$", M, NE); label("$N$", N, SE); label("$P$", P, W); E = tangent(A, I, r, 1); F = tangent(A, I, r, 2); label("$E$", E, SW); label("$F$", F, WNW); U = extension(E, F, M, N); V = intersectionpoint(P--M, F--E); label("$U$", U, S); label("$V$", V, NE); draw(P--M--U--F); X = dir(235); label("$X$", X, dir(235)); draw(X--I, dashed); draw(C--V, dashed); draw(A--I); label("$x^\circ$", A + (0.2,0), dir(90)); label("$y^\circ$", C + (-0.4,0), dir(90));
[]
10
The isosceles triangle $\triangle ABC$, with $AB=AC$, is inscribed in the circle $\omega$. Let $P$ be a variable point on the arc $\stackrel{\frown}{BC}$ that does not contain $A$, and let $I_B$ and $I_C$ denote the incenters of triangles $\triangle ABP$ and $\triangle ACP$, respectively. Prove that as $P$ varies, the circumcircle of triangle $\triangle PI_BI_C$ passes through a fixed point.
2016 USAJMO Problem 1
We claim that $M$ (midpoint of arc $BC$) is the fixed point. We would like to show that $M$, $P$, $I_B$, $I_C$ are cyclic. We extend $PI_B$ to intersect $\omega$ again at R. We extend $PI_C$ to intersect $\omega$ again at S. We invert around a circle centered at $P$ with radius $1$ (for convenience). (I will denote X' as the reflection of X for all the points) The problem then becomes: Prove $I_B'$, $I_C'$, and $M'$ are collinear. Now we look at triangle $\triangle PR'S'$. We apply Menelaus (the version where all three points lie outside the triangle). It suffices to show that \[\dfrac{PI_B'}{I_B'R'} \cdot \dfrac{R'M'}{M'S'} \cdot \dfrac{S'I_C'}{I_C'P} = 1\] By inversion, we know $PX' = \dfrac{1}{PX}$ for any point $X$ and $X'Y' = \dfrac{XY}{PX \cdot PY}$ for any points $X$ and $Y$. Plugging this into our Menelaus equation we obtain that it suffices to show \[\dfrac{\dfrac{1}{PI_B}}{\dfrac{RI_B}{PI_B \cdot PR}} \cdot \dfrac{\dfrac{RM}{PR \cdot PM}}{\dfrac{SM}{PS \cdot PM}} \cdot \dfrac{\dfrac{SI_C}{PI_C \cdot PS}}{\dfrac{1}{PI_C}} = 1\] We cancel out the like terms and rewrite. It suffices to show \[\dfrac{RM \cdot SI_C}{SM \cdot RI_B} = 1\] We know that $AM$ is the diameter of $\omega$ because $\triangle ABC$ is isosceles and $AM$ is the angle bisector. We also know $\angle RMA = \dfrac{\angle ACB}{2} = \dfrac{\angle ABC}{2} = \angle SMA$ so $R$ and $S$ are symmetric with respect to $AM$ so $RM = SM$. Thus, it suffices to show $\dfrac{SI_C}{RI_B} = 1$. This is obvious because $RI_B = RA = SA = SI_C$. Therefore we are done. $\blacksquare$
// Block 1 size(8cm); pair A = dir(90); pair B = dir(-10); pair C = dir(190); pair P = dir(-70); pair U = incenter(A,B,P); pair V = incenter(A,C,P); pair M = dir(-90); draw(circle((0,0),1)); dot("$A$", A, dir(A)); dot("$B$", B, dir(B)); dot("$C$", C, dir(C)); dot("$P$", P, dir(P)); dot("$I_B$", U, NE); dot("$I_C$", V, NW); dot("$M$", M, dir(M)); draw(A--B--C--A); draw(circumcircle(P,U,V)); // Block 2 size(8cm); pair A = dir(90); pair B = dir(-10); pair C = dir(190); pair P = dir(-70); pair U = incenter(A,B,P); pair V = incenter(A,C,P); pair M = dir(-90); draw(circle((0,0),1)); dot("$A$", A, dir(A)); dot("$B$", B, dir(B)); dot("$C$", C, dir(C)); dot("$P$", P, dir(P)); dot("$I_B$", U, NE); dot("$I_C$", V, NW); dot("$M$", M, dir(M)); draw(A--B--C--A); draw(circumcircle(P,U,V));
[]
10
The isosceles triangle $\triangle ABC$, with $AB=AC$, is inscribed in the circle $\omega$. Let $P$ be a variable point on the arc $\stackrel{\frown}{BC}$ that does not contain $A$, and let $I_B$ and $I_C$ denote the incenters of triangles $\triangle ABP$ and $\triangle ACP$, respectively. Prove that as $P$ varies, the circumcircle of triangle $\triangle PI_BI_C$ passes through a fixed point.
2016 USAJMO Problem 1
Let $M$ be the midpoint of arc $BC$. Let $D$ be the midpoint of arc $AB$. Let $E$ be the midpoint of arc $AC$. Then, $P, I_B$, and $D$ are collinear and $P, I_C$, and $E$ are collinear. We'll prove $MPI_B I_C$ is cyclic. (Intuition: we'll show that $M$ is the Miquel's point of quadrilateral $DE I_C I_B$. $D$ is the center of the circle $A I_B B$ (the $P-$ excenter of $PAB$ is also on the same circle). Therefore $D I_B = DB$. Similarly $E I_C = EC$. Since $AB=AC$, $DB=EC$. Therefore $D I_B = E I_C$. Obviously $ME = MD$ and $\angle MEI_C = \angle MEP = \angle MDP = \angle MDI_B$. Thus by SAS, $\triangle MEI_C \cong \triangle MDI_B$. Hence $\angle I_B M I_C = \angle DME = \angle DPE = \angle I_B P I_C$, so $MPI_B I_C$ is cyclic and we are done. These problems are copyrighted © by the Mathematical Association of America. See also 2016 USAJMO (Problems • Resources) First Problem Followed by Problem 2 1 • 2 • 3 • 4 • 5 • 6 All USAJMO Problems and Solutions
// Block 1 size(8cm); pair A = dir(90); pair B = dir(-10); pair C = dir(190); pair P = dir(-70); pair U = incenter(A,B,P); pair V = incenter(A,C,P); pair M = dir(-90); pair D = dir(40); pair E = dir(140); draw(circle((0,0),1)); dot("$A$", A, dir(A)); dot("$B$", B, dir(B)); dot("$C$", C, dir(C)); dot("$D$", D, dir(D)); dot("$E$", E, dir(E)); dot("$P$", P, dir(P)); dot("$I_B$", U, NE); dot("$I_C$", V, NW); dot("$M$", M, dir(M)); draw(A--B--C--A--P--B ^^ P--C ^^ E--D--P--E--M--V ^^ D--M--U--V); // Block 2 size(8cm); pair A = dir(90); pair B = dir(-10); pair C = dir(190); pair P = dir(-70); pair U = incenter(A,B,P); pair V = incenter(A,C,P); pair M = dir(-90); pair D = dir(40); pair E = dir(140); draw(circle((0,0),1)); dot("$A$", A, dir(A)); dot("$B$", B, dir(B)); dot("$C$", C, dir(C)); dot("$D$", D, dir(D)); dot("$E$", E, dir(E)); dot("$P$", P, dir(P)); dot("$I_B$", U, NE); dot("$I_C$", V, NW); dot("$M$", M, dir(M)); draw(A--B--C--A--P--B ^^ P--C ^^ E--D--P--E--M--V ^^ D--M--U--V);
[]
11
Let $\triangle ABC$ be an acute triangle, with $O$ as its circumcenter. Point $H$ is the foot of the perpendicular from $A$ to line $\overleftrightarrow{BC}$, and points $P$ and $Q$ are the feet of the perpendiculars from $H$ to the lines $\overleftrightarrow{AB}$ and $\overleftrightarrow{AC}$, respectively. Given that \[AH^2=2\cdot AO^2,\]prove that the points $O,P,$ and $Q$ are collinear.
2016 USAJMO Problem 5
It is well-known that $AH\cdot 2AO=AB\cdot AC$ (just use similar triangles or standard area formulas). Then by Power of a Point, \[AP\cdot AB=AH^2=AQ\cdot AC\] Consider the transformation $X\mapsto \Psi(X)$ which dilates $X$ from $A$ by a factor of $\dfrac{AB}{AQ}=\dfrac{AC}{AP}$ and reflects about the $A$-angle bisector. Then $\Psi(O)$ clearly lies on $AH$, and its distance from $A$ is \[AO\cdot\frac{AB}{AQ}=AO\cdot\frac{AB}{\frac{AH^2}{AC}}=AO\cdot\frac{AB\cdot AC}{AH^2}=\frac{AO\cdot AH\cdot 2AO}{AH^2}=\frac{2AO^2}{AH}=AH\] so $\Psi(O)=H$, hence we conclude that $O,P,Q$ are collinear, as desired.
// Block 1 size(8cm); pair O=(0,0); pair A=dir(110); pair B=dir(-29); pair C=dir(209); pair H=foot(A,B,C); pair P=foot(H,A,B); pair Q=foot(H,A,C); draw(A--B--C--A--H--P); draw(circle(O,1)); draw(Q--H); dot("$A$", A, dir(A)); dot("$B$", B, dir(B)); dot("$C$", C, dir(C)); dot("$H$", H, S); dot("$P$", P, NE); dot("$Q$", Q, NW); dot("$O$", O, S); // Block 2 size(8cm); pair O=(0,0); pair A=dir(110); pair B=dir(-29); pair C=dir(209); pair H=foot(A,B,C); pair P=foot(H,A,B); pair Q=foot(H,A,C); draw(A--B--C--A--H--P); draw(circle(O,1)); draw(Q--H); dot("$A$", A, dir(A)); dot("$B$", B, dir(B)); dot("$C$", C, dir(C)); dot("$H$", H, S); dot("$P$", P, NE); dot("$Q$", Q, NW); dot("$O$", O, S);
[]
12
($*$) Let $ABC$ be an equilateral triangle and let $P$ be a point on its circumcircle. Let lines $PA$ and $BC$ intersect at $D$; let lines $PB$ and $CA$ intersect at $E$; and let lines $PC$ and $AB$ intersect at $F$. Prove that the area of triangle $DEF$ is twice that of triangle $ABC$.
2017 USAJMO Problem 3
We'll use coordinates and shoelace. Let the origin be the midpoint of $BC$. Let $AB=2$, and $BF = 2x$, then $F=(-x-1,-x\sqrt{3})$. Using the facts $\triangle{CBP} \sim \triangle{CFB}$ and $\triangle{BCP} \sim \triangle{BEC}$, we have $BF * CE = BC^2$, so $CE = \frac{1}{2x}$, and $E = (\frac{1}{x}+1,-\frac{\sqrt{3}}{x})$. The slope of $FE$ is \[k = \frac{-\frac{\sqrt{3}}{x} + x\sqrt{3}}{2+\frac{1}{x}+x}\] It is well-known that $\triangle{DFE}$ is self-polar, so $FE$ is the polar of $D$, i.e., $OD$ is perpendicular to $FE$. Therefore, the slope of $OD$ is $-\frac{1}{k}$. Since $O=(0,\frac{1}{\sqrt{3}})$, we get the x-coordinate of $D$, $x_D = \frac{k}{\sqrt{3}}$, i.e., $D = (\frac{k}{\sqrt{3}},0)$. Using shoelace, \[2[\triangle{FDE}] = \frac{k}{\sqrt{3}}(-x\sqrt{3})+(-x-1)(-\frac{\sqrt{3}}{x})- (-x\sqrt{3})(\frac{1}{x}+1) - (-\frac{\sqrt{3}}{x})\frac{k}{\sqrt{3}}\] \[= 2\sqrt{3} + \sqrt{3}(\frac{1}{x}+x) + k(\frac{1}{x} - x)\] \[= 2\sqrt{3} + \sqrt{3}(\frac{2(\frac{1}{x}+x)+(\frac{1}{x}+x)^2-(\frac{1}{x}-x)^2} {2+\frac{1}{x}+x})\] \[= 2\sqrt{3} + \sqrt{3}(\frac{2(\frac{1}{x}+x)+4}{2+\frac{1}{x}+x})\] \[= 4\sqrt{3}\] So $[\triangle{FDE}] = 2\sqrt{3} = 2[\triangle{ABC}]$. Q.E.D By Mathdummy.
// Block 1 import cse5; import graph; import olympiad; size(3inch); pair A = (0, 3sqrt(3)), B = (-3,0), C = (3,0), O = (0, sqrt(3)); pair P = (-1, -sqrt(11)+sqrt(3)); path circle = Circle(O, 2sqrt(3)); pair D = extension(A,P,B,C); pair E1 = extension(A,C,B,P); pair F=extension(A,B,C,P); draw(circle, black); draw(A--B--C--cycle); draw(B--E1--C); draw(C--F--B); draw(A--P); draw(D--E1--F--cycle, dashed); pair G = extension(O,D,F,E1); draw(O--G,dashed); label("A", A, N); label("B", B, W); label("C", C, E); label("P", P, S); label("D", D, NW); label("E", E1, SE); label("F", F, SW); dot("O", O, SE); // Block 2 import cse5; import graph; import olympiad; size(3inch); pair A = (0, 3sqrt(3)), B = (-3,0), C = (3,0), O = (0, sqrt(3)); pair P = (-1, -sqrt(11)+sqrt(3)); path circle = Circle(O, 2sqrt(3)); pair D = extension(A,P,B,C); pair E1 = extension(A,C,B,P); pair F=extension(A,B,C,P); draw(circle, black); draw(A--B--C--cycle); draw(B--E1--C); draw(C--F--B); draw(A--P); draw(D--E1--F--cycle, dashed); pair G = extension(O,D,F,E1); draw(O--G,dashed); label("A", A, N); label("B", B, W); label("C", C, E); label("P", P, S); label("D", D, NW); label("E", E1, SE); label("F", F, SW); dot("O", O, SE);
[]
13
Let $O$ and $H$ be the circumcenter and the orthocenter of an acute triangle $ABC$. Points $M$ and $D$ lie on side $BC$ such that $BM = CM$ and $\angle BAD = \angle CAD$. Ray $MO$ intersects the circumcircle of triangle $BHC$ in point $N$. Prove that $\angle ADO = \angle HAN$.
2017 USAJMO Problem 5
(original diagram by integralarefun) It's well known that the reflection of $H$ across $\overline{BC}$, $H'$, lies on $(ABC)$. Then $(BHC)$ is just the reflection of $(BH'C)$ across $\overline{BC}$, which is equivalent to the reflection of $(ABC)$ across $\overline{BC}$. Reflect points $A$ and $N$ across $\overline{BC}$ to points $A'$ and $N'$, respectively. Then $N'$ is the midpoint of minor arc $\overarc{BC}$, so $A, D, N'$ are collinear in that order. It suffices to show that $\angle AA'N'=\angle ADO$. Claim: $\triangle AA'N' \sim \triangle ADO$. The proof easily follows. Proof: Note that $\angle BAA'=\angle CAO=90^{\circ}-\angle ABC$. Then we have $\angle A'AN'=\angle BAD-\angle BAA'=\angle CAD-\angle CAO=\angle DAO$. So, it suffices to show that \[\frac{AA'}{AN'}=\frac{AD}{AO}\rightarrow AA'\cdot AO=AN'\cdot AD.\] Notice that $\triangle ABA' \sim \triangle AOC$, so that \[\frac{AB}{AA'}=\frac{AO}{AC}\rightarrow AA'\cdot AO=AB\cdot AC.\] Therefore, it suffices to show that \[AB\cdot AC=AN'\cdot AD\rightarrow \frac{AB}{AN'}=\frac{AD}{AC}.\] But it is easy to show that $\triangle BAN'\sim \triangle DAC$, implying the result. $\blacksquare$
// Block 1 import olympiad; unitsize(100); pair pA = dir(120); pair pB = dir(225); pair pC = dir(315); pair pO = origin; pair pH = orthocenter(pA, pB, pC); pair pM = midpoint(pB--pC); pair dD = bisectorpoint(pB, pA, pC); pair pD = extension(pA, dD, pB, pC); pair pN = intersectionpoints(pM--(3*pO-2*pM), circumcircle(pB, pH, pC))[0]; pair dHprime = foot(pH, pB, pC); pair pHprime = 2*dHprime-pH; pair dAprime = foot(pA, pB, pC); pair pAprime = 2*dAprime-pA; pair dNprime = foot(pN, pB, pC); pair pNprime = 2*dNprime-pN; draw(pA--pB--pC--cycle); draw(unitcircle, blue); draw(pH--pHprime, magenta); draw(pA--pD, red); draw(circumcircle(pB, pH, pC), blue); draw(pA--pH, blue); draw(pA--pN, magenta); draw(pA--pO, blue); draw(pD--pNprime, magenta); dot("\(A\)", pA, NW); dot("\(B\)", pB, W); dot("\(C\)", pC, E); dot("\(O\)", pO, SW, blue); dot("\(H\)", pH, SW, blue); dot("\(N\)", pN, NE, magenta); dot("\(M\)", pM, S, red); dot("\(D\)", pD, S, red); dot("\(H'\)", pHprime, SW, magenta); dot("\(A'\)", pAprime, SW); dot("\(N'\)", pNprime, S, magenta); // Block 2 import olympiad; unitsize(100); pair pA = dir(120); pair pB = dir(225); pair pC = dir(315); pair pO = origin; pair pH = orthocenter(pA, pB, pC); pair pM = midpoint(pB--pC); pair dD = bisectorpoint(pB, pA, pC); pair pD = extension(pA, dD, pB, pC); pair pN = intersectionpoints(pM--(3*pO-2*pM), circumcircle(pB, pH, pC))[0]; pair dHprime = foot(pH, pB, pC); pair pHprime = 2*dHprime-pH; pair dAprime = foot(pA, pB, pC); pair pAprime = 2*dAprime-pA; pair dNprime = foot(pN, pB, pC); pair pNprime = 2*dNprime-pN; draw(pA--pB--pC--cycle); draw(unitcircle, blue); draw(pH--pHprime, magenta); draw(pA--pD, red); draw(circumcircle(pB, pH, pC), blue); draw(pA--pH, blue); draw(pA--pN, magenta); draw(pA--pO, blue); draw(pD--pNprime, magenta); dot("\(A\)", pA, NW); dot("\(B\)", pB, W); dot("\(C\)", pC, E); dot("\(O\)", pO, SW, blue); dot("\(H\)", pH, SW, blue); dot("\(N\)", pN, NE, magenta); dot("\(M\)", pM, S, red); dot("\(D\)", pD, S, red); dot("\(H'\)", pHprime, SW, magenta); dot("\(A'\)", pAprime, SW); dot("\(N'\)", pNprime, S, magenta);
[]
13
Let $O$ and $H$ be the circumcenter and the orthocenter of an acute triangle $ABC$. Points $M$ and $D$ lie on side $BC$ such that $BM = CM$ and $\angle BAD = \angle CAD$. Ray $MO$ intersects the circumcircle of triangle $BHC$ in point $N$. Prove that $\angle ADO = \angle HAN$.
2017 USAJMO Problem 5
Suppose ray $OM$ intersects the circumcircle of $BHC$ at $N'$, and let the foot of the A-altitude of $ABC$ be $E$. Note that $\angle BHE=90-\angle HBE=90-90+\angle C=\angle C$. Likewise, $\angle CHE=\angle B$. So, $\angle BHC=\angle BHE+\angle CHE=\angle B+\angle C$. $BHCN'$ is cyclic, so $\angle BN'C=180-\angle BHC=180-\angle B-\angle C=\angle A$. Also, $\angle BAC=\angle A$. These two angles are on different circles and have the same measure, but they point to the same line $BC$! Hence, the two circles must be congruent. (This is also a well-known result) We know, since $M$ is the midpoint of $BC$, that $OM$ is perpendicular to $BC$. $AH$ is also perpendicular to $BC$, so the two lines are parallel. $AN$ is a transversal, so $\angle HAN=\angle ANO$. We wish to prove that $\angle ANO=\angle ADO$, which is equivalent to $AOND$ being cyclic. Now, assume that ray $OM$ intersects the circumcircle of $ABC$ at a point $P$. Point $P$ must be the midpoint of $\stackrel{\frown}{BC}$. Also, since $AD$ is an angle bisector, it must also hit the circle at the point $P$. The two circles are congruent, which implies $MN=MP\implies ND=DP\implies$ NDP is isosceles. Angle ADN is an exterior angle, so $\angle ADN=\angle DNP+\angle DPO=2\angle DPO$. Assume WLOG that $\angle B>\angle C$. So, $\angle DPO=\angle APO=\frac{\angle B+\angle C}{2}-\angle C=\frac{\angle B-\angle C}{2}$. In addition, $\angle AON=\angle AOP=\angle AOB+\angle BOP=2\angle C+\angle A$. Combining these two equations, $\angle AON+\angle ADN=\angle B-\angle C+2\angle C+\angle A=\angle A+\angle B+\angle C=180$. Opposite angles sum to $180$, so quadrilateral $AOND$ is cyclic, and the condition is proved. -william122
// Block 1 size(9cm); pair A = dir(130); pair B = dir(220); pair C = dir(320); draw(unitcircle, lightblue); pair P = dir(-90); pair Q = dir(90); pair D = extension(A, P, B, C); pair O = origin; pair M = extension(B, C, O, P); pair N = 2*M-P; draw(A--B--C--cycle, lightblue); draw(A--P--Q, lightblue); draw(A--N--D--O--A, lightblue); draw(A--D--N--O--cycle, red); dot("$A$", A, dir(A)); dot("$B$", B, dir(B)); dot("$C$", C, dir(C)); dot("$P$", P, dir(P)); dot("$Q$", Q, dir(Q)); dot("$D$", D, dir(225)); dot("$O$", O, dir(315)); dot("$M$", M, dir(315)); dot("$N$", N, dir(315)); // Block 2 size(9cm); pair A = dir(130); pair B = dir(220); pair C = dir(320); draw(unitcircle, lightblue); pair P = dir(-90); pair Q = dir(90); pair D = extension(A, P, B, C); pair O = origin; pair M = extension(B, C, O, P); pair N = 2*M-P; draw(A--B--C--cycle, lightblue); draw(A--P--Q, lightblue); draw(A--N--D--O--A, lightblue); draw(A--D--N--O--cycle, red); dot("$A$", A, dir(A)); dot("$B$", B, dir(B)); dot("$C$", C, dir(C)); dot("$P$", P, dir(P)); dot("$Q$", Q, dir(Q)); dot("$D$", D, dir(225)); dot("$O$", O, dir(315)); dot("$M$", M, dir(315)); dot("$N$", N, dir(315));
[]
14
$(*)$ Let $ABC$ be a triangle with $\angle ABC$ obtuse. The $A$-excircle is a circle in the exterior of $\triangle ABC$ that is tangent to side $\overline{BC}$ of the triangle and tangent to the extensions of the other two sides. Let $E$, $F$ be the feet of the altitudes from $B$ and $C$ to lines $AC$ and $AB$, respectively. Can line $EF$ be tangent to the $A$-excircle?
2019 USAJMO Problem 4
We claim that the answer is no. We proceed with contradiction. Suppose that $EF$ is indeed tangent to the a-excenter. Define the point of tangency to be $X$. Let $G$ to be the intersection of the a-excircle with the extension of $AB$ and $H$ to be the intersection of the a-excircle with the extension of $AC$. Define $I_a$ to be the a-excenter. It is a well-known fact that $I_a$ lies on the angle bisector of $\angle BAC$. For convenience, let $AB = c, AC = b, BC = a$, $\angle CAB = A, \angle CBA = B, \angle ACB = C$. Notice that by Power of a Point: \[FX = FG.\] \[XE = EH.\] Therefore, adding, we see that: \[FE = FX + XE = FG + EH.\] It would be rather nice if we could re-write $FG$. Indeed, we can: \[FG = AG - FG = \frac{r_a}{\tan \left( \frac{A}{2} \right)} - b \cos (A)\] and similarly for $FH$: \[FH = AH - AF = \frac{r_a}{\tan \left( \frac{A}{2} \right)} - c \cos (A)\] We now seek to re-write $FE$. Using the law of cosines: \[FE^2 = AF^2 + AE^ 2- 2AF \cdot AE \cos (A) = \left(c\cos (A) \right)^2 + \left(b\cos (A) \right)^2 - 2 (bc \cos ^2 (A)) \cos (A) = \cos ^2 (A) (c^2 + b^2 - 2bc \cos (A)) = \cos ^2 (A) \cdot a^2\] Therefore, \[FE = a \cos (A)\] Putting this all together, we see that: \[a \cos (A) = \frac{r_a}{\tan \left(\frac{a}{2} \right)} - b \cos (A) + \frac{r_a}{\tan \left(\frac{a}{2} \right)} - c \cos (A) \Longleftrightarrow\] \[(a+b+c) \cos (A) = \frac{2r_a}{\tan \left(\frac{a}{2} \right)}\] Now, we seek to write $\tan \left(\frac{a}{2} \right)$ in terms of the side lengths of the triangle. Notice that: \[2\cos ^2 \left(\frac{A}{2} \right)-1 = \cos (A) \Longleftrightarrow\] \[2\cos ^2 \left(\frac{A}{2} \right) = 1 + \frac{b^2 + c^2-a^2}{2bc} = \frac{b^2 + 2bc + c^2 - a^2}{2bc} = \frac{(b+c)^2-a^2}{2bc} = \frac{(a+b+c)(b+c-a)}{2bc} = \frac{(2s)(2s-2a)}{2bc}\] where $s$ is the semi-perimeter. We get that: \[\cos \left(\frac{A}{2} \right) = \sqrt{\frac{s(s-a)}{bc}}\] Using the fact that $\cos^2 \left(\frac{A}{2} \right) + \sin^2 \left(\frac{A}{2} \right) = 1$, we have that: \[\sin^2 \left(\frac{A}{2} \right) = 1-\frac{b^2 + 2bc + c^2 - a^2}{4bc} = \frac{(b-c)^2 - a^2}{4bc} = \frac{(2s-2c)(2s-2b)}{4bc}\] Therefore, \[\tan \left( \frac{A}{2} \right) = \sqrt{ \frac{(s-b)(s-c)}{s(s-a)} }\] Returning to our original problem: \[\frac{2r_a}{\sqrt{ \frac{(s-b)(s-c)}{s(s-a)} }} = (a+b+c) \cos (A)\] It is a well-known fact that $r_a = \sqrt{\frac{s(s-b)(s-c)}{s-a}}$, so: \[\frac{2\sqrt{\frac{s(s-b)(s-c)}{s-a}}}{\sqrt{ \frac{(s-b)(s-c)}{s(s-a)} }} = 2s \cos (A)\] which implies that: \[\cos (A) =1 \Longleftrightarrow A = 0\] which is a contradiction. Hence, our original assumption that $EF$ is tangent to the a-excircle is incorrect. $\blacksquare$ ~AopsUser101
// Block 1 /* Geogebra to Asymptote conversion, documentation at artofproblemsolving.com/Wiki go to User:Azjps/geogebra */ import graph; size(10cm); real labelscalefactor = 0.5; /* changes label-to-point distance */ pen dps = linewidth(0.7) + fontsize(10); defaultpen(dps); /* default pen style */ pen dotstyle = black; /* point style */ real xmin = 0.92, xmax = 28.12, ymin = -14.66, ymax = 5.16; /* image dimensions */ pen rvwvcq = rgb(0.08235294117647059,0.396078431372549,0.7529411764705882); pen wvvxds = rgb(0.396078431372549,0.3411764705882353,0.8235294117647058); pen sexdts = rgb(0.1803921568627451,0.49019607843137253,0.19607843137254902); /* draw figures */ draw((3.52,1.38)--(5.8,-4.7), linewidth(1) + rvwvcq); draw((5.8,-4.7)--(10.3,-4.9), linewidth(1) + wvvxds); draw((10.3,-4.9)--(3.52,1.38), linewidth(1) + rvwvcq); draw(circle((9.325581455949688,-7.26800412402583), 2.399418339060914), linewidth(1) + sexdts); draw((5.8,-4.7)--(7.0789360558927,-8.1104961490472), linewidth(1) + rvwvcq); draw((10.3,-4.9)--(10.956076160142976,-5.507692962492314), linewidth(1) + rvwvcq); draw((8.503617697888226,-3.2360942688404215)--(6.711506849315068,-7.130684931506849), linewidth(1) + wvvxds); /* dots and labels */ dot((3.52,1.38),dotstyle); label("$A$", (3.6,1.58), NE * labelscalefactor); dot((5.8,-4.7),dotstyle); label("$B$", (5.88,-4.5), NE * labelscalefactor); dot((10.3,-4.9),dotstyle); label("$C$", (10.38,-4.7), NE * labelscalefactor); dot((9.325581455949688,-7.26800412402583),dotstyle); label("$I_a$", (9.4,-7.06), NE * labelscalefactor); dot((7.0789360558927,-8.1104961490472),linewidth(4pt) + dotstyle); label("$G$", (7.16,-7.96), NE * labelscalefactor); dot((10.956076160142976,-5.507692962492314),linewidth(4pt) + dotstyle); label("$H$", (11.04,-5.34), NE * labelscalefactor); dot((8.503617697888226,-3.2360942688404215),dotstyle); label("E", (8.58,-3.04), NE * labelscalefactor); dot((6.711506849315068,-7.130684931506849),dotstyle); label("$F$", (6.8,-6.94), NE * labelscalefactor); dot((7.139200885553699,-6.201226130819783),dotstyle); label("$X$", (7.22,-6), NE * labelscalefactor); clip((xmin,ymin)--(xmin,ymax)--(xmax,ymax)--(xmax,ymin)--cycle); /* end of picture */ // Block 2 /* Geogebra to Asymptote conversion, documentation at artofproblemsolving.com/Wiki go to User:Azjps/geogebra */ import graph; size(10cm); real labelscalefactor = 0.5; /* changes label-to-point distance */ pen dps = linewidth(0.7) + fontsize(10); defaultpen(dps); /* default pen style */ pen dotstyle = black; /* point style */ real xmin = 0.92, xmax = 28.12, ymin = -14.66, ymax = 5.16; /* image dimensions */ pen rvwvcq = rgb(0.08235294117647059,0.396078431372549,0.7529411764705882); pen wvvxds = rgb(0.396078431372549,0.3411764705882353,0.8235294117647058); pen sexdts = rgb(0.1803921568627451,0.49019607843137253,0.19607843137254902); /* draw figures */ draw((3.52,1.38)--(5.8,-4.7), linewidth(1) + rvwvcq); draw((5.8,-4.7)--(10.3,-4.9), linewidth(1) + wvvxds); draw((10.3,-4.9)--(3.52,1.38), linewidth(1) + rvwvcq); draw(circle((9.325581455949688,-7.26800412402583), 2.399418339060914), linewidth(1) + sexdts); draw((5.8,-4.7)--(7.0789360558927,-8.1104961490472), linewidth(1) + rvwvcq); draw((10.3,-4.9)--(10.956076160142976,-5.507692962492314), linewidth(1) + rvwvcq); draw((8.503617697888226,-3.2360942688404215)--(6.711506849315068,-7.130684931506849), linewidth(1) + wvvxds); /* dots and labels */ dot((3.52,1.38),dotstyle); label("$A$", (3.6,1.58), NE * labelscalefactor); dot((5.8,-4.7),dotstyle); label("$B$", (5.88,-4.5), NE * labelscalefactor); dot((10.3,-4.9),dotstyle); label("$C$", (10.38,-4.7), NE * labelscalefactor); dot((9.325581455949688,-7.26800412402583),dotstyle); label("$I_a$", (9.4,-7.06), NE * labelscalefactor); dot((7.0789360558927,-8.1104961490472),linewidth(4pt) + dotstyle); label("$G$", (7.16,-7.96), NE * labelscalefactor); dot((10.956076160142976,-5.507692962492314),linewidth(4pt) + dotstyle); label("$H$", (11.04,-5.34), NE * labelscalefactor); dot((8.503617697888226,-3.2360942688404215),dotstyle); label("E", (8.58,-3.04), NE * labelscalefactor); dot((6.711506849315068,-7.130684931506849),dotstyle); label("$F$", (6.8,-6.94), NE * labelscalefactor); dot((7.139200885553699,-6.201226130819783),dotstyle); label("$X$", (7.22,-6), NE * labelscalefactor); clip((xmin,ymin)--(xmin,ymax)--(xmax,ymax)--(xmax,ymin)--cycle); /* end of picture */
[]
15
Consider an $n$-by-$n$ board of unit squares for some odd positive integer $n$. We say that a collection $C$ of identical dominoes is a maximal grid-aligned configuration on the board if $C$ consists of $(n^2-1)/2$ dominoes where each domino covers exactly two neighboring squares and the dominoes don't overlap: $C$ then covers all but one square on the board. We are allowed to slide (but not rotate) a domino on the board to cover the uncovered square, resulting in a new maximal grid-aligned configuration with another square uncovered. Let $k(C)$ be the number of distinct maximal grid-aligned configurations obtainable from $C$ by repeatedly sliding dominoes. Find the maximum value of $k(C)$ as a function of $n$.
2023 USAJMO Problem 3
To start off, we put the initial non-covered square in a corner (marked by the shaded square). Let's consider what happens when our first domino slides over the empty square. We will call such a move where we slide a domino over the uncovered square a "step": When the vertically-oriented domino above the shaded square moved down to cover the shaded square, it had uncovered a new square two squares above the original one. Next, we consider the second another direction the uncovered square can move to: In this case, the horizontally-oriented domino besides the shaded square moved to cover the previous shaded square. The new uncovered square, as a result, would be either two squares to the left, or to the right of the previous shaded square. So, to summarize, during each "move", the uncovered square can move either two steps up, down, left, or right. We can make a path for which the shaded square takes: We put the original shaded square was in the corner, so, the possible number of squares that cound be uncovered is $\left(\dfrac{n+1}{2}\right)^2 = \frac{n^2+2n+1}{4}$, all of which can be connected by a single path. Let those $\frac{n^2+2n+1}{4}$ belong to a set $S$ of squares. If the initial uncovered square was not an element of $S$, then it could either be $1$ or $\sqrt{2}$ away from a square in $S$. If the initial square was a distance of $1$ from a element of $S$, then there would be $\left(\dfrac{n+1}{2}\right)\left(\dfrac{n-1}{2}\right)$ possible uncovered squares: If the initial square was a distance of $\sqrt{2}$ away from a square in $S$, then there would be $\left(\dfrac{n-1}{2}\right)^2$ possible squares that could be uncovered: So, that means the maximal number of squares that can be uncovered is $\frac{n^2+2n+1}{4}$, thus making a maxmial of $k(C)=\boxed{\frac{n^2+2n+1}{4}}$ achievable configurations from $C$ ($C$'s uncovered square must belong in $S$). ~ sml1809 Remark: I believe that this solution does not address the problem when two configurations lead to the same placement of the uncovered square. To address this problem, we can prove that the paths don't make a cycle, ~bebebe
// Block 1 size(5cm); draw((0,0)--(0,3.2)); draw((1,0)--(1,3.2)); draw((0,0)--(1.2,0)); draw((0,1)--(1.2,1)); draw((0,2)--(1.2,2)); draw((0,3)--(1.2,3)); fill(origin--(1,0)--(1,1)--(0,1)--cycle, grey); draw((0.1,1.1)--(0.1,2.9)--(0.9,2.9)--(0.9,1.1)--cycle,dashed); draw((0.1,0.1)--(0.1,1.9)--(0.9,1.9)--(0.9,0.1)--cycle); // Block 2 size(5cm); draw((0,0)--(0,3.2)); draw((1,0)--(1,3.2)); draw((0,0)--(1.2,0)); draw((0,1)--(1.2,1)); draw((0,2)--(1.2,2)); draw((0,3)--(1.2,3)); fill((0,2)--(1,2)--(1,3)--(0,3)--cycle, grey); draw((0.1,2.9)--(0.1,2.1)--(1.9,2.1)--(1.9,2.9)--cycle); draw((1.1,2.9)--(1.1,2.1)--(2.9,2.1)--(2.9,2.9)--cycle,dashed); draw((0.1,0.1)--(0.1,1.9)--(0.9,1.9)--(0.9,0.1)--cycle); // Block 3 size(5cm); draw((0,0)--(0,5)); draw((1,0)--(1,5)); draw((2,0)--(2,5)); draw((3,0)--(3,5)); draw((4,0)--(4,5)); draw((5,0)--(5,5)); draw((0,0)--(5,0)); draw((0,1)--(5,1)); draw((0,2)--(5,2)); draw((0,3)--(5,3)); draw((0,4)--(5,4)); draw((0,5)--(5,5)); draw((0.5,0.5)--(0.5,2.5)--(2.5,2.5)--(2.5,0.5)--(4.5,0.5)--(4.5,2.5)--(4.5,4.5)--(2.5,4.5)--(0.5,4.5)); dot((0.5,0.5)); dot((0.5,2.5)); dot((2.5,2.5)); dot((2.5,0.5)); dot((4.5,0.5)); dot((4.5,2.5)); dot((4.5,4.5)); dot((2.5,4.5)); dot((0.5,4.5)); // Block 4 draw((0,0)--(0,5)); draw((1,0)--(1,5)); draw((2,0)--(2,5)); draw((3,0)--(3,5)); draw((4,0)--(4,5)); draw((5,0)--(5,5)); draw((0,0)--(5,0)); draw((0,1)--(5,1)); draw((0,2)--(5,2)); draw((0,3)--(5,3)); draw((0,4)--(5,4)); draw((0,5)--(5,5)); dot((0.5,1.5)); dot((0.5,3.5)); dot((2.5,1.5)); dot((2.5,3.5)); dot((4.5,1.5)); dot((4.5,3.5)); // Block 5 draw((0,0)--(0,5)); draw((1,0)--(1,5)); draw((2,0)--(2,5)); draw((3,0)--(3,5)); draw((4,0)--(4,5)); draw((5,0)--(5,5)); draw((0,0)--(5,0)); draw((0,1)--(5,1)); draw((0,2)--(5,2)); draw((0,3)--(5,3)); draw((0,4)--(5,4)); draw((0,5)--(5,5)); dot((1.5,1.5)); dot((1.5,3.5)); dot((3.5,1.5)); dot((3.5,3.5)); // Block 6 size(5cm); draw((0,0)--(0,3.2)); draw((1,0)--(1,3.2)); draw((0,0)--(1.2,0)); draw((0,1)--(1.2,1)); draw((0,2)--(1.2,2)); draw((0,3)--(1.2,3)); fill(origin--(1,0)--(1,1)--(0,1)--cycle, grey); draw((0.1,1.1)--(0.1,2.9)--(0.9,2.9)--(0.9,1.1)--cycle,dashed); draw((0.1,0.1)--(0.1,1.9)--(0.9,1.9)--(0.9,0.1)--cycle); // Block 7 size(5cm); draw((0,0)--(0,3.2)); draw((1,0)--(1,3.2)); draw((0,0)--(1.2,0)); draw((0,1)--(1.2,1)); draw((0,2)--(1.2,2)); draw((0,3)--(1.2,3)); fill((0,2)--(1,2)--(1,3)--(0,3)--cycle, grey); draw((0.1,2.9)--(0.1,2.1)--(1.9,2.1)--(1.9,2.9)--cycle); draw((1.1,2.9)--(1.1,2.1)--(2.9,2.1)--(2.9,2.9)--cycle,dashed); draw((0.1,0.1)--(0.1,1.9)--(0.9,1.9)--(0.9,0.1)--cycle); // Block 8 size(5cm); draw((0,0)--(0,5)); draw((1,0)--(1,5)); draw((2,0)--(2,5)); draw((3,0)--(3,5)); draw((4,0)--(4,5)); draw((5,0)--(5,5)); draw((0,0)--(5,0)); draw((0,1)--(5,1)); draw((0,2)--(5,2)); draw((0,3)--(5,3)); draw((0,4)--(5,4)); draw((0,5)--(5,5)); draw((0.5,0.5)--(0.5,2.5)--(2.5,2.5)--(2.5,0.5)--(4.5,0.5)--(4.5,2.5)--(4.5,4.5)--(2.5,4.5)--(0.5,4.5)); dot((0.5,0.5)); dot((0.5,2.5)); dot((2.5,2.5)); dot((2.5,0.5)); dot((4.5,0.5)); dot((4.5,2.5)); dot((4.5,4.5)); dot((2.5,4.5)); dot((0.5,4.5)); // Block 9 draw((0,0)--(0,5)); draw((1,0)--(1,5)); draw((2,0)--(2,5)); draw((3,0)--(3,5)); draw((4,0)--(4,5)); draw((5,0)--(5,5)); draw((0,0)--(5,0)); draw((0,1)--(5,1)); draw((0,2)--(5,2)); draw((0,3)--(5,3)); draw((0,4)--(5,4)); draw((0,5)--(5,5)); dot((0.5,1.5)); dot((0.5,3.5)); dot((2.5,1.5)); dot((2.5,3.5)); dot((4.5,1.5)); dot((4.5,3.5)); // Block 10 draw((0,0)--(0,5)); draw((1,0)--(1,5)); draw((2,0)--(2,5)); draw((3,0)--(3,5)); draw((4,0)--(4,5)); draw((5,0)--(5,5)); draw((0,0)--(5,0)); draw((0,1)--(5,1)); draw((0,2)--(5,2)); draw((0,3)--(5,3)); draw((0,4)--(5,4)); draw((0,5)--(5,5)); dot((1.5,1.5)); dot((1.5,3.5)); dot((3.5,1.5)); dot((3.5,3.5));
[]
16
Let $ABCD$ be a cyclic quadrilateral with $AB = 7$ and $CD = 8$. Points $P$ and $Q$ are selected on segment $AB$ such that $AP = BQ = 3$. Points $R$ and $S$ are selected on segment $CD$ such that $CR = DS = 2$. Prove that $PQRS$ is a cyclic quadrilateral.
2024 USAJMO Problem 1
First, let $E$ and $F$ be the midpoints of $AB$ and $CD$, respectively. It is clear that $AE=BE=3.5$, $PE=QE=0.5$, $DF=CF=4$, and $SF=RF=2$. Also, let $O$ be the circumcenter of $ABCD$. By properties of cyclic quadrilaterals, we know that the circumcenter of a cyclic quadrilateral is the intersection of its sides' perpendicular bisectors. This implies that $OE\perp AB$ and $OF\perp CD$. Since $E$ and $F$ are also bisectors of $PQ$ and $RS$, respectively, if $PQRS$ is indeed a cyclic quadrilateral, then its circumcenter is also at $O$. Thus, it suffices to show that $OP=OQ=OR=OS$. Notice that $PE=QE$, $EO=EO$, and $\angle QEO=\angle PEO=90^\circ$. By SAS congruency, $\Delta QOE\cong\Delta POE\implies QO=PO$. Similarly, we find that $\Delta SOF\cong\Delta ROF$ and $OS=OR$. We now need only to show that these two pairs are equal to each other. Draw the segments connecting $O$ to $B$, $Q$, $C$, and $R$. Also, let $r$ be the circumradius of $ABCD$. This means that $AO=BO=CO=DO=r$. Recall that $\angle BEO=90^\circ$ and $\angle CFO=90^\circ$. Notice the several right triangles in our figure. Let us apply Pythagorean Theorem on $\Delta BEO$. We can see that $EO^2+EB^2=BO^2\implies EO^2+3.5^2=r^2\implies EO=\sqrt{r^2-12.25}.$ Let us again apply Pythagorean Theorem on $\Delta QEO$. We can see that $QE^2+EO^2=QO^2\implies0.5^2+r^2-12.25=QO^2\implies QO=\sqrt{r^2-12}.$ Let us apply Pythagorean Theorem on $\Delta CFO$. We get $CF^2+OF^2=OC^2\implies4^2+OF^2=r^2\implies OF=\sqrt{r^2-16}$. We finally apply Pythagorean Theorem on $\Delta RFO$. This becomes $OF^2+FR^2=OR^2\implies r^2-16+2^2=OR^2\implies OR=\sqrt{r^2-12}$. This is the same expression as we got for $QO$. Thus, $OQ=OR$, and recalling that $OQ=OP$ and $OR=OS$, we have shown that $OP=OQ=OR=OS$, and we are done. ~Technodoggo
// Block 1 /* Geogebra to Asymptote conversion, documentation at artofproblemsolving.com/wiki/User:Azjps/geogebra */ import graph; size(12cm); real labelscalefactor = 0.5; /* changes label-to-point distance */ pen dps = linewidth(0.7) + fontsize(10); defaultpen(dps); /* default pen style */ pen dotstyle = black; /* point style */ real xmin = -12.19, xmax = 24.94, ymin = -15.45, ymax = 6.11; /* image dimensions */ pen wrwrwr = rgb(0.38,0.38,0.38); /* draw figures */ draw(circle((2.92,-3.28), 5.90), linewidth(2) + wrwrwr); draw((-2.52,-1.01)--(3.46,2.59), linewidth(2) + wrwrwr); draw((7.59,-6.88)--(-0.29,-8.22), linewidth(2) + wrwrwr); draw((3.46,2.59)--(7.59,-6.88), linewidth(2) + wrwrwr); draw((-0.29,-8.22)--(-2.52,-1.01), linewidth(2) + wrwrwr); draw((0.03,0.52)--(1.67,-7.89), linewidth(2) + wrwrwr); draw((5.61,-7.22)--(0.89,1.04), linewidth(2) + wrwrwr); /* dots and labels */ dot((2.92,-3.28),dotstyle); label("$O$", (2.43,-3.56), NE * labelscalefactor); dot((-2.52,-1.01),dotstyle); label("$A$", (-2.91,-0.91), NE * labelscalefactor); dot((3.46,2.59),linewidth(4pt) + dotstyle); label("$B$", (3.49,2.78), NE * labelscalefactor); dot((7.59,-6.88),dotstyle); label("$C$", (7.82,-7.24), NE * labelscalefactor); dot((-0.29,-8.22),linewidth(4pt) + dotstyle); label("$D$", (-0.53,-8.62), NE * labelscalefactor); dot((0.03,0.52),linewidth(4pt) + dotstyle); label("$P$", (-0.13,0.67), NE * labelscalefactor); dot((0.89,1.04),linewidth(4pt) + dotstyle); label("$Q$", (0.62,1.16), NE * labelscalefactor); dot((5.61,-7.22),linewidth(4pt) + dotstyle); label("$R$", (5.70,-7.05), NE * labelscalefactor); dot((1.67,-7.89),linewidth(4pt) + dotstyle); label("$S$", (1.75,-7.73), NE * labelscalefactor); dot((0.46,0.78),linewidth(4pt) + dotstyle); label("$E$", (0.26,0.93), NE * labelscalefactor); dot((3.64,-7.55),linewidth(4pt) + dotstyle); label("$F$", (3.73,-7.39), NE * labelscalefactor); clip((xmin,ymin)--(xmin,ymax)--(xmax,ymax)--(xmax,ymin)--cycle); // Block 2 /* Geogebra to Asymptote conversion, documentation at artofproblemsolving.com/wiki/User:Azjps/geogebra */ import graph; size(12cm); real labelscalefactor = 0.5; /* changes label-to-point distance */ pen dps = linewidth(0.7) + fontsize(10); defaultpen(dps); /* default pen style */ pen dotstyle = black; /* point style */ real xmin = -12.19, xmax = 24.94, ymin = -15.45, ymax = 6.11; /* image dimensions */ pen wrwrwr = rgb(0.38,0.38,0.38); /* draw figures */ draw(circle((2.92,-3.28), 5.90), linewidth(2) + wrwrwr); draw((-2.52,-1.01)--(3.46,2.59), linewidth(2) + wrwrwr); draw((7.59,-6.88)--(-0.29,-8.22), linewidth(2) + wrwrwr); draw((3.46,2.59)--(7.59,-6.88), linewidth(2) + wrwrwr); draw((-0.29,-8.22)--(-2.52,-1.01), linewidth(2) + wrwrwr); draw((0.03,0.52)--(1.67,-7.89), linewidth(2) + wrwrwr); draw((5.61,-7.22)--(0.89,1.04), linewidth(2) + wrwrwr); draw((0.46,0.78)--(2.92,-3.28), linewidth(2) + wrwrwr); draw((2.92,-3.28)--(3.64,-7.55), linewidth(2) + wrwrwr); draw((2.92,-3.28)--(7.59,-6.88), linewidth(2) + wrwrwr); draw((5.61,-7.22)--(2.92,-3.28), linewidth(2) + wrwrwr); draw((2.92,-3.28)--(3.46,2.59), linewidth(2) + wrwrwr); draw((2.92,-3.28)--(0.89,1.04), linewidth(2) + wrwrwr); /* dots and labels */ dot((2.92,-3.28),dotstyle); label("$O$", (2.43,-3.56), NE * labelscalefactor); dot((-2.52,-1.01),dotstyle); label("$A$", (-2.91,-0.91), NE * labelscalefactor); dot((3.46,2.59),linewidth(1pt) + dotstyle); label("$B$", (3.49,2.78), NE * labelscalefactor); dot((7.59,-6.88),dotstyle); label("$C$", (7.82,-7.24), NE * labelscalefactor); dot((-0.29,-8.22),linewidth(1pt) + dotstyle); label("$D$", (-0.53,-8.62), NE * labelscalefactor); dot((0.03,0.52),linewidth(1pt) + dotstyle); label("$P$", (-0.13,0.67), NE * labelscalefactor); dot((0.89,1.04),linewidth(1pt) + dotstyle); label("$Q$", (0.62,1.16), NE * labelscalefactor); dot((5.61,-7.22),linewidth(1pt) + dotstyle); label("$R$", (5.70,-7.05), NE * labelscalefactor); dot((1.67,-7.89),linewidth(1pt) + dotstyle); label("$S$", (1.75,-7.73), NE * labelscalefactor); dot((0.46,0.78),linewidth(1pt) + dotstyle); label("$E$", (0.26,0.93), NE * labelscalefactor); dot((3.64,-7.55),linewidth(1pt) + dotstyle); label("$F$", (3.73,-7.39), NE * labelscalefactor); clip((xmin,ymin)--(xmin,ymax)--(xmax,ymax)--(xmax,ymin)--cycle); // Block 3 /* Geogebra to Asymptote conversion, documentation at artofproblemsolving.com/wiki/User:Azjps/geogebra */ import graph; size(12cm); real labelscalefactor = 0.5; /* changes label-to-point distance */ pen dps = linewidth(0.7) + fontsize(10); defaultpen(dps); /* default pen style */ pen dotstyle = black; /* point style */ real xmin = -12.19, xmax = 24.94, ymin = -15.45, ymax = 6.11; /* image dimensions */ pen wrwrwr = rgb(0.38,0.38,0.38); /* draw figures */ draw(circle((2.92,-3.28), 5.90), linewidth(2) + wrwrwr); draw((-2.52,-1.01)--(3.46,2.59), linewidth(2) + wrwrwr); draw((7.59,-6.88)--(-0.29,-8.22), linewidth(2) + wrwrwr); draw((3.46,2.59)--(7.59,-6.88), linewidth(2) + wrwrwr); draw((-0.29,-8.22)--(-2.52,-1.01), linewidth(2) + wrwrwr); draw((0.03,0.52)--(1.67,-7.89), linewidth(2) + wrwrwr); draw((5.61,-7.22)--(0.89,1.04), linewidth(2) + wrwrwr); /* dots and labels */ dot((2.92,-3.28),dotstyle); label("$O$", (2.43,-3.56), NE * labelscalefactor); dot((-2.52,-1.01),dotstyle); label("$A$", (-2.91,-0.91), NE * labelscalefactor); dot((3.46,2.59),linewidth(4pt) + dotstyle); label("$B$", (3.49,2.78), NE * labelscalefactor); dot((7.59,-6.88),dotstyle); label("$C$", (7.82,-7.24), NE * labelscalefactor); dot((-0.29,-8.22),linewidth(4pt) + dotstyle); label("$D$", (-0.53,-8.62), NE * labelscalefactor); dot((0.03,0.52),linewidth(4pt) + dotstyle); label("$P$", (-0.13,0.67), NE * labelscalefactor); dot((0.89,1.04),linewidth(4pt) + dotstyle); label("$Q$", (0.62,1.16), NE * labelscalefactor); dot((5.61,-7.22),linewidth(4pt) + dotstyle); label("$R$", (5.70,-7.05), NE * labelscalefactor); dot((1.67,-7.89),linewidth(4pt) + dotstyle); label("$S$", (1.75,-7.73), NE * labelscalefactor); dot((0.46,0.78),linewidth(4pt) + dotstyle); label("$E$", (0.26,0.93), NE * labelscalefactor); dot((3.64,-7.55),linewidth(4pt) + dotstyle); label("$F$", (3.73,-7.39), NE * labelscalefactor); clip((xmin,ymin)--(xmin,ymax)--(xmax,ymax)--(xmax,ymin)--cycle); // Block 4 /* Geogebra to Asymptote conversion, documentation at artofproblemsolving.com/wiki/User:Azjps/geogebra */ import graph; size(12cm); real labelscalefactor = 0.5; /* changes label-to-point distance */ pen dps = linewidth(0.7) + fontsize(10); defaultpen(dps); /* default pen style */ pen dotstyle = black; /* point style */ real xmin = -12.19, xmax = 24.94, ymin = -15.45, ymax = 6.11; /* image dimensions */ pen wrwrwr = rgb(0.38,0.38,0.38); /* draw figures */ draw(circle((2.92,-3.28), 5.90), linewidth(2) + wrwrwr); draw((-2.52,-1.01)--(3.46,2.59), linewidth(2) + wrwrwr); draw((7.59,-6.88)--(-0.29,-8.22), linewidth(2) + wrwrwr); draw((3.46,2.59)--(7.59,-6.88), linewidth(2) + wrwrwr); draw((-0.29,-8.22)--(-2.52,-1.01), linewidth(2) + wrwrwr); draw((0.03,0.52)--(1.67,-7.89), linewidth(2) + wrwrwr); draw((5.61,-7.22)--(0.89,1.04), linewidth(2) + wrwrwr); draw((0.46,0.78)--(2.92,-3.28), linewidth(2) + wrwrwr); draw((2.92,-3.28)--(3.64,-7.55), linewidth(2) + wrwrwr); draw((2.92,-3.28)--(7.59,-6.88), linewidth(2) + wrwrwr); draw((5.61,-7.22)--(2.92,-3.28), linewidth(2) + wrwrwr); draw((2.92,-3.28)--(3.46,2.59), linewidth(2) + wrwrwr); draw((2.92,-3.28)--(0.89,1.04), linewidth(2) + wrwrwr); /* dots and labels */ dot((2.92,-3.28),dotstyle); label("$O$", (2.43,-3.56), NE * labelscalefactor); dot((-2.52,-1.01),dotstyle); label("$A$", (-2.91,-0.91), NE * labelscalefactor); dot((3.46,2.59),linewidth(1pt) + dotstyle); label("$B$", (3.49,2.78), NE * labelscalefactor); dot((7.59,-6.88),dotstyle); label("$C$", (7.82,-7.24), NE * labelscalefactor); dot((-0.29,-8.22),linewidth(1pt) + dotstyle); label("$D$", (-0.53,-8.62), NE * labelscalefactor); dot((0.03,0.52),linewidth(1pt) + dotstyle); label("$P$", (-0.13,0.67), NE * labelscalefactor); dot((0.89,1.04),linewidth(1pt) + dotstyle); label("$Q$", (0.62,1.16), NE * labelscalefactor); dot((5.61,-7.22),linewidth(1pt) + dotstyle); label("$R$", (5.70,-7.05), NE * labelscalefactor); dot((1.67,-7.89),linewidth(1pt) + dotstyle); label("$S$", (1.75,-7.73), NE * labelscalefactor); dot((0.46,0.78),linewidth(1pt) + dotstyle); label("$E$", (0.26,0.93), NE * labelscalefactor); dot((3.64,-7.55),linewidth(1pt) + dotstyle); label("$F$", (3.73,-7.39), NE * labelscalefactor); clip((xmin,ymin)--(xmin,ymax)--(xmax,ymax)--(xmax,ymin)--cycle);
[]
17
A given convex pentagon $ABCDE$ has the property that the area of each of the five triangles $ABC$, $BCD$, $CDE$, $DEA$, and $EAB$ is unity. Show that all pentagons with the above property have the same area, and calculate that area. Show, furthermore, that there are infinitely many non-congruent pentagons having the above area property.
1972 USAMO Problem 5
Lemma: Convex pentagon $A_0A_1A_2A_3A_4$ has the property that $[A_0A_1A_2] = [A_1A_2A_3] = [A_2A_3A_4] = [A_3A_4A_0] = [A_4A_0A_1]$ if and only if $\overline{A_{n - 1}A_{n + 1}}\parallel\overline{A_{n - 2}A_{n + 2}}$ for $n = 0, 1, 2, 3, 4$ (indices taken mod 5). Proof: For the "only if" direction, since $[A_0A_1A_2] = [A_1A_2A_3]$, $A_0$ and $A_3$ are equidistant from $\overline{A_1A_2}$, and since the pentagon is convex, $\overline{A_0A_3}\parallel\overline{A_1A_2}$. The other four pairs of parallel lines are established by a symmetrical argument, and the proof for the other direction is just this, but reversed. Let $A'B'C'D'E'$ be the inner pentagon, labeled so that $A$ and $A'$ are opposite each other, and let $a, b, c, d, e$ be the side lengths of the inner pentagon labeled opposite their corresponding vertices. From the lemma, pentagon $A'B'C'D'E'$ is similar to pentagon $ABCDE$ with $AB = m(A'B')$ and parallelogram $ABCB'$ (and cyclic) has area 2. Supposing \begin{align*} P &= [ABCDE] \\ Q &= [A'B'C'D'E'] \\ R &= \sum_{\text{cyc}}[AC'D'] \\ S &= \sum_{\text{cyc}}[ABD'], \end{align*} we have \begin{align*} \sum_{\text{cyc}}[ABCB'] &= 5Q + 3R + 2S \\ 10 &= 3Q + R + 2P. \end{align*} Since $BCDC'$ and $CDED'$ are parallelograms, $BD' = EC' = (m - 1)a$. Triangle $EB'C'$ is similar to triangle $ECB$, so $me = BC = \left(\frac{2m - 1}{m - 1}\right)e$, and with the requirement that $m > 1$, \[m = \frac{2m - 1}{m - 1}\Rightarrow m = \frac{3 + \sqrt{5}}{2}.\] Now, we compute that $[AC'D'] = \frac{1}{2m - 1} = \sqrt{5} - 2$, and similar computation for the other four triangles gives $R = 5\sqrt{5} - 10$. From the aforementioned pentagon similarity, $Q = P/m^2 = \left(\frac{7 - 3\sqrt{5}}{2}\right)P$. Solving for $P$, we have \begin{align*} 10 &= 3\left(\frac{7 - 3\sqrt{5}}{2}\right)P + (5\sqrt{5} - 10) + 2P \\ 20 - 5\sqrt{5} &= \left(\frac{25 - 9\sqrt{5}}{2}\right)P \\ P &= \frac{40 - 10\sqrt{5}}{25 - 9\sqrt{5}} \\ &= \frac{5 + \sqrt{5}}{2}. \end{align*} To show that there are infinitely many pentagons with the given property, we start with triangle $A'B'C'$ and construct the original pentagon using the required length ratios. This triangle has three continuous degrees of freedom, and the condition that the equal areas be specifically unity means that there are two continuous degrees of freedom in which the configuration can vary, which implies the desired result. Alternatively, one can shear a regular pentagon, a transformation which preserves areas and the property of a pair of lines being parallel.
// Block 1 size(120); defaultpen(fontsize(10)); pathpen = black; pair A=MP("A",dir(90),dir(90)), B=MP("B",dir(90-72),dir(90-72)), C=MP("C",dir(90-2*72),dir(90-2*72)), D=MP("D",dir(90-3*72),dir(90-3*72)), E=MP("E",dir(90-4*72),dir(90-4*72)); D(A--B--C--D--E--cycle); D(A--C--E--B--D--cycle); pair Ap = MP("A'",IP(B--D,C--E),dir(270)), Bp = MP("B'",IP(A--D,C--E),dir(270-72)), Cp = MP("C'",IP(A--D,B--E),dir(270-72*2)), Dp = MP("D'",IP(A--C,B--E),dir(270-72*3)), Ep = MP("E'",IP(A--C,B--D),dir(270-72*4)); // Block 2 size(120); defaultpen(fontsize(10)); pathpen = black; pair A=MP("A",dir(90),dir(90)), B=MP("B",dir(90-72),dir(90-72)), C=MP("C",dir(90-2*72),dir(90-2*72)), D=MP("D",dir(90-3*72),dir(90-3*72)), E=MP("E",dir(90-4*72),dir(90-4*72)); D(A--B--C--D--E--cycle); D(A--C--E--B--D--cycle); pair Ap = MP("A'",IP(B--D,C--E),dir(270)), Bp = MP("B'",IP(A--D,C--E),dir(270-72)), Cp = MP("C'",IP(A--D,B--E),dir(270-72*2)), Dp = MP("D'",IP(A--C,B--E),dir(270-72*3)), Ep = MP("E'",IP(A--C,B--D),dir(270-72*4));
[]
18
Consider the two triangles $\triangle ABC$ and $\triangle PQR$ shown in Figure 1. In $\triangle ABC$, $\angle ADB = \angle BDC = \angle CDA = 120^\circ$. Prove that $x=u+v+w$.
1974 USAMO Problem 5
Solution 1 We rotate figure $PRQM$ by a clockwise angle of $\pi/3$ about $Q$ to obtain figure $RR'QM'$: Evidently, $MM'Q$ is an equilateral triangle, so triangles $MRM'$ and $ABC$ are congruent. Also, triangles $PMQ$ and $RM'Q$ are congruent, since they are images of each other under rotations. Then \[[ABC] + \frac{b^2 \sqrt{3}}{4} = [MRM'] + [MM'Q] = [QMR] + [RM'Q] = [QMR] + [PMQ] .\] Then by symmetry, \[3 [ABC] + \frac{(a^2+b^2+c^2)\sqrt{3}}{4} = 2\bigl( [PMQ] + [QMR] + [RMP] \bigr) = 2 [PRQ] .\] But $ABC$ is composed of three smaller triangles. The one with sides $w,v,a$ has area $\tfrac{1}{2} wv \sin 120^\circ = \frac{wv \sqrt{3}}{4}$. Therefore, the area of $ABC$ is \[\frac{(wv+vu+uw)\sqrt{3}}{4} .\] Also, by the Law of Cosines on that small triangle of $ABC$, $a^2 = w^2 + wv+ v^2$, so by symmetry, \[\frac{(a^2 + b^2 + c^2)\sqrt{3}}{4} = \frac{\bigl[2(u^2+w^2+v^2) + wv + vu + uw \bigr] \sqrt{3}}{4}.\] Therefore \begin{align*} \frac{(u+v+w)^2 \sqrt{3}}{2} &= 3 \frac{(wv+vu+uw)\sqrt{3}}{4} + \frac{\bigl[2(u^2+w^2+v^2) + wv + vu + uw \bigr] \sqrt{3}}{4} \\ &= 3 [ABC] + \frac{(a^2+b^2+c^2)\sqrt{3}}{4} = 2[PQR] . \end{align*} But the area of triangle $PQR$ is $x^2 \sqrt{3}/4$. It follows that $u+v+w=x$, as desired. $\blacksquare$ Solution 2 Rotate $\triangle ABC$ $60$ degrees clockwise about $A$ to get $\triangle AB'C'$. Observe that $\triangle ADD'$ is equilateral, which means $D'D=AD=u$. Also, $B',D',D,C$ are collinear because $\angle B'D'A + \angle AD'D = 120+60=180$ and $\angle CDA + \angle DD'A = 120+60=180$. The resulting $\triangle B'AC$ has side lengths $b,c,u+v+w$ and the angle opposite side $u+v+w$ has magnitude $A+60$. If we perform the rotation about points $B$ and $C$, we get two triangles. One has side lengths $a,c,u+v+w$ and the angle opposite side $u+v+w$ has magnitude $B+60$, and the other has side lengths $b,c,u+v+w$ and the angle opposite side $u+v+w$ has magnitude $C+60$. These three triangles fit together because $(A+60)+(B+60)+(C+60) = 360$. The result is an equilateral triangle of side length $u+v+w$. Solution 3 As in the first solution, we rotate and establish that $\triangle MRM' \cong \triangle ABC$. Let $X$ and $Y$ be points on $\overline{RQ}$ and $\overline{PQ}$, respectively, such that $M$ lies on $\overline{XY}$ and $\overline{XY}\parallel \overline{PR}$. We note that $m\angle RXM = 120^\circ$. The rotation then takes $Y$ to $X$, so $m\angle RXM'=m\angle PYM = 120^\circ$. It follows that $RX=BD=v$, $MX=AD=u$, $M'X=CD=w$. Since $m\angle MXM' = 120^\circ$ and $m\angle MQM' = 60^\circ$, $MXM'Q$ is cyclic. By Ptolemy's theorem, \begin{align*} (MX)(M'Q) + (XM')(QM) &= (MM')(XQ) \\ XQ &= MX + M'X \\ &= u+w. \end{align*} Finally, $RQ = RX+XQ = u+v+w$, as desired. Alternate solutions are always welcome. If you have a different, elegant solution to this problem, please add it to this page.
// Block 1 size(300); defaultpen(1); pair P=(7,0), Q=(14,0), R=P+7expi(pi/3), M=(10,1.2); pair RR=R+Q-P, MM= rotate(-60,Q)*M; draw(P--R--RR--Q--P--M--MM--RR); draw(Q--R--M--Q--MM--R); label("$P$",P,W); label("$Q$",Q,E); label("$R$",R,W); label("$M$",M,NW); label("$R'$",RR,NE); label("$M'$",MM,ESE); // Block 2 size(200); defaultpen(fontsize(8)); pair A=6*expi(5/9*pi), B=3*expi(5/9*pi+2*pi/3), C=4*expi(5/9*pi+4*pi/3), D=(0,0); path triabc = D--A--B--C--D--B..A--C; draw(triabc); label("$A$",A,( 0, 1)); label("$B$",B,(-1,-1));label("$b$",(C+A)/2,( 1, 1)); label("$C$",C,( 1,-1));label("$w$",(C+D)/2,( 0, 1)); label("$D$",D,( 1, 1)); transform rot60a = rotate(-60,A); pair A1 = rot60a*A, B1 = rot60a*B, C1 = rot60a*C, D1 = rot60a*D; path triabc1 = D1--A1--B1--C1--D1--B1..A1--C1; draw(triabc1, linetype("8 8")); label("$B'$",B1,(-1, 0));label("$v$",(B1+D1)/2,( 0, 1)); label("$C'$",C1,( 0,-1));label("$c$",(A1+B1)/2,( 0, 1)); label("$D'$",D1,(-1,-1));label("$u$",(D1+D)/2,( 0, -1)); draw(A--B1--C--A, red+1.5); dot(A^^B1^^D1^^D^^C); // Block 3 size(400); defaultpen(fontsize(8)); picture transC; pair A=6*expi(5/9*pi), B=3*expi(5/9*pi+2*pi/3), C=4*expi(5/9*pi+4*pi/3), D=(0,0); path triabc = D--A--B--C--D--B..A--C; draw(triabc); label("$A$",A,( 0, 1));label("$u$",(A+D)/2,( 1, 0)); label("$B$",B,(-1,-1)); label("$C$",C,( 1,-1));label("$c$",(A+B)/2,(-1, 1)); label("$D$",D,( 1, 1)); transform rot60b = rotate(-60,B); pair A1 = rot60b*A, B1 = rot60b*B, C1 = rot60b*C, D1 = rot60b*D; path triabc1 = D1--A1--B1--C1--D1--B1..A1--C1; draw(triabc1, linetype("8 8")); label("$A'$",A1,( 1, 0));label("$a$",(B1+C1)/2,(-1, 0)); label("$C'$",C1,( 0,-1));label("$w$",(C1+D1)/2,( 1, 0)); label("$D'$",D1,(-1,-1));label("$v$",(D1+D)/2,( 1, 1)); draw(A--B--C1--A, red+1.5); dot(A^^B^^D1^^D^^C1); draw(transC, triabc); label(transC, "$A$",A,( 0, 1));label(transC, "$a$",(B+C)/2,( 0,-1)); label(transC, "$B$",B,(-1,-1));label(transC, "$v$",(B+D)/2,( 0, 1)); label(transC, "$C$",C,( 1,-1)); label(transC, "$D$",D,( 0,-1)); transform rot60c = rotate(-60,C); pair A2 = rot60c*A, B2 = rot60c*B, C2 = rot60c*C, D2 = rot60c*D; path triabc2 = D2--A2--B2--C2--D2--B2..A2--C2; draw(transC, triabc2, linetype("8 8")); label(transC, "$A'$",A2,( 1, 0));label(transC, "$u$",(A2+D2)/2,( 1,-1)); label(transC, "$b$",(C2+A2)/2,( 1,-1)); label(transC, "$w$",(D+D2)/2,( 1,-1)); label(transC, "$D'$",D2,( 0, 1)); draw(transC, A2--B--C--A2, red+1.5); dot(transC, C^^B^^D2^^D^^A2); add(shift(15*right)*transC); // Block 4 size(300); defaultpen(1); pair P=(7,0), Q=(14,0), R=P+7expi(pi/3), M=(10,1.2); pair RR=R+Q-P, MM= rotate(-60,Q)*M; draw(P--R--RR--Q--P--M--MM--RR); draw(Q--R--M--Q--MM--R); label("$P$",P,W); label("$Q$",Q,E); label("$R$",R,W); label("$M$",M,NW); label("$R'$",RR,NE); label("$M'$",MM,ESE);
[]
19
Let $A,B,C,D$ denote four points in space and $AB$ the distance between $A$ and $B$, and so on. Show that \[AC^2+BD^2+AD^2+BC^2\ge AB^2+CD^2.\]
1975 USAMO Problem 2
Solution 1 If we project points $A,B,C,D$ onto the plane parallel to $\overline{AB}$ and $\overline{CD}$, $AB$ and $CD$ stay the same but $BC, AC, AD, BD$ all decrease, making the inequality sharper. Thus, it suffices to prove the inequality when $A,B,C,D$ are coplanar: Let $AD=a, AC=b, BC=c, BD=d, AB=m, CD=n$. We wish to prove that $a^2+b^2+c^2+d^2\ge m^2+n^2$. Let us fix $\triangle BCD$ and the length $AB$ and let $A$ vary on the circle centered at $B$ with radius $m$. If we find the minimum value of $a^2+b^2$, which is the only variable quantity, and prove that it is larger than $m^2+n^2-c^2-d^2$, we will be done. First, we express $a^2+b^2$ in terms of $c,d,m,\theta,\phi$, using the Law of Cosines: \begin{align*} a^2+b^2 &= c^2+d^2+2m^2-2cm\cos(\theta)-2dm\cos(\phi-\theta) \\ (a^2+b^2-c^2-d^2-2m^2)^2 &= 4m^2(c^2\cos^2(\theta)+d^2\cos^2(\phi-\theta)+2cd\cos(\theta)\cos(\phi-\theta)) \end{align*} $a^2+b^2$ is a function of $\theta$, so we take the derivative with respect to $\theta$ and obtain that $a^2+b^2$ takes a minimum when \begin{align*} c\sin(\theta)-d\sin(\phi-\theta) &= 0 \\ c^2\sin^2(\theta)+d^2\sin^2(\phi-\theta)-2cd\sin(\theta)\sin(\phi-\theta) &= 0 \\ (a^2+b^2-c^2-d^2-2m^2)^2 &= 4m^2(c^2+d^2+2cd(\cos(\theta)\cos(\phi-\theta)-\sin(\theta)\sin(\phi-\theta))) \\ &= 4m^2(c^2+d^2+2cd\cos{\phi})\\ &= 4m^2(2c^2+2d^2-n^2) \end{align*} Define $p=a^2+b^2$ and $q=c^2+d^2$: \begin{align*} (p-q-2m^2)^2 &= 4m^2(2q-n^2) \\ p^2+q^2+4m^4-4m^2p+4m^2q-2pq &= 8m^2q-4m^2n^2 \\ p^2+q^2+4m^4-4m^2p-4m^2q-2pq &= -4m^2n^2 \\ p^2-2pq+q^2-4m^2(p+q) &= -4m^2(m^2+n^2) \\ \frac{(p-q)^2}{m^2} &= p+q-m^2-n^2\geq 0 \\ a^2+b^2+c^2+d^2 &\geq m^2+n^2 \\ \end{align*} Solution 2 Let \begin{align*} A &= (0,0,0) \\ B &= (1,0,0) \\ C &= (a,b,c) \\ D &= (x,y,z). \end{align*} It is clear that every other case can be reduced to this. Then, with the distance formula and expanding, \begin{align*} AC^2 + BD^2 + AD^2 + BC^2 - AB^2 - CD^2 &= x^2-2x+1+y^2+z^2+a^2-2a+b^2+c^2+2ax+2by+2cz \\ &= (x+a-1)^2 + (y+b)^2 + (z+c)^2. \\ &\geq 0, \end{align*} which rearranges to the desired inequality. Solution 3 Because the distances are all squared, we must only prove the result in one dimension, and then we can just add up the three individual inequalities for the $x$, $y$, and $z$ dimension to get the desired result. Let $x_a$, $x_b$, $x_c$, and $x_d$ be the positions of $A$, $B$, $C$, and $D$ respectively. Then we must show that, \begin{align*} (x_a - x_c)^2 + (x_b-x_d)^2 + (x_a - x_d)^2 + (x_b - x_c)^2 &\geq (x_a - x_b)^2 + (x_c-x_d)^2 \\ x_a^2 + x_b^2 + x_c^2 + x_d^2 &\geq 2x_a x_c + 2x_b x_d + 2x_a x_d + 2x_b x_c - 2x_a x_b - 2x_c x_d \\ (x_a + x_b)^2 + (x_c + x_d)^2 &\geq 2(x_a +x_b)(x_c + x_d)\\ (x_a + x_b - x_c - x_d)^2 &\geq 0. \end{align*} So we are done. Solution 4 (Vector bash) Let $a$, $b$, $c$, $d$ correspond to the position vectors of points A, B, C, and D, respectively, with respect to an arbitrary origin O. Let us also for simplicity define $a^2 = a \cdot a = ||a||^2$, where $||a||$ is the magnitude of vector $a$. Because squares are non-negative, $a^2$ is non-negative for all vectors $a$. Thus, \[(a + b - c - d)^2 \ge 0\] Because dot product is linear, we expand to obtain \[a^2 + b^2 + c^2 + d^2 + 2a \cdot b + 2 c \cdot d - 2 a \cdot c - 2 a \cdot d - 2 b \cdot c - 2 c \cdot d \ge 0,\] from which we add $a^2 + b^2 + c^2 + d^2$ to both sides, rearrange, and complete the square to get \[(a-c)^2 + (a-d)^2 + (b-c)^2 + (b-d)^2 \ge (a-b)^2 + (c-d)^2.\] As $(a-b)^2 = ||a-b||^2 = ||AB||^2 = AB^2$ and likewise for the others, \[AC^2 + AD^2 + BC^2 + BD^2 \ge AB^2 + CD^2,\] which is what we wanted to prove. NOTES: 1. Equality holds when the vector equality $a + b = c + d$ holds, which occurs when A, B, C, and D are the vertices of a (planar) parallelogram, in that order. 2. The algebra employed here is almost identical to the algebra used in Solution 3, which means that Solution 3 is just a simplification of this solution. Alternate solutions are always welcome. If you have a different, elegant solution to this problem, please add it to this page.
// Block 1 defaultpen(fontsize(8)); pair A=(2,4), B=(0,0), C=(4,0), D=(4,2); label("A",A,(0,1));label("D",D,(1,0));label("B",B,(-1,-1));label("C",C,(1,-1)); axialshade(A--C--D--cycle, lightgray, A, gray, D); draw(A--B--C--A--D--C);draw(B--D, linetype("8 8")); label("$m$",(A+B)/2,(-1,1));label("$n$",(C+D)/2,(1,0)); label("$c$",(B+C)/2,(0,-1));label("$b$",(A+C)/2,(-1,-1)); label("$a$",(A+D)/2,(1,1));label("$d$",(B+D)/2,(-1,1)); // Block 2 size(200); defaultpen(fontsize(8)); pair A=(8,3), B=(4,-5), C=(10,0), D=(0,0); draw(A--C--B--D--A--B);draw(C--D);draw(anglemark(A,B,D,40));draw(anglemark(C,B,A,55,60)); label("A",A,(0,1));label("D",D,(-1,0));label("B",B,(0,-1));label("C",C,(1,0)); label("$m$",(A+B)/2,(1,0));label("$n$",(C+D)/2,(0,1)); label("$c$",(B+C)/2,(1,-1));label("$b$",(A+C)/2,(-1,-1)); label("$a$",(A+D)/2,(0,1));label("$d$",(B+D)/2,(-1,-1)); label("$\phi-\theta$",anglemark(A,B,D,40),(1,5));label("$\theta$",anglemark(C,B,A,55),(8,9));
[]
20
(a) Suppose that each square of a $4\times 7$ chessboard, as shown above, is colored either black or white. Prove that with any such coloring, the board must contain a rectangle (formed by the horizontal and vertical lines of the board such as the one outlined in the figure) whose four distinct unit corner squares are all of the same color. (b) Exhibit a black-white coloring of a $4\times 6$ board in which the four corner squares of every rectangle, as described above, are not all of the same color.
1976 USAMO Problem 1
There are many ways to prove the first part, we will show one. Consider the first row. It contains at least four cells of the same color, say white. Pick any four such cells. Let's now consider these four columns only. If any of the remaining three rows contains two white cells in some of these columns, we are done. Otherwise, we have the following situation: three rows times four columns, and in each row there is at most one white cell. We can now pick any two rows and then find two columns such that all four cells where they intersect are black, and we are done. (Note that this proof in fact shows that already in a $3\times 7$ board there must be such a rectangle.) For the second part, consider the board shown below. Its six columns contain the six different permutations of two white and two black squares. From this observation it is immediately obvious that no two columns agree on two cells of the same color.
// Block 1 void fillsq(int x, int y){ fill((x,y)--(x+1,y)--(x+1,y+1)--(x,y+1)--cycle, mediumgray); } int i; fillsq(0,0);fillsq(0,1); fillsq(1,0);fillsq(1,2); fillsq(2,0);fillsq(2,3); fillsq(3,1);fillsq(3,2); fillsq(4,1);fillsq(4,3); fillsq(5,2);fillsq(5,3); for(i=0; i<=6; ++i){draw((i,0)--(i,4),black+0.5);} for(i=0; i<=4; ++i){draw((0,i)--(6,i),black+0.5);} // Block 2 void fillsq(int x, int y){ fill((x,y)--(x+1,y)--(x+1,y+1)--(x,y+1)--cycle, mediumgray); } int i; fillsq(0,0);fillsq(0,1); fillsq(1,0);fillsq(1,2); fillsq(2,0);fillsq(2,3); fillsq(3,1);fillsq(3,2); fillsq(4,1);fillsq(4,3); fillsq(5,2);fillsq(5,3); for(i=0; i<=6; ++i){draw((i,0)--(i,4),black+0.5);} for(i=0; i<=4; ++i){draw((0,i)--(6,i),black+0.5);}
[]
20
(a) Suppose that each square of a $4\times 7$ chessboard, as shown above, is colored either black or white. Prove that with any such coloring, the board must contain a rectangle (formed by the horizontal and vertical lines of the board such as the one outlined in the figure) whose four distinct unit corner squares are all of the same color. (b) Exhibit a black-white coloring of a $4\times 6$ board in which the four corner squares of every rectangle, as described above, are not all of the same color.
1976 USAMO Problem 1
We will prove the first part by the pigeonhole principle. To form a rectangle, two squares have in one column have to be colored the same color as the corresponding squares in another column. In the example given, the two second and third squares of the fourth and seventh columns are all white. When coloring this rectangle, every column can be entirely one color, have 3 squares be of one color, or have 2 squares be of one color. Coloring each column with two white squares and two black squares will minimize the number of squares, since a smaller fraction of the column is one color (if more than 2 squares in the same column are the same color, then there is more than one coloring in another column that can create a rectangle). There are ${4}\choose{2}$, or $6$ different ways a column can be colored with two white and two black squares. We need the same coloring in two different columns to create a rectangle, and this is guaranteed with 7 columns by the pigeonhole principle. For the second part, we can draw a rectangle with each column having a different coloring with 2 black and 2 white squares. One such rectangle is shown below: Alternate solutions are always welcome. If you have a different, elegant solution to this problem, please add it to this page.
// Block 1 void fillsq(int x, int y){ fill((x,y)--(x+1,y)--(x+1,y+1)--(x,y+1)--cycle, mediumgray); } int i; fillsq(0,3);fillsq(0,2); fillsq(1,3);fillsq(1,1); fillsq(2,3);fillsq(2,0); fillsq(3,2);fillsq(3,1); fillsq(4,2);fillsq(4,0); fillsq(5,1);fillsq(5,0); for(i=0; i<=6; ++i){draw((i,0)--(i,4),black+0.5);} for(i=0; i<=4; ++i){draw((0,i)--(6,i),black+0.5);} // Block 2 void fillsq(int x, int y){ fill((x,y)--(x+1,y)--(x+1,y+1)--(x,y+1)--cycle, mediumgray); } int i; fillsq(0,3);fillsq(0,2); fillsq(1,3);fillsq(1,1); fillsq(2,3);fillsq(2,0); fillsq(3,2);fillsq(3,1); fillsq(4,2);fillsq(4,0); fillsq(5,1);fillsq(5,0); for(i=0; i<=6; ++i){draw((i,0)--(i,4),black+0.5);} for(i=0; i<=4; ++i){draw((0,i)--(6,i),black+0.5);}
[]
21
$P$ lies between the rays $OA$ and $OB$. Find $Q$ on $OA$ and $R$ on $OB$ collinear with $P$ so that $\frac{1}{PQ} + \frac{1}{PR}$ is as large as possible.
1979 USAMO Problem 4
Let $r = OP, x = \angle OPR, a = \angle POR,$ and $b = \angle POQ.$ Then $\angle ORP = \pi - x - a$ and $\angle OQP = x - b.$ Using the Law of Sines on $\triangle OPR$ gives \[PR = \sin a * \frac{r}{\sin(\pi - x - a)} = \sin a * \frac{r}{\sin(x + a)},\] and using the Law of Sines on $\triangle OPQ$ gives \[PQ = \sin b * \frac{r}{\sin(x - b)}.\] Note that $r, a,$ and $b$ are given constants. Hence, \[\frac{1}{PR} + \frac{1}{PQ} = \frac{1}{r} (\frac{\sin(x + a)}{\sin a} + \frac{\sin(x - b)}{\sin b}) = \frac{\sin(x+a)\sin b + \sin(x-b)\sin a}{r \sin a \sin b} = \frac{\sin x\cos a\sin b + \sin a\cos x\sin b + \sin x\cos b\sin a - \cos x\sin b\sin a}{r \sin a \sin b} = \frac{\sin x(\sin b \cos a + \sin a \cos b)}{r \sin a \sin b}\] Clearly, this quantity is maximized when $\sin x = 1.$ Because $x$ must be less than $\pi$, $\frac{1}{PQ} + \frac{1}{PR}$ is as large as possible when $x = \frac{\pi}{2},$ or when line $QR$ is perpendicular to line $PO$.
// Block 1 pair O = (0,0), A = (14,28), Q = (20,40), B = (16,0), R = (25,0), P = (23,16); dot(O); dot(A); dot(Q); dot(B); dot(R); dot(P); label("O", O, S); label("A", A, W); label("Q", Q, W); label("B", B, S); label("R", R, S); label("P", P, E); draw(O--R--Q--O); draw(O--P); label("r", O--P, N); // Block 2 pair O = (0,0), A = (14,28), Q = (20,40), B = (16,0), R = (25,0), P = (23,16); dot(O); dot(A); dot(Q); dot(B); dot(R); dot(P); label("O", O, S); label("A", A, W); label("Q", Q, W); label("B", B, S); label("R", R, S); label("P", P, E); draw(O--R--Q--O); draw(O--P); label("r", O--P, N);
[]
22
In triangle $ABC$, angle $A$ is twice angle $B$, angle $C$ is obtuse, and the three side lengths $a, b, c$ are integers. Determine, with proof, the minimum possible perimeter.
1991 USAMO Problem 1
Solution 1 (diagram by integralarefun) After drawing the triangle, also draw the angle bisector of $\angle A$, and let it intersect $\overline{BC}$ at $D$. Notice that $\triangle ADC\sim \triangle BAC$, and let $AD=x$. Now from similarity, \[x=\frac{bc}{a}\] However, from the angle bisector theorem, we have \[BD=\frac{ac}{b+c}\] but $\triangle ABD$ is isosceles, so \[x=BD\Longrightarrow \frac{bc}{a}=\frac{ac}{b+c}\Longrightarrow a^2=b(b+c)\] so all sets of side lengths which satisfy the conditions also meet the boxed condition. Notice that $\text{gcd}(a, b, c)=1$ or else we can form a triangle by dividing $a, b, c$ by their greatest common divisor to get smaller integer side lengths, contradicting the perimeter minimality. Since $a$ is squared, $b$ must also be a square because if it isn't, then $b$ must share a common factor with $b+c$, meaning it also shares a common factor with $c$, which means $a, b, c$ share a common factor—a contradiction. Thus we let $b = x^2, b+c = y^2$, so $a = xy$, and we want the minimal pair $(x,y)$. By the Law of Cosines, \[b^2 = a^2 + c^2 - 2ac\cos B\] Substituting $a^2 = b^2 + bc$ yields $\cos B = \frac{b+c}{2a} = \frac{y}{2x}$. Since $\angle C > 90^{\circ}$, $0^{\circ} < \angle B < 30^{\circ} \Longrightarrow \sqrt{3} < \frac{y}{x} < 2$. For $x \le 3$ there are no integer solutions. For $x = 4$, we have $y = 7$ that works, so the side lengths are $(a, b, c)=(28, 16, 33)$ and the minimal perimeter is $\boxed{77}$. Alternate Solution In $\triangle ABC$ let $\angle B = \beta, \angle A = 2\beta, \angle C = 180^{\circ} - 3\beta$. From the law of sines, we have \[\frac{a}{\sin 2\beta} = \frac{b}{\sin \beta} = \frac{c} {\sin (180^{\circ} - 3\beta)} = \frac{c}{\sin 3\beta}\] Thus the ratio \[b : a : c = \sin\beta : \sin 2\beta : \sin 3\beta\] We can simplify \[\frac{\sin 2\beta}{\sin\beta} = \frac{2\sin\beta\cos\beta}{\sin\beta} = 2\cos\beta\] Likewise, \[\frac{\sin 3\beta}{\sin\beta} = \frac{\sin 2\beta\cos\beta + \sin\beta\cos 2\beta}{\sin\beta} = \frac{2\sin\beta\cos^2\beta + \sin\beta(\cos^2\beta - \sin^2\beta)}{\sin\beta}\] \[= {2 \cos^2 \beta + \cos^2 \beta - \sin^2 \beta} = 4\cos^2 \beta - 1\] Letting $\gamma = \cos\beta$, rewrite \[b : a : c = 1 : 2\gamma : 4\gamma^2 - 1\] We find that to satisfy the conditions for an obtuse triangle, $\beta \in (0^\circ, 30^\circ)$ and therefore $\gamma \in \left(\frac{\sqrt{3}}{2}, 1\right)$. The rational number with minimum denominator (in order to minimize scaling to obtain integer solutions) above $\frac{\sqrt{3}}{2}$ is $\frac{7}{8}$, which also has a denominator divisible by 2 (to take advantage of the coefficients of 2 and 4 in the ratio and further minimize scaling). Inserting $\gamma = \frac{7}{8}$ into the ratio, we find $b : a : c = 1 : \frac{7}{4} : \frac{33}{16}$. When scaled minimally to obtain integer side lengths, we find \[b, a, c = 16, 28, 33\] and that the perimeter is $\boxed{77}$. (note by integralarefun: The part of the solution about finding $\gamma$ is not rigorous and would likely require further proof in an actual test.) Alternate solutions are always welcome. If you have a different, elegant solution to this problem, please add it to this page.
import olympiad; pair A, B, C, D, extensionAC; real angleABC; path braceBC; A = (0, 0); B = (2, 0); D = (1, .5); angleABC = atan(.5); //y = 4x/3 and x+2y = 2 (sides AC and BC, respectively) intersect here: C = (6/11, 8/11); braceBC = brace(C, B, .1); label("$\mathsf{A}$", A, W); label("$\mathsf{B}$", B, E); label("$\mathsf{C}$", C, N); label("$\mathsf{D}$", D, S); label("$\mathsf{a}$", braceBC, NE); label("$\mathsf{b}$", A--C, NW); label("$\mathsf{c}$", A--B, S); label("$\mathsf{x}$", A--D, N); draw(A--B--C--cycle); draw(A--D); draw(anglemark(C, B, A)); draw(anglemark(B, A, D)); draw(anglemark(D, A, C)); draw(braceBC);
[]
23
Let $\, D \,$ be an arbitrary point on side $\, AB \,$ of a given triangle $\, ABC, \,$ and let $\, E \,$ be the interior point where $\, CD \,$ intersects the external common tangent to the incircles of triangles $\, ACD \,$ and $\, BCD$. As $\, D \,$ assumes all positions between $\, A \,$ and $\, B \,$, prove that the point $\, E \,$ traces the arc of a circle.
1991 USAMO Problem 5
Let the incircle of $ACD$ and the incircle of $BCD$ touch line $AB$ at points $D_a,D_b$, respectively; let these circles touch $CD$ at $C_a$, $C_b$, respectively; and let them touch their common external tangent containing $E$ at $T_a,T_b$, respectively, as shown in the diagram below. We note that \[CE = CC_a - EC_a = CC_b - EC_b = \frac{CC_a + CC_b - (EC_a + EC_b)}{2} .\] On the other hand, since $EC_a$ and $ET_a$ are tangents from the same point to a common circle, $EC_a = T_aE$, and similarly $EC_b = ET_b$, so \[EC_a + EC_b = T_aE + ET_b = T_a T_b .\] On the other hand, the segments $T_a T_b$ and $D_a D_b$ evidently have the same length, and $D_a D_b = D_aD + DD_b$, so $EC_a + EC_b = D_aD + DD_b$. Thus \[CE = \frac{CC_a + CC_b - (EC_a + EC_b)}{2} = \frac{CC_a + CC_b - D_aD - DD_b}{2} .\] If we let $s_a$ be the semiperimeter of triangle $ACD$, then $CC_a = s_a - AD$, and $D_aD = s_a - AC$, so \[CC_a - D_aD = (s_a - AD) - (s_a - AC) = AC - AD .\] Similarly, \[CC_b - DD_b = BC - DB,\] so that \begin{align*} CE &= \frac{CC_a + CC_b - D_aD - DD_b}{2} = \frac{AC + BC - (AD+DB)}{2} \\ &= \frac{AC + BC - AB}{2} . \end{align*} Thus $E$ lies on the arc of the circle with center $C$ and radius $(AB+BC-AB)/2$ intercepted by segments $CA$ and $CB$. If we choose an arbitrary point $X$ on this arc and let $D$ be the intersection of lines $CX$ and $AB$, then $X$ becomes point $E$ in the diagram, so every point on this arc is in the locus of $E$. $\blacksquare$
// Block 1 size(220); defaultpen(1); pair A=(0,0), B=(220,0), C=(18.7723,118.523); pair D=(72.6,0); pair Ia=incenter(A,D,C), Ib=incenter(B,D,C); pair Ta=(24.9758,52.5775),Tb=(86.6196,67.4129); pair E=IntersectionPoint((Ta--Tb),(C--D)); path Oa=circle(Ia,inradius(A,D,C)); path Ob=circle(Ib,inradius(B,D,C)); pair Da=IP(Oa,A--B), Db=IP(Ob,A--B); pair Ca=IP(Oa,C--D), Cb=IP(Ob,C--D); draw(D--C--A--B--C); draw(Ta--Tb); draw(Oa); draw(Ob); dot(A,linewidth(4)); dot(B,linewidth(4)); dot(C,linewidth(4)); dot(D,linewidth(4)); dot(E,linewidth(4)); dot(Ta,linewidth(4)); dot(Tb,linewidth(4)); dot(Ca,linewidth(4)); dot(Cb,linewidth(4)); dot(Da,linewidth(4)); dot(Db,linewidth(4)); label("\(A\)",A,SW); label("\(B\)",B,SE); label("\(C\)",C,W); label("\(D\)",D,S); label("\(E\)",E,NNE); label("\(T_a\)",Ta,N); label("\(T_b\)",Tb,WNW); label("\(D_a\)",Da,S); label("\(D_b\)",Db,S); label("\(C_a\)",Ca,WSW); label("\(C_b\)",Cb,ENE); // Block 2 size(220); defaultpen(1); pair A=(0,0), B=(220,0), C=(18.7723,118.523); pair D=(72.6,0); pair Ia=incenter(A,D,C), Ib=incenter(B,D,C); pair Ta=(24.9758,52.5775),Tb=(86.6196,67.4129); pair E=IntersectionPoint((Ta--Tb),(C--D)); path Oa=circle(Ia,inradius(A,D,C)); path Ob=circle(Ib,inradius(B,D,C)); pair Da=IP(Oa,A--B), Db=IP(Ob,A--B); pair Ca=IP(Oa,C--D), Cb=IP(Ob,C--D); draw(D--C--A--B--C); draw(Ta--Tb); draw(Oa); draw(Ob); dot(A,linewidth(4)); dot(B,linewidth(4)); dot(C,linewidth(4)); dot(D,linewidth(4)); dot(E,linewidth(4)); dot(Ta,linewidth(4)); dot(Tb,linewidth(4)); dot(Ca,linewidth(4)); dot(Cb,linewidth(4)); dot(Da,linewidth(4)); dot(Db,linewidth(4)); label("\(A\)",A,SW); label("\(B\)",B,SE); label("\(C\)",C,W); label("\(D\)",D,S); label("\(E\)",E,NNE); label("\(T_a\)",Ta,N); label("\(T_b\)",Tb,WNW); label("\(D_a\)",Da,S); label("\(D_b\)",Db,S); label("\(C_a\)",Ca,WSW); label("\(C_b\)",Cb,ENE);
[]
24
Prove \[\frac{1}{\cos 0^\circ \cos 1^\circ} + \frac{1}{\cos 1^\circ \cos 2^\circ} + \cdots + \frac{1}{\cos 88^\circ \cos 89^\circ} = \frac{\cos 1^\circ}{\sin^2 1^\circ}.\]
1992 USAMO Problem 2
Solution 1 Consider the points $M_k = (1, \tan k^\circ)$ in the coordinate plane with origin $O=(0,0)$, for integers $0 \le k \le 89$. Evidently, the angle between segments $OM_a$ and $OM_b$ is $(b-a)^\circ$, and the length of segment $OM_a$ is $1/\cos a^\circ$. It then follows that the area of triangle $M_aOM_b$ is $\tfrac{1}{2} \sin(b-a)^\circ \cdot OM_a \cdot OM_b = \tfrac{1}{2} \sin(b-a)^\circ / (\cos a^\circ \cdot \cos b^\circ)$. Therefore \begin{align*} \sum_{k=0}^{88} \frac{\tfrac{1}{2} \sin 1^\circ}{ \cos k^\circ \cos k+1^\circ} &= \sum_{k=0}^{88} [ M_k O M_{k+1} ] \\ &= [ M_0 O M_{89} ] \\ &= \frac{ \tfrac{1}{2} \sin 89^\circ}{\cos 89^\circ} = \frac{\tfrac{1}{2} \cos 1^\circ}{\sin 1^\circ} , \end{align*} so \[\sum_{k=0}^{88} \frac{1}{\cos k^\circ \cos (k+1)^\circ} = \frac{\cos 1^\circ}{ \sin^2 1^\circ},\] as desired. $\blacksquare$ Solution 2 First multiply both sides of the equation by $\sin 1$, so the right hand side is $\frac{\cos 1}{\sin 1}$. Now by rewriting $\sin 1=\sin((k+1)-k)=\sin(k+1)\cos(k)+\sin(k)\cos(k+1)$, we can derive the identity $\tan(n+1)-\tan(n)=\frac{\sin 1}{\cos(n)\cos(n+1)}$. Then the left hand side of the equation simplifies to $\tan 89-\tan 0=\tan 89=\frac{\sin 89}{\cos 89}=\frac{\cos 1}{\sin 1}$ as desired. Solution 3 Multiply by $\sin{1}$. We get: $\frac {\sin{1}}{\cos{0}\cos{1}} + \frac {\sin{1}}{\cos{1}\cos{2}} + ... + \frac {\sin{1}}{\cos{88}\cos{89}} = \frac {\cos{1}}{\sin{1}}$ we can write this as: $\frac {\sin{1 - 0}}{\cos{0}\cos{1}} + \frac {\sin{2 - 1}}{\cos{1}\cos{2}} + ... + \frac {\sin{89 - 88}}{\cos{88}\cos{89}} = \frac {\cos{1}}{\sin{1}}$ This is an identity $\tan{a} - \tan{b} = \frac {\sin{(a - b)}}{\cos{a}\cos{b}}$ Therefore; $\sum_{i = 1}^{89}[\tan{k} - \tan{(k - 1)}] = \tan{89} - \tan{0} = \cot{1}$, because of telescoping. but since we multiplied $\sin{1}$ in the beginning, we need to divide by $\sin{1}$. So we get that: $\frac {1}{\cos{0}\cos{1}} + \frac {1}{\cos{1}\cos{2}} + \frac {1}{\cos{2}\cos{3}} + .... + \frac {1}{\cos{88}\cos{89}} = \frac {\cos{1}}{\sin^2{1}}$ as desired. QED Solution 4 Let $S = \frac{1}{\cos 0^\circ\cos 1^\circ} + \frac{1}{\cos 1^\circ\cos 2^\circ} + ... + \frac{1}{\cos 88^\circ\cos 89^\circ}$. Multiplying by $\sin 1^\circ$ gives \[S \sin 1^\circ = \frac{\sin(1^\circ-0^\circ)}{\cos 0^\circ\cos 1^\circ} + ... + \frac{\sin(89^\circ-88^\circ)}{\cos 88^\circ\cos 89^\circ}\] Notice that $\frac{\sin((x+1^\circ)-x)}{\cos 0^\circ\cos 1^\circ} = \tan (x+1^\circ) - \tan x$ after expanding the sine, and so \[S \sin 1^\circ = \left(\tan 1^\circ - \tan 0^\circ\right) + \cdots + \left(\tan 89^\circ - \tan 88^\circ\right) = \tan 89^\circ - \tan 0^\circ = \cot 1^\circ = \frac{\cos 1^\circ}{\sin 1^\circ},\] so \[S = \frac{\cos 1^\circ}{\sin^21^\circ}.\]
size(200); defaultpen(1); pair O=(0,0), a=expi(0), b=expi(1/6), c=expi(2/6), d=expi(3/6), y=expi(32/30), z= expi(34/30); pair A=a, B=b/b.x, C= c/c.x, D=d/d.x, Y=y/y.x, Z=z/z.x, E=(D+Y)/2; pair X=(O+E)/2; draw(O--A--Z); draw(B--O--C--D--O--Y--Z--O); label("\(O\)",O,SW); label("\(M_0\)",A,ESE); label("\(M_1\)",B,ESE); label("\(M_2\)",C,ESE); label("\(M_3\)",D,ESE); label("\(\vdots\)",E,ESE); label("\(M_{88}\)",Y,ESE); label("\(M_{89}\)",Z,ESE); label("\(\ddots\)",X);
[]
25
Let $ABCD$ be a convex quadrilateral such that diagonals $AC$ and $BD$ intersect at right angles, and let $E$ be their intersection. Prove that the reflections of $E$ across $AB$, $BC$, $CD$, $DA$ are concyclic.
1993 USAMO Problem 2
Diagram Work Let $X$, $Y$, $Z$, $W$ be the foot of the altitude from point $E$ of $\triangle AEB$, $\triangle BEC$, $\triangle CED$, $\triangle DEA$. Note that reflection of $E$ over all the points of $XYZW$ is similar to $XYZW$ with a scale of $2$ with center $E$. Thus, if $XYZW$ is cyclic, then the reflections are cyclic. $\angle EWA$ is right angle and so is $\angle EXA$. Thus, $EXAW$ is cyclic with $EA$ being the diameter of the circumcircle. Follow that, $\angle EWX\cong\angle EAX\cong \angle EAB$ because they inscribe the same angle. Similarly $\angle EWZ\cong \angle EDC$, $\angle EYX\cong \angle EBA$, $\angle EYZ\cong \angle ECD$. Futhermore, $m\angle XYZ+m\angle XWZ= m\angle EWX+m\angle EYX+m\angle EYZ+m\angle EWZ=$$360^\circ-m\angle CED-m\angle AEB=180^\circ$. Thus, $\angle XYZ$ and $\angle XWZ$ are supplementary and follows that, $XYZW$ is cyclic. $\mathbb{Q.E.D}$
import olympiad; defaultpen(0.8pt+fontsize(12pt)); pair E; E=(0,0); label('$E$',E,N); pair A,B,C,D; A=(9,0); B=(0,13); C=(-13,0); D=(0,-11); draw(A--B--C--D--cycle,blue); label('$A$',A,E); label('$B$',B,N); label('$C$',C,W); label('$D$',D,S); pair T,R,S,Q; T=reflect(A, B)*E; R=reflect(C, B)*E; S=reflect(C, D)*E; Q=reflect(A, D)*E; pair W,X,Y,Z; W=extension(A,D,E,Q); X=extension(A,B,E,T); Y=extension(C,B,E,R); Z=extension(C,D,E,S); draw(W--X--Y--Z--cycle,red); label('$X$',X,NE); label('$Y$',Y,NW); label('$Z$',Z, SW); label('$W$',W,SE); dot(A); dot(B); dot(C); dot(D); dot(E); dot(W); dot(X); dot(Y); dot(Z);
[]
26
A convex hexagon $ABCDEF$ is inscribed in a circle such that $AB=CD=EF$ and diagonals $AD,BE$, and $CF$ are concurrent. Let $P$ be the intersection of $AD$ and $CE$. Prove that $\frac{CP}{PE}=(\frac{AC}{CE})^2$.
1994 USAMO Problem 3
Let the diagonals $AD$, $BE$, $CF$ meet at $Q$. First, let's show that the triangles $\triangle AEC$ and $\triangle QED$ are similar. $\angle ACE=\angle ADE$ because $A$,$C$,$D$ and $E$ all lie on the circle, and $\angle ADE=\angle QDE$. $\angle AEB=\angle CED$ because $AB=CD$, and $A$,$B$,$C$,$D$ and $E$ all lie on the circle. Then, $\angle AEB=\angle CED \rightarrow \angle AEB+\angle BEC=\angle CED+\angle BEC \rightarrow \angle AEC=\angle QED$ Therefore, $\triangle AEC$ and $\triangle QED$ are similar, so $AC/CE=QD/DE$. Next, let's show that $\triangle AEC$ and $\triangle CDQ$ are similar. $\angle AEC=\angle ADC$ because $A$,$C$,$D$ and $E$ all lie on the circle, and $\angle ADC=\angle CDQ$. $\angle EAD=\angle ECD$ because $A$,$C$,$D$ and $E$ all lie on the circle. $\angle DAC=\angle ECF$ because $CD=EF$, and $A$,$C$,$D$,$E$ and $F$ all lie on the circle. Then, $\angle EAC=\angle EAD+\angle DAC=\angle ECD+\angle ECF=\angle DCQ$ Therefore, $\triangle AEC$ and $\triangle CDQ$ are similar, so $AC/CE=CQ/QD$. Lastly, let's show that $\triangle CPQ$ and $\triangle EPD$ are similar. Because $CD=EF$ and $C$,$D$,$E$ and $F$ all lie on the circle, $CF$ is parallel to $DE$. So, $\triangle CPQ$ and $\triangle EPD$ are similar, and $CQ/DE=CP/PE$. Putting it all together, $\frac{CP}{PE}=\frac{CQ}{DE}=\frac{AC}{CE}\cdot \frac{QD}{DE}=(\frac{AC}{CE})^2$. Borrowed from https://mks.mff.cuni.cz/kalva/usa/usoln/usol943.html
// Block 1 pair A,B,C,D,E,F,P,Q; A=(-0.96,0.28); B=(-0.352,0.936); C=(0,1); D=(4/5,3/5); E=(4/5,-3/5); F=(0,-1); P=IntersectionPoint(A--D,C--E); Q=IntersectionPoint(A--D,C--F); draw(A--B); draw(B--C); draw(C--D); draw(D--E,green); draw(E--F); draw(F--A); draw(A--C,red); draw(A--Q); draw(A--E,red); draw(B--Q); draw(C--E,red); draw(C--F); draw(Q--E,green); draw(Q--D,green); draw(circle((0,0),1)); label("\(A\)",A,W); label("\(B\)",B,N); label("\(C\)",C,N); label("\(D\)",D,NE); label("\(E\)",E,SE); label("\(F\)",F,S); label("\(P\)",(0.3,0.8),S); label("\(Q\)",(-0.15,0.4),S); // Block 2 pair A,B,C,D,E,F,P,Q; A=(-0.96,0.28); B=(-0.352,0.936); C=(0,1); D=(4/5,3/5); E=(4/5,-3/5); F=(0,-1); P=IntersectionPoint(A--D,C--E); Q=IntersectionPoint(A--D,C--F); draw(A--B); draw(B--C); draw(C--D,green); draw(D--E); draw(E--F); draw(F--A); draw(A--C,red); draw(A--Q); draw(A--E,red); draw(B--E); draw(C--E,red); draw(Q--F); draw(Q--C,green); draw(Q--D,green); draw(circle((0,0),1)); label("\(A\)",A,W); label("\(B\)",B,N); label("\(C\)",C,N); label("\(D\)",D,NE); label("\(E\)",E,SE); label("\(F\)",F,S); label("\(P\)",(0.3,0.8),S); label("\(Q\)",(-0.15,0.4),S); // Block 3 pair A,B,C,D,E,F,P,Q; A=(-0.96,0.28); B=(-0.352,0.936); C=(0,1); D=(4/5,3/5); E=(4/5,-3/5); F=(0,-1); P=IntersectionPoint(A--D,C--E); Q=IntersectionPoint(A--D,C--F); draw(A--B); draw(B--C); draw(C--D); draw(D--E,green); draw(E--F); draw(F--A); draw(A--C); draw(A--Q); draw(A--E); draw(B--E); draw(P--E,green); draw(Q--F); draw(C--P,red); draw(Q--P,red); draw(C--Q,red); draw(D--P,green); draw(circle((0,0),1)); label("\(A\)",A,W); label("\(B\)",B,N); label("\(C\)",C,N); label("\(D\)",D,NE); label("\(E\)",E,SE); label("\(F\)",F,S); label("\(P\)",(0.3,0.8),S); label("\(Q\)",(-0.15,0.4),S); // Block 4 pair A,B,C,D,E,F,P,Q; A=(-0.96,0.28); B=(-0.352,0.936); C=(0,1); D=(4/5,3/5); E=(4/5,-3/5); F=(0,-1); P=IntersectionPoint(A--D,C--E); Q=IntersectionPoint(A--D,C--F); draw(A--B); draw(B--C); draw(C--D); draw(D--E,green); draw(E--F); draw(F--A); draw(A--C,red); draw(A--Q); draw(A--E,red); draw(B--Q); draw(C--E,red); draw(C--F); draw(Q--E,green); draw(Q--D,green); draw(circle((0,0),1)); label("\(A\)",A,W); label("\(B\)",B,N); label("\(C\)",C,N); label("\(D\)",D,NE); label("\(E\)",E,SE); label("\(F\)",F,S); label("\(P\)",(0.3,0.8),S); label("\(Q\)",(-0.15,0.4),S); // Block 5 pair A,B,C,D,E,F,P,Q; A=(-0.96,0.28); B=(-0.352,0.936); C=(0,1); D=(4/5,3/5); E=(4/5,-3/5); F=(0,-1); P=IntersectionPoint(A--D,C--E); Q=IntersectionPoint(A--D,C--F); draw(A--B); draw(B--C); draw(C--D,green); draw(D--E); draw(E--F); draw(F--A); draw(A--C,red); draw(A--Q); draw(A--E,red); draw(B--E); draw(C--E,red); draw(Q--F); draw(Q--C,green); draw(Q--D,green); draw(circle((0,0),1)); label("\(A\)",A,W); label("\(B\)",B,N); label("\(C\)",C,N); label("\(D\)",D,NE); label("\(E\)",E,SE); label("\(F\)",F,S); label("\(P\)",(0.3,0.8),S); label("\(Q\)",(-0.15,0.4),S); // Block 6 pair A,B,C,D,E,F,P,Q; A=(-0.96,0.28); B=(-0.352,0.936); C=(0,1); D=(4/5,3/5); E=(4/5,-3/5); F=(0,-1); P=IntersectionPoint(A--D,C--E); Q=IntersectionPoint(A--D,C--F); draw(A--B); draw(B--C); draw(C--D); draw(D--E,green); draw(E--F); draw(F--A); draw(A--C); draw(A--Q); draw(A--E); draw(B--E); draw(P--E,green); draw(Q--F); draw(C--P,red); draw(Q--P,red); draw(C--Q,red); draw(D--P,green); draw(circle((0,0),1)); label("\(A\)",A,W); label("\(B\)",B,N); label("\(C\)",C,N); label("\(D\)",D,NE); label("\(E\)",E,SE); label("\(F\)",F,S); label("\(P\)",(0.3,0.8),S); label("\(Q\)",(-0.15,0.4),S);
[]
27
Let $ABC$ be a triangle, and $M$ an interior point such that $\angle MAB=10^\circ$, $\angle MBA=20^\circ$ , $\angle MAC= 40^\circ$ and $\angle MCA=30^\circ$. Prove that the triangle is isosceles.
1996 USAMO Problem 5
Solution 1 Clearly, $\angle AMB = 150^\circ$ and $\angle AMC = 110^\circ$. Now by the Law of Sines on triangles $ABM$ and $ACM$, we have \[\frac{AB}{\sin 150^\circ} = \frac{AM}{\sin 20^\circ}\] and \[\frac{AC}{\sin 110^\circ} = \frac{AM}{\sin 30^\circ}.\] Combining these equations gives us \[\frac{AB}{AC} = \frac{\sin 150^\circ \sin 30^\circ}{\sin 20^\circ \sin 110^\circ}.\] Without loss of generality, let $AB = \sin 150^\circ \sin 30^\circ = \frac{1}{4}$ and $AC = \sin 20^\circ \sin 110^\circ$. Then by the Law of Cosines, we have \begin{align*} BC^2 &= AB^2 + AC^2 - 2(AB)(BC)\cos\angle BAC\\ &= \frac{1}{16} + \sin^2 20^\circ\sin^2 110^\circ - 2\left(\frac{1}{4}\right)\sin 20^\circ\sin 110^\circ\cos 50^\circ \\ &= \frac{1}{16} + \sin^2 20^\circ \sin^2 110^\circ - \frac{1}{2}\sin 20^\circ\sin 110^\circ\sin 40^\circ \\ &= \frac{1}{16} + \sin^2 20^\circ \sin^2 110^\circ - \sin 20^\circ\sin 110^\circ\sin 20^\circ\cos 20^\circ \\ &= \frac{1}{16} \end{align*} Thus, $AB = BC$, our desired conclusion. Solution 2 By the law of sines, $\frac{BM}{sin(10^\circ)}=\frac{AM}{sin(20^\circ)}$ and $\frac{CM}{sin(40^\circ)}=\frac{AM}{sin(30^\circ)}$, so $\frac{BM}{CM}=\frac{sin(10^\circ)sin(30^\circ)}{sin(20^\circ)sin(40^\circ)}$. Let $\angle MBC=x$. Then, $\angle MCB=80^\circ-x$. By the law of sines, $\frac{BM}{CM}=\frac{sin(80^\circ-x)}{sin(x)}$. Combining, we have $\frac{sin(80^\circ-x)}{sin(x)}=\frac{sin(10^\circ)sin(30^\circ)}{sin(20^\circ)sin(40^\circ)}$. From here, we can use the given trigonometric identities at each step: \begin{align*} \frac{sin(80^\circ-x)}{sin(x)}&=\frac{sin(10^\circ)sin(30^\circ)}{sin(20^\circ)sin(40^\circ)}\\ sin(80^\circ-x)sin(20^\circ)sin(40^\circ)&=sin(10^\circ)sin(30^\circ)sin(x)\\ sin(80^\circ-x)sin(20^\circ)sin(40^\circ)&=\frac{1}{2}sin(10^\circ)sin(x)&[sin(30^\circ)=1/2]\\ sin(80^\circ-x)sin(30^\circ-10^\circ)sin(30^\circ+10^\circ)&=\frac{1}{2}sin(10^\circ)sin(x)\\ sin(80^\circ-x)(cos^2(10^\circ)-cos^2(30^\circ))&=\frac{1}{2}sin(10^\circ)sin(x)&[sin(A-B)sin(A+B)=cos^2 B-cos^2 A]\\ sin(80^\circ-x)(cos^2(10^\circ)-\frac{3}{4})&=\frac{1}{2}sin(10^\circ)sin(x)&[cos(30^\circ)=\frac{\sqrt{3}}{2}]\\ sin(80^\circ-x) \frac{4cos^3(10^\circ)-3cos(10^\circ)}{4cos(10^\circ)}&=\frac{1}{2}sin(10^\circ)sin(x)\\ sin(80^\circ-x) \frac{cos(30^\circ)}{4cos(10^\circ)}&=\frac{1}{2}sin(10^\circ)sin(x)&[cos(3A)=4cos^3 A-3cos A]\\ sin(80^\circ-x)cos(30^\circ)&=2sin(10^\circ)cos(10^\circ)sin(x)\\ sin(80^\circ-x)cos(30^\circ)&=sin(20^\circ)sin(x)&[sin(2A)=2sin A cos A ]\\ sin(80^\circ-x)sin(60^\circ)&=sin(20^\circ)sin(x)&[cos(30^\circ)=sin(60^\circ)]\\ \frac{1}{2}(cos(20^\circ-x)-cos(140^\circ-x))&=\frac{1}{2}(cos(20^\circ-x)-cos(20^\circ+x))&[sin A sin B=\frac{1}{2}(cos(A-B)-cos(A+B))]\\ cos(140^\circ-x)&=cos(20^\circ+x) \end{align*} The only acute angle satisfying this equality is $x=60^\circ$. Therefore, $\angle ACB=80^\circ-x+30^\circ=50^\circ$ and $\angle BAC=10^\circ+40^\circ=50^\circ$. Thus, $\triangle ABC$ is isosceles. Solution 3 If $\angle{MBC} = x$ then by Angle Sum in a Triangle we have $\angle{MCB} = 80^\circ - x$. By Trig Ceva we have \[\sin 10^\circ \sin x \sin 30^\circ = \sin (80^\circ - x) \sin 40^\circ \sin 20^\circ.\] Because $\dfrac{\sin x}{\sin (80^\circ - x)}$ is monotonic increasing over $(0, \dfrac{\pi}{2})$, there is only one solution $0 \le x \le \dfrac{\pi}{2}$ to the equation. We claim it is $x = 60^\circ$, which will make $ABC$ isosceles with $\angle{A} = \angle{C}$. Notice that \[\sin 20^\circ \sin 20^\circ \sin 40^\circ = 2 \sin 10^\circ \cos 10^\circ \sin 20^\circ \sin 40^\circ\] \[= \sin 10^\circ (\sin 10^\circ + \frac{1}{2}) \sin 40^\circ\] \[= \sin 10^\circ (\frac{1}{2} \sin 40^\circ + \frac{1}{2} (\cos 30^\circ - \cos 50^\circ))\] \[= \sin 10^\circ \frac{1}{2} \cos 30^\circ\] \[= \sin 10^\circ \sin 30^\circ \sin 60^\circ,\] as desired.
pair A,B,C,M; A=(0,0); B=(1,2); C=(2,0); M=(0.8,1.1); draw(A--B); draw(B--C); draw(C--A); draw(A--M); draw(B--M); draw(C--M); label("\(A\)",A,SW); label("\(B\)",B,N); label("\(C\)",C,SE); label("\(M\)",M,NE);
[]
28
To clip a convex $n$-gon means to choose a pair of consecutive sides $AB, BC$ and to replace them by three segments $AM, MN,$ and $NC,$ where $M$ is the midpoint of $AB$ and $N$ is the midpoint of $BC$. In other words, one cuts off the triangle $MBN$ to obtain a convex $(n+1)$-gon. A regular hexagon $P_6$ of area $1$ is clipped to obtain a heptagon $P_7$. Then $P_7$ is clipped (in one of the seven possible ways) to obtain an octagon $P_8$, and so on. Prove that no matter how the clippings are done, the area of $P_n$ is greater than $\frac{1}{3}$, for all $n\ge6$.
1997 USAMO Problem 4
$\textbf{Claim:}$ It is impossible to choose two non-adjacent sides and clip a whole part of it off. $\textbf{Proof:}$ If you clip adjacent sides, you can cut off at most up to the blue lines; Clipping more is impossible due to the degrees getting larger and larger and more and more circular. Thus, after infinitely many clips, the hexagon bounded by the blue lines is left, so after finitely many clips, the area left is more than that hexagon. The side length of that hexagon is $\frac{\sqrt{3}}{3}$ of the large one, because of 30-30-120 triangles. Thus, the area is $\frac13$ of the larger one, so we are done.
// Block 1 size(200); draw((1, 0)--(0.5, 0.866)--(-0.5, 0.866)--(-1, 0)--(-0.5, -0.866)--(0.5, -0.866)--(1, 0)); draw((1, 0)--(-0.5, 0.866)--(-0.5, -0.866)--(1, 0), blue); draw((-1, 0)--(0.5, -0.866)--(0.5, 0.866)--(-1, 0), blue); // Block 2 size(200); draw((1, 0)--(0.5, 0.866)--(-0.5, 0.866)--(-1, 0)--(-0.5, -0.866)--(0.5, -0.866)--(1, 0)); draw((1, 0)--(-0.5, 0.866)--(-0.5, -0.866)--(1, 0), blue); draw((-1, 0)--(0.5, -0.866)--(0.5, 0.866)--(-1, 0), blue);
[]
29
Let ${\cal C}_1$ and ${\cal C}_2$ be concentric circles, with ${\cal C}_2$ in the interior of ${\cal C}_1$. From a point $A$ on ${\cal C}_1$ one draws the tangent $AB$ to ${\cal C}_2$ ($B\in {\cal C}_2$). Let $C$ be the second point of intersection of $AB$ and ${\cal C}_1$, and let $D$ be the midpoint of $AB$. A line passing through $A$ intersects ${\cal C}_2$ at $E$ and $F$ in such a way that the perpendicular bisectors of $DE$ and $CF$ intersect at a point $M$ on $AB$. Find, with proof, the ratio $AM/MC$.
1998 USAMO Problem 2
First, $AD=\frac{AB}{2}=\frac{AC}{4}$. Because $E$,$F$ and $B$ all lie on a circle, $AE \cdot AF=AB \cdot AB=\frac{AB}{2} \cdot 2AB=AD \cdot AC$. Therefore, $\triangle ACF \sim \triangle AED$, so $\angle ACF = \angle AED$. Thus, quadrilateral $CFED$ is cyclic, and $M$ must be the center of the circumcircle of $CFED$, which implies that $MC=\frac{CD}{2}$. Putting it all together, $\frac{AM}{MC}=\frac{AC-MC}{MC}=\frac{AC-\frac{CD}{2}}{\frac{CD}{2}}=\frac{AC-\frac{AC-AD}{2}}{\frac{AC-AD}{2}}=\frac{AC-\frac{3AC}{8}}{\frac{3AC}{8}}=\frac{\frac{5AC}{8}}{\frac{3AC}{8}}=\frac{5}{3}$ Borrowed from https://mks.mff.cuni.cz/kalva/usa/usoln/usol982.html
// Block 1 pair O,A,B,C,D,E,F,DEb,CFb,Fo,M; O=(0,0); A=(1.732,1); B=(0,1); C=(-1.732,1); D=(0.866,1); Fo=(-1,-0.5); path AC,AF,DE,CF,DEbM,CFbM,C1,C2; C1=circle(O,2); C2=circle(O,1); E=intersectionpoints(A--Fo,C2)[0]; F=intersectionpoints(A--Fo,C2)[1]; DEb=((D.x+E.x)/2.0,(D.y+E.y)/2.0); CFb=((C.x+F.x)/2.0,(C.y+F.y)/2.0); M=(-0.433,1); path AC=A--C; path AF=A--F; path DEbM=DEb--M; path CFbM=CFb--M; path DE=D--E; path CF=C--F; draw(AC); draw(AF); draw(DE); draw(CF); draw(DEbM); draw(CFbM); draw(C1); draw(C2); label("\(A\)",A,NE); label("\(B\)",B,N); label("\(C\)",C,NW); label("\(D\)",D,N); label("\(E\)",E,SE); label("\(F\)",F,SW); label("\(M\)",M,N); // Block 2 pair O,A,B,C,D,E,F,DEb,CFb,Fo,M; O=(0,0); A=(1.732,1); B=(0,1); C=(-1.732,1); D=(0.866,1); Fo=(-1,-0.5); path AC,AF,DE,CF,DEbM,CFbM,C1,C2; C1=circle(O,2); C2=circle(O,1); E=intersectionpoints(A--Fo,C2)[0]; F=intersectionpoints(A--Fo,C2)[1]; DEb=((D.x+E.x)/2.0,(D.y+E.y)/2.0); CFb=((C.x+F.x)/2.0,(C.y+F.y)/2.0); M=(-0.433,1); path AC=A--C; path AF=A--F; path DEbM=DEb--M; path CFbM=CFb--M; path DE=D--E; path CF=C--F; draw(AC); draw(AF); draw(DE); draw(CF); draw(DEbM); draw(CFbM); draw(C1); draw(C2); label("\(A\)",A,NE); label("\(B\)",B,N); label("\(C\)",C,NW); label("\(D\)",D,N); label("\(E\)",E,SE); label("\(F\)",F,SW); label("\(M\)",M,N);
[]
30
Let $n \geq 5$ be an integer. Find the largest integer $k$ (as a function of $n$) such that there exists a convex $n$-gon $A_{1}A_{2}\dots A_{n}$ for which exactly $k$ of the quadrilaterals $A_{i}A_{i+1}A_{i+2}A_{i+3}$ have an inscribed circle. (Here $A_{n+j} = A_{j}$.)
1998 USAMO Problem 6
Lemma: If quadrilaterals $A_iA_{i+1}A_{i+2}A_{i+3}$ and $A_{i+2}A_{i+3}A_{i+4}A_{i+5}$ in an equiangular $n$-gon are tangential, and $A_iA_{i+3}$ is the longest side quadrilateral $A_iA_{i+1}A_{i+2}A_{i+3}$ for all $i$, then quadrilateral $A_{i+1}A_{i+2}A_{i+3}A_{i+4}$ is not tangential. Proof: If quadrilaterals $A_iA_{i+1}A_{i+2}A_{i+3}$ and $A_{i+2}A_{i+3}A_{i+4}A_{i+5}$ are tangential, then $A_iA_{i+3}$ must have side length of $j+y-u$, and $A_{i+2}A_{i+5}$ must have side length of $h + y - n$ (One can see this from what is known as walk-around). Suppose quadrilateral $A_{i+1}A_{i+2}A_{i+3}A_{i+4}$ is tangential. Then, again, we see that $A_{i+1}A_{i+4}$ must have side length $u + n - y$. We assumed by lemma that $A_iA_{i+3} > A_{i}A_{i+1}$ for all $i$, so we have $A_iA_{i+3} > j$, $A_{i+1}A_{i+4} > y$, and $A_{i+2}A_{i+5} > h$. If we add up the side lengths $A_iA_{i+3} + A_{i+1}A_{i+4} + A_{i+2}A_{i+5}$, we get: \[A_iA_{i+3} + A_{i+1}A_{i+4} + A_{i+2}A_{i+5} = j + y - u + h + y - n + u + n - y\] \[A_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 $A_iA_{i+3} > j$, $A_{i+1}A_{i+4} > y$, and $A_{i+2}A_{i+5} > h$. Adding these up, we get: \[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 $A_{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 $n$-gon occurs when the tangential quadrilaterals alternate, giving us $k = \lfloor \frac{n}{2} \rfloor$. Note that one can find the ratio of side of an equiangular $n$-gon in order for alternating quadrilaterals to be tangential. Since exterior angles of a equiangular $n$-gon have degree measure $\frac{2pi}{n}$, one can write the equation: \[2x = y + y + 2x \cos \frac{2pi}{n}\] \[y = x \left( 1- \cos \frac{2pi}{n} \right)\] \[\frac{y}{x} = \frac{1}{1- \cos \frac{2pi}{n}}\] Thus, we can find the ratio of sides of an equiangular $n$-gon which fits the maximum to be $1 : 1- \cos \frac{2\pi}{n}$. Note that if $n$ is even, we can easily alternate them, but if $n$ 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.
// Block 1 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); // Block 2 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); // Block 3 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); // Block 4 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);
[]
31
Find the smallest positive integer $n$ such that if $n$ squares of a $1000 \times 1000$ chessboard are colored, then there will exist three colored squares whose centers form a right triangle with sides parallel to the edges of the board.
2000 USAMO Problem 4
We claim that $n = 1999$ is the smallest such number. For $n \le 1998$, we can simply color any of the $1998$ squares forming the top row and the left column, but excluding the top left corner square. We now show that no configuration with no colored right triangles exists for $n = 1999$. We call a row or column filled if all $1000$ of its squares are colored. Then any of the remaining $999$ colored squares must share a column or row, respectively, with one of the colored squares in a filled row or column. These two squares, and any other square in the filled row or column, form a colored right triangle, giving us a contradiction. Hence, no filled row or column may exist. Let $m$ be the number of columns with $1$ colored square. Then there are $1999-m$ colored squares in the remaining columns, and in each of these $< 1999-m$ columns that have a colored square must have at least two colored squares in them. These two colored squares will form a triangle with any other colored square in either of the rows containing the colored squares. Hence, each of the $1999-m$ colored squares must be placed in different rows, but as there are only $1000$ rows, the inequality $1999 - m \le 1000 \Longrightarrow m \ge 999$ holds. If $m = 1000$, then each column only has $1$ colored square, leaving no place for the remaining $999$, contradiction. If $m = 999$, then each of the $1000$ rows has $1$ black square, leaving no place for the other $999$, contradiction. Hence $n = \boxed{1999}$ is the minimal value.
// Block 1 for(int i = 0; i < 10; ++i){ for(int j = 0; j < 10; ++j){ if((i == 0 || j == 9) && !(j-i == 9)) fill(shift(i,j)*unitsquare,rgb(0.3,0.3,0.3)); else draw(shift(i,j)*unitsquare); } } // Block 2 for(int i = 0; i < 10; ++i){ for(int j = 0; j < 10; ++j){ if((i == 0 || j == 9) && !(j-i == 9)) fill(shift(i,j)*unitsquare,rgb(0.3,0.3,0.3)); else draw(shift(i,j)*unitsquare); } }
[]
32
Let $A_1A_2A_3$ be a triangle and let $\omega_1$ be a circle in its plane passing through $A_1$ and $A_2.$ Suppose there exist circles $\omega_2, \omega_3, \dots, \omega_7$ such that for $k = 2, 3, \dots, 7,$ $\omega_k$ is externally tangent to $\omega_{k - 1}$ and passes through $A_k$ and $A_{k + 1},$ where $A_{n + 3} = A_{n}$ for all $n \ge 1$. Prove that $\omega_7 = \omega_1.$
2000 USAMO Problem 5
Solution 1 Let the circumcenter of $\triangle ABC$ be $O$, and let the center of $\omega_k$ be $O_k$. $\omega_k$ and $\omega_{k-1}$ are externally tangent at the point $A_k$, so $O_k, A_k, O_{k-1}$ are collinear. $O$ is the intersection of the perpendicular bisectors of $\overline{A_1A_2}, \overline{A_2A_3}, \overline{A_3A_1}$, and each of the centers $O_k$ lie on the perpendicular bisector of the side of the triangle that determines $\omega_k$. It follows from $OA_k = OA_{k+1}, O_kA_k = O_kA_{k+1}, OO_k = OO_k \Longrightarrow \triangle OA_kO_k \cong \triangle OA_{k+1}O_k$ that $\angle OA_kO_k = \angle OA_{k+1}O_k$. Since $O, A_k$, and the perpendicular bisector of $\overline{A_kA_{k+1}}$ are fixed, the angle $OA_kO_k$ determines the position of $O_k$ (since $O_k$ lies on the perpendicular bisector). Let $\theta_k = m\angle OA_kO_k$; then, $\theta_i = \theta_j$ and $i \equiv j \pmod{3}$ together imply that $O_i \equiv O_j$. Now $\theta_1 = \angle OA_1O_1 = \angle OA_2O_1 = 180 - \angle OA_2O_2 = 180 - \theta_2$ (due to collinearility). Hence, we have the recursion $\theta_k = 180 - \theta_{k-1}$, and so $\theta_k = \theta_{k-2}$. Thus, $\theta_{1} = \theta_{7}$. $\theta_{1} = \theta_{7}$ implies that $O_1 \equiv O_7$, and circles $\omega_1$ and $\omega_7$ are the same circle since they have the same center and go through the same two points. Solution 2 Using the collinearity of certain points and the fact that $A_k A_{k+1} O_k$ is isosceles, we quickly deduce that \[\angle{A_1 A_2 O_1} = 180^\circ - \angle{A_2} - (180^\circ - \angle{A_3}) + (180^\circ - \angle{A_1}) - (180^\circ - \angle{A_2}) + (180^\circ - \angle{A_3}) - (180^\circ - \angle{A_1}) + \angle{A_7 A_8 O_7}.\] From ASA Congruence we deduce that $A_1 A_2 O_1$ and $A_7 A_8 O_7$ are congruent triangles, and so $O_1 A_1 = O_7 A_7$, that is $\omega_1 = \omega_7$.
size(300); pathpen = linewidth(0.7); pen t = linetype("2 2"); pair A = (0,0), B=3*expi(1), C=(3.5)*expi(0); /* arbitrary points */ pair O=circumcenter(A,B,C), O1 = O + 5*( ((B+C)/2) - O ), O2 = IP(O -- O + 100*( ((A+C)/2) - O ), O1 -- O1 + 10*( C - O1 )); D(MP("A_3",A,SW)--MP("A_1",B,N)--MP("A_2",C,SE)--cycle); D(MP("O",O,NW)); D(MP("O_1",O1,E)); D(MP("O_2",O2)); D(O--B--O1--C--O--A--O2--C, linetype("4 4") + linewidth(0.7)); D(O1--O--O2,linetype("4 4") + linewidth(0.6)); D(CP(O1,C),t);D(CP(O2,C),t);D(circumcircle(A,B,C),t);
[]
33
Let $ABC$ be a triangle and let $\omega$ be its incircle. Denote by $D_1$ and $E_1$ the points where $\omega$ is tangent to sides $BC$ and $AC$, respectively. Denote by $D_2$ and $E_2$ the points on sides $BC$ and $AC$, respectively, such that $CD_2 = BD_1$ and $CE_2 = AE_1$, and denote by $P$ the point of intersection of segments $AD_2$ and $BE_2$. Circle $\omega$ intersects segment $AD_2$ at two points, the closer of which to the vertex $A$ is denoted by $Q$. Prove that $AQ = D_2P$.
2001 USAMO Problem 2
Solution 1 It is well known that the excircle opposite $A$ is tangent to $\overline{BC}$ at the point $D_2$. (Proof: let the points of tangency of the excircle with the lines $BC, AB, AC$ be $D_3, F,G$ respectively. Then $AB+BD_3=AB + BF=AF = AG = AC + CG=AC + CD_3$. It follows that $2CD_3 = AB + BC - AC$, and $CD_3 = s-b = BD_1 = CD_2$, so $D_3 \equiv D_2$.) Now consider the homothety that carries the incircle of $\triangle ABC$ to its excircle. The homothety also carries $Q$ to $D_2$ (since $A,Q,D_2$ are collinear), and carries the tangency points $E_1$ to $G$. It follows that $\frac{AQ}{QD_2} = \frac{AE_1}{E_1G} = \frac{s-a}{E_1C + CD_2} = \frac{s-a}{CD_1 + BD_1} = \frac{s-a}{a}$. By Menelaus' Theorem on $\triangle ACD_2$ with segment $\overline{BE_2}$, it follows that $\frac{CE_2}{E_2A} \cdot \frac{AP}{PD_2} \cdot \frac{BD_2}{BC} = 1 \Longrightarrow \frac{AP}{PD_2} = \frac{(b - (s-a)) \cdot a}{(a-(s-b)) \cdot AE_1} = \frac{a}{s-a}$. It easily follows that $AQ = D_2P$. $\blacksquare$ Solution 2 The key observation is the following lemma. Lemma: Segment $D_1Q$ is a diameter of circle $\omega$. Proof: Let $I$ be the center of circle $\omega$, i.e., $I$ is the incenter of triangle $ABC$. Extend segment $D_1I$ through $I$ to intersect circle $\omega$ again at $Q'$, and extend segment $AQ'$ through $Q'$ to intersect segment $BC$ at $D'$. We show that $D_2 = D'$, which in turn implies that $Q = Q'$, that is, $D_1Q$ is a diameter of $\omega$. Let $l$ be the line tangent to circle $\omega$ at $Q'$, and let $l$ intersect the segments $AB$ and $AC$ at $B_1$ and $C_1$, respectively. Then $\omega$ is an excircle of triangle $AB_1C_1$. Let $\mathbf{H}_1$ denote the dilation with its center at $A$ and ratio $AD'/AQ'$. Since $l\perp D_1Q'$ and $BC\perp D_1Q'$, $l\parallel BC$. Hence $AB/AB_1 = AC/AC_1 = AD'/AQ'$. Thus $\mathbf{H}_1(Q') = D'$, $\mathbf{H}_1(B_1) = B$, and $\mathbf{H}_1(C_1) = C$. It also follows that an excircle $\Omega$ of triangle $ABC$ is tangent to the side $BC$ at $D'$. It is well known that \[CD_1 = \frac{1}{2}(BC + CA - AB).\] We compute $BD'$. Let $X$ and $Y$ denote the points of tangency of circle $\Omega$ with rays $AB$ and $AC$, respectively. Then by equal tangents, $AX = AY$, $BD' = BX$, and $D'C = YC$. Hence \[AX = AY = \frac{1}{2}(AX + AY) = \frac{1}{2}(AB + BX + YC + CA) = \frac{1}{2}(AB + BC + CA).\] It follows that \[BD' = BX = AX - AB = \frac{1}{2}(BC + CA - AB).\] Combining these two equations yields $BD' = CD_1$. Thus \[BD_2 = BD_1 - D_2D_1 = D_2C - D_2D_1 = CD_1 = BD',\] that is, $D' = D_2$, as desired. $\blacksquare$ Now we prove our main result. Let $M_1$ and $M_2$ be the respective midpoints of segments $BC$ and $CA$. Then $M_1$ is also the midpoint of segment $D_1D_2$, from which it follows that $IM_1$ is the midline of triangle $D_1QD_2$. Hence \[QD_2 = 2IM_1\] and $AD_2\parallel M_1I$. Similarly, we can prove that $BE_2\parallel M_2I$. 2001usamo2-2.png Let $G$ be the centroid of triangle $ABC$. Thus segments $AM_1$ and $BM_2$ intersect at $G$. Define transformation $\mathbf{H}_2$ as the dilation with its center at $G$ and ratio $-1/2$. Then $\mathbf{H}_2(A) = M_1$ and $\mathbf{H}_2(B) = M_2$. Under the dilation, parallel lines go to parallel lines and the intersection of two lines goes to the intersection of their images. Since $AD_2\parallel M_1I$ and $BE_2\parallel M_2I$, $\mathbf{H}_2$ maps lines $AD_2$ and $BE_2$ to lines $M_1I$ and $M_2I$, respectively. It also follows that $\mathbf{H}_2(I) = P$ and \[\frac{IM_1}{AP} = \frac{GM_1}{AG} = \frac{1}{2}\] or \[AP = 2IM_1.\] This yields \[AQ = AP - QP = 2IM_1 - QP = QD_2 - QP = PD_2,\] as desired. Note: We used directed lengths in our calculations to avoid possible complications caused by the different shapes of triangle $ABC$. Solution 3 Here is a rather nice solution using barycentric coordinates: Let $A$ be $(1,0,0)$, $B$ be $(0,1,0)$, and $C$ be $(0,0,1)$. Let the side lengths of the triangle be $a,b,c$ and the semi-perimeter $s$. Now, \[CD_1=s-c, BD_1=s-b, AE_1=s-a, CE_1=s-c.\] Thus, \[CD_2=s-b, BD_2=s-c, AE_2=s-c, CE_2=s-a.\] Therefore, $D_2=(0:s-b:s-c)$ and $E_2=(s-a:0:s-c).$ Clearly then, the non-normalized coordinates of $P=(s-a:s-b:s-c).$ Normalizing, we have that \[D_2=\left(0,\frac{s-b}{a},\frac{s-c}{a}\right), E_2=\left(\frac{s-a}{b},0,\frac{s-c}{b}\right), P=\left(\frac{s-a}{s},\frac{s-b}{s},\frac{s-c}{s}\right).\] Now, we find the point $Q'$ inside the triangle on the line $AD_2$ such that $AQ'=D_2P$. It is then sufficient to show that this point lies on the incircle. $P$ is the fraction $\frac{s-a}{s}$ of the way "up" the line segment from $D_2$ to $A$. Thus, we are looking for the point that is $\frac{s-a}{s}$ of the way "down" the line segment from $A$ to $D_2$, or, the fraction $1-\frac{s-a}{s}$ of the way "up". Thus, $Q'$ has normalized $x$-coordinate $1-\frac{s-a}{s}=\frac{a}{s}$. As the line $AD_2$ has equation $(s-c)y=(s-b)z$, it can easily be found that \[Q'=\left(\frac{a^2}{as}, \frac{(s-a)(s-b)}{as}, \frac{(s-a)(s-c)}{as}\right)=(a^2:(s-a)(s-b):(s-a)(s-c)).\] Recalling that the equation of the incircle is \[a^2yz+b^2xz+c^2xy+(x+y+z)[(s-a)^2x+(s-b)^2y+(s-c)^2z]=0.\] We must show that this equation is true for $Q'$'s values of $x,y,z$. Plugging in our values, this means showing that \[a^2(s-a)^2(s-b)(s-c)+a^2(s-a)[b^2(s-c)+c^2(s-b)]+as[a^2(s-a)^2+(s-a)(s-b)^3+(s-a)(s-c)^3]=0.\] Dividing by $a(s-a)$, this is just \[a(s-a)(s-b)(s-c)+a[b^2(s-c)+c^2(s-b)]+a^2s(s-a)+s(s-b)^3+s(s-c)^3=0.\] Plugging in the value of $s:$ \[\frac{a(-a+b+c)(a-b+c)(a+b-c)}{8}+\frac{ab^2(a+b-c)}{2}+\frac{ac^2(a-b+c)}{2}+\frac{a^2(a+b+c)(-a+b+c)}{4}+\frac{(a+b+c)(a-b+c)^3}{16}+\frac{(a+b+c)(a+b-c)^3}{16}=0.\] \[2a(-a+b+c)(a-b+c)(a+b-c)+8ab^2(a+b-c)+8ac^2(a-b+c)+4a^2(a+b+c)(-a+b+c)+(a+b+c)(a-b+c)^3+(a+b+c)(a+b-c)^3=0\] \[2a[(-a+b+c)(a-b+c)(a+b-c)+4b^2(a+b-c)+4c^2(a-b+c)]+(a+b+c)[4a^2(-a+b+c)+(a-b+c)^3+(a+b-c)^3]=0\] The first bracket is just \[-a^3-b^3-c^3+a^2b+a^2c+b^2c+b^2a+c^2a+c^2b-2abc+4ab^2+4b^3-4b^2c+4ac^2-4bc^2+4c^3\] \[=-a^3+3b^3+3c^3+a^2b+a^2c-3b^2c+5b^2a+5c^2a-3c^2b-2abc\] and the second bracket is \[-2a^3+4a^2b+4a^2c+6ab^2+6ac^2-12abc.\] Dividing everything by $2a$ gives \[-a^3+3b^3+3c^3+a^2b+a^2c-3b^2c+5b^2a+5c^2a-3c^2b-2abc+(a+b+c)(-a^2+2ab+2ac+3b^2+3c^2-6bc),\] which is $0$, as desired. As $Q'$ lies on the incircle and $AD_2$, $Q'=Q$, and our proof is complete. Solution 4 We again use Barycentric coordinates. As before, let $A$ be $(1,0,0)$, $B$ be $(0,1,0)$, and $C$ be $(0,0,1)$. Also \[D_{1}=\left( 0,\frac{s-c}{a},\frac{s-b}{a} \right), D_2=\left(0,\frac{s-b}{a},\frac{s-c}{a}\right), E_2=\left(\frac{s-a}{b},0,\frac{s-c}{b}\right), P=\left(\frac{s-a}{s},\frac{s-b}{s},\frac{s-c}{s}\right).\] Now, consider a point $Q'$ for which $AQ'=PD_{2}$. Then working component-vise, we get $Q'+P=A+D_{2}$ from which we can easily get the coordinates of $Q'$ as; \[Q'=\left(\frac{a}{s},\frac{(s-a)(s-b)}{sa},\frac{(s-a)(s-c)}{sa}\right)\] It suffices to show that $Q'=Q$. Let $I=\left(\frac{a}{2s},\frac{b}{2s},\frac{c}{2s}\right)$ be the incenter of triangle $ABC$. We claim that $I$ is the midpoint of $Q'D_{1}$. Indeed, \[\frac{1}{2}\left(0+\frac{a}{s}\right)=\frac{a}{2s}\] \[\frac{1}{2}\left(\frac{(s-a)(s-b)}{sa}+\frac{s-c}{a}\right)=\frac{(s-a)(s-b)+s(s-c)}{2sa}=\frac{ab}{2sa}=\frac{b}{2s}\] \[\frac{1}{2}\left(\frac{(s-a)(s-c)}{sa}+\frac{s-b}{a}\right)=\frac{c}{2s}\] Hence the claim has been proved. Since $I$ is the center of $\omega$ and the midpoint of $Q'D_{1}$, thus $Q'$ is the point diametrically opposite to $D_{1}$, and hence it lies on $\omega$ and closer to $A$ off the 2 points. Thus $Q=Q'$ as desired.
pathpen = linewidth(0.7); size(300); pen d = linetype("4 4") + linewidth(0.6); pair B=(0,0), C=(10,0), A=7*expi(1),O=D(incenter(A,B,C)),D1 = D(MP("D_1",foot(O,B,C))),E1 = D(MP("E_1",foot(O,A,C),NE)),E2 = D(MP("E_2",C+A-E1,NE)); /* arbitrary points */ /* ugly construction for OA */ pair Ca = 2C-A, Cb = bisectorpoint(Ca,C,B), OA = IP(A--A+10*(O-A),C--C+50*(Cb-C)), D2 = D(MP("D_2",foot(OA,B,C))), Fa=2B-A, Ga=2C-A, F=MP("F",D(foot(OA,B,Fa)),NW), G=MP("G",D(foot(OA,C,Ga)),NE); D(OA); D(MP("A",A,N)--MP("B",B,NW)--MP("C",C,NE)--cycle); D(incircle(A,B,C)); D(CP(OA,D2),d); D(B--Fa,linewidth(0.6)); D(C--Ga,linewidth(0.6)); D(MP("P",IP(D(A--D2),D(B--E2)),NNE)); D(MP("Q",IP(incircle(A,B,C),A--D2),SW)); clip((-20,-10)--(-20,20)--(20,20)--(20,-10)--cycle);
[]
34
Let $ABC$ be a triangle. A circle passing through $A$ and $B$ intersects segments $AC$ and $BC$ at $D$ and $E$, respectively. Lines $AB$ and $DE$ intersect at $F$, while lines $BD$ and $CF$ intersect at $M$. Prove that $MF = MC$ if and only if $MB\cdot MD = MC^2$.
2003 USAMO Problem 4
Solution 1 Extend segment $DM$ through $M$ to $G$ such that $FG\parallel CD$. Then $MF = MC$ if and only if quadrilateral $CDFG$ is a parallelogram, or, $FD\parallel CG$. Hence $MC = MF$ if and only if $\angle GCD = \angle FDA$, that is, $\angle FDA + \angle CGF = 180^\circ$. Because quadrilateral $ABED$ is cyclic, $\angle FDA = \angle ABE$. It follows that $MC = MF$ if and only if \[180^\circ = \angle FDA + \angle CGF = \angle ABE + \angle CGF,\] that is, quadrilateral $CBFG$ is cyclic, which is equivalent to \[\angle CBM = \angle CBG = \angle CFG = \angle DCF = \angle DCM.\] Because $\angle DMC = \angle CMB$, $\angle CBM = \angle DCM$ if and only if triangles $BCM$ and $CDM$ are similar, that is \[\frac{CM}{BM} = \frac{DM}{CM},\] or $MB\cdot MD = MC^2$. Solution 2 We first assume that $MB\cdot MD = MC^2$. Because $\frac{MC}{MD} = \frac{MB}{MC}$ and $\angle CMD = \angle BMC$, triangles $CMD$ and $BMC$ are similar. Consequently, $\angle MCD = \angle MBC$. This exact condition can also be visualized through power of M with respect to the circumcircle of triangle $BDC$ and getting the angle condition from the alternate segment theorem. Because quadrilateral $ABED$ is cyclic, $\angle DAE = \angle DBE$. Hence \[\angle FCA = \angle MCD = \angle MBC = \angle DBE = \angle DAE = \angle CAE,\] implying that $AE\parallel CF$, so $\angle AEF = \angle CFE$. Because quadrilateral $ABED$ is cyclic, $\angle ABD = \angle AED$. Hence \[\angle FBM = \angle ABD = \angle AED = \angle AEF = \angle CFE = \angle MFD.\] Because $\angle FBM = \angle DFM$ and $\angle FMB = \angle DMF$, triangles $BFM$ and $FDM$ are similar. Consequently, $\frac{FM}{DM} = \frac{BM}{FM}$, or $FM^2 = BM\cdot DM = CM^2$. Therefore $MC^2 = MB\cdot MD$ implies $MC = MF$. Now we assume that $MC = MF$. Applying Ceva's Theorem to triangle $BCF$ and cevians $BM, CA, FE$ gives \[\frac{BA}{AF}\cdot\frac{FM}{MC}\cdot\frac{CE}{EB} = 1,\] implying that $\frac{BA}{AF} = \frac{BE}{EC}$, so $AE\parallel CF$. Consequently, $\angle DCM = \angle DAE$. Because quadrilateral $ABED$ is cyclic, $\angle DAE = \angle DBE$. Hence \[\angle DCM = \angle DAE = \angle DBE = \angle CBM.\] Because $\angle CBM = \angle DCM$ and $\angle CMB = \angle DMC$, triangles $BCM$ and $CDM$ are similar. Consequently, $\frac{CM}{DM} = \frac{BM}{CM}$, or $CM^2 = BM\cdot DM$. Combining the above, we conclude that $MF = MC$ if and only if $MB\cdot MD = MC^2$. Alternate solutions are always welcome. If you have a different, elegant solution to this problem, please add it to this page.
// Block 1 defaultpen(fontsize(10)+0.6); size(250); var theta=22, r=0.58; pair B=origin, A=dir(theta), C=A+(rotate(78)*0.8*A), O=IP(CR(B,r),CR(A,r)); path c=CR(O,r); pair D=IP(c,A--C), E=IP(c,B--C), F=extension(A,B,D,E), M=extension(B,D,C,F), G=extension(D,M,F,F+C-D); draw(A--B--C--A^^E--F--C^^A--F^^B--M^^E--M); draw(c); draw(F--G--C^^M--G,gray+0.4); dot("$A$",A,dir(F-E)); dot("$B$",B,2*dir(B-A)); dot("$C$",C,1.5*dir(C-A)); dot("$D$",D,2.5*dir(250)); dot("$E$",E,2.5*dir(C-A)); dot("$F$",F,dir(F-E)); dot("$M$",M,2.5*dir(255)); dot("$G$",G,dir(G-M)); // Block 2 defaultpen(fontsize(10)+0.6); size(250); var theta=22, r=0.58; pair B=origin, A=dir(theta), C=A+(rotate(78)*0.8*A), O=IP(CR(B,r),CR(A,r)); path c=CR(O,r); pair D=IP(c,A--C), E=IP(c,B--C), F=extension(A,B,D,E), M=extension(B,D,C,F), G=extension(D,M,F,F+C-D); draw(A--B--C--A^^E--F--C^^A--F^^B--M^^E--M); draw(c); draw(A--E,gray+0.4); dot("$A$",A,dir(F-E)); dot("$B$",B,2*dir(B-A)); dot("$C$",C,1.5*dir(C-A)); dot("$D$",D,2.5*dir(250)); dot("$E$",E,2.5*dir(C-A)); dot("$F$",F,dir(F-E)); dot("$M$",M,2.5*dir(255));
[]
35
At the vertices of a regular hexagon are written six nonnegative integers whose sum is 2003. Bert is allowed to make moves of the following form: he may pick a vertex and replace the number written there by the absolute value of the difference between the numbers written at the two neighboring vertices. Prove that Bert can make a sequence of moves, after which the number 0 appears at all six vertices.
2003 USAMO Problem 6
Assume the original numbers are $a,b,c,d,e,f$. Since $a+b+c+d+e+f$ is odd, either $a+c+e$ or $b+d+f$ must be odd. WLOG let $a+c+e$ be odd and $a\ge c\ge e \ge 0$. Case 1 $a,c,e>0$. Define Operation A as the sequence of moves from Step 1 to Step 3, shown below: Notice that Operation A changes the numbers $a,c,e$ to $c-e,c,a-c$ and they are all nonnegative, since $a\ge c\ge e$. Their sum changes from $a+c+e$ to $a+c-e$; it decreases as long as $e\ne 0$. If we repeat Operation A enough times, its sum will decrease and eventually we will arrive at a point where at least one of the numbers in the positions originally occupied by $a,c,e$ has become a 0. Case 2 $a,c>0$ and $e=0$. Define Operation B as the sequence of moves from Step 1 to Step 3, shown below: where in Step 3, we take the nonnegative choice of $2c-a$ or $a-2c$. $a,c,0$ is changed to either $c,2c-a,0$ or $c,a-2c,0$. If we have $c,2c-a,0$, their sum is $3c-a$ and this is less than $a+c+0$ (the original sum) unless $a=c$, but $a\ne c$ since the original sum $a+c+0$ is odd by assumption. If we have $c,a-2c,0$, their sum is $a-c$, which is less than $a+c$. Operation B applied repeatedly will cause either $a$ or $c$ to become $0$. Case 3 $a>0$ and $c=e=0$. Define Operation C as the sequence of moves from Step 1 to Step 4, shown below:
// Block 1 size(300); defaultpen(fontsize(9)); label("$d$",expi(0),(0,0)); label("$c$",expi(pi/3),(0,0),red); label("$b$",expi(2*pi/3),(0,0)); label("$a$",expi(pi),(0,0),red); label("$f$",expi(4*pi/3),(0,0)); label("$e$",expi(5*pi/3),(0,0),red); label("Step 1",(0,-2),(0,0)); label("$c-e$",(5,0)+expi(0),(0,0)); label("$c$",(5,0)+expi(pi/3),(0,0),red); label("$a-c$",(5,0)+expi(2*pi/3),(0,0)); label("$a$",(5,0)+expi(pi),(0,0),red); label("$a-e$",(5,0)+expi(4*pi/3),(0,0)); label("$e$",(5,0)+expi(5*pi/3),(0,0),red); label("Step 2",(5,-2),(0,0)); label("$c-e$",(10,0)+expi(0),(0,0)); label("$c$",(10,0)+expi(pi/3),(0,0),red); label("$a-c$",(10,0)+expi(2*pi/3),(0,0)); label("$c-e$",(10,0)+expi(pi),(0,0),red); label("$a-e$",(10,0)+expi(4*pi/3),(0,0)); label("$a-c$",(10,0)+expi(5*pi/3),(0,0),red); label("Step 3",(10,-2),(0,0)); // Block 2 size(300); defaultpen(fontsize(9)); label("$d$",expi(0),(0,0)); label("$c$",expi(pi/3),(0,0),red); label("$b$",expi(2*pi/3),(0,0)); label("$a$",expi(pi),(0,0),red); label("$f$",expi(4*pi/3),(0,0)); label("$0$",expi(5*pi/3),(0,0),red); label("Step 1",(0,-2),(0,0)); label("$c$",(5,0)+expi(0),(0,0)); label("$c$",(5,0)+expi(pi/3),(0,0),red); label("$a-c$",(5,0)+expi(2*pi/3),(0,0)); label("$a$",(5,0)+expi(pi),(0,0),red); label("$a$",(5,0)+expi(4*pi/3),(0,0)); label("$0$",(5,0)+expi(5*pi/3),(0,0),red); label("Step 2",(5,-2),(0,0)); label("$c$",(10,0)+expi(0),(0,0)); label("$\begin{array}{l}2c-a\\ a-2c\end{array}$",(10,0)+expi(pi/3),(0,0),red); label("$a-c$",(10,0)+expi(2*pi/3),(0,0)); label("$c$",(10,0)+expi(pi),(0,0),red); label("$a$",(10,0)+expi(4*pi/3),(0,0)); label("$0$",(10,0)+expi(5*pi/3),(0,0),red); label("Step 3",(10,-2),(0,0)); // Block 3 size(400); defaultpen(fontsize(9)); label("$d$",expi(0),(0,0)); label("$0$",expi(pi/3),(0,0),red); label("$b$",expi(2*pi/3),(0,0)); label("$a$",expi(pi),(0,0),red); label("$f$",expi(4*pi/3),(0,0)); label("$0$",expi(5*pi/3),(0,0),red); label("Step 1",(0,-2),(0,0)); label("$0$",(5,0)+expi(0),(0,0)); label("$0$",(5,0)+expi(pi/3),(0,0),red); label("$a$",(5,0)+expi(2*pi/3),(0,0)); label("$a$",(5,0)+expi(pi),(0,0),red); label("$a$",(5,0)+expi(4*pi/3),(0,0)); label("$0$",(5,0)+expi(5*pi/3),(0,0),red); label("Step 2",(5,-2),(0,0)); label("$0$",(10,0)+expi(0),(0,0)); label("$0$",(10,0)+expi(pi/3),(0,0),red); label("$a$",(10,0)+expi(2*pi/3),(0,0)); label("$0$",(10,0)+expi(pi),(0,0),red); label("$a$",(10,0)+expi(4*pi/3),(0,0)); label("$0$",(10,0)+expi(5*pi/3),(0,0),red); label("Step 3",(10,-2),(0,0)); label("$0$",(15,0)+expi(0),(0,0)); label("$0$",(15,0)+expi(pi/3),(0,0),red); label("$0$",(15,0)+expi(2*pi/3),(0,0)); label("$0$",(15,0)+expi(pi),(0,0),red); label("$0$",(15,0)+expi(4*pi/3),(0,0)); label("$0$",(15,0)+expi(5*pi/3),(0,0),red); label("Step 4",(15,-2),(0,0));
[]
36
(Zuming Feng) Let $ABC$ be an acute-angled triangle, and let $P$ and $Q$ be two points on side $BC$. Construct point $C_1$ in such a way that convex quadrilateral $APBC_1$ is cyclic, $QC_1 \parallel CA$, and $C_1$ and $Q$ lie on opposite sides of line $AB$. Construct point $B_1$ in such a way that convex quadrilateral $APCB_1$ is cyclic, $QB_1 \parallel BA$, and $B_1$ and $Q$ lie on opposite sides of line $AC$. Prove that points $B_1, C_1,P$, and $Q$ lie on a circle.
2005 USAMO Problem 3
Solution 1 Let $B_1'$ be the second intersection of the line $C_1A$ with the circumcircle of $APC$, and let $Q'$ be the second intersection of the circumcircle of $B_1' C_1P$ and line $BC$. It is enough to show that $B_1'=B_1$ and $Q' =Q$. All our angles will be directed, and measured mod $\pi$. Since points $C_1, P, Q', B_1'$ are concyclic and points $C_1, A,B_1'$ are collinear, it follows that \[\angle C_1 Q' P \equiv \angle C_1 B_1' P \equiv \angle A B_1' P .\] But since points $A, B_1', P, C$ are concyclic, \[\angle AB_1'P \equiv \angle ACP .\] It follows that lines $AC$ and $C_1 Q'$ are parallel. If we exchange $C$ with $B$ and $C_1$ with $B_1'$ in this argument, we see that lines $AB$ and $B_1' Q'$ are likewise parallel. It follows that $Q'$ is the intersection of $BC$ and the line parallel to $AC$ and passing through $C_1$. Hence $Q' = Q$. Then $B_1'$ is the second intersection of the circumcircle of $APC$ and the line parallel to $AB$ passing through $Q$. Hence $B_1' = B_1$, as desired. $\blacksquare$ Motivation: One can notice that if you take such a $B_1'$ then $PQB_1'C_1$ is cyclic, and that similarly $PQB_1C_1'$ is also cyclic. One gets the intuition that only one such circle should exist where the other chord passes through A, and so sets up a ghost point for $Q$, which works. ~cocohearts Solution 2 Lemma. $B_1, A, C_1$ are collinear. Suppose they are not collinear. Let line $B_1 A$ intersect circle $ABP$ (i.e. the circumcircle of $ABP$) again at $C_2$ distinct from $C_1$. Because $\angle C_2 B_1 Q = \angle C_2 AB = \angle C_2 PB = 180^\circ - \angle C_2 PQ$, we have that $B_1 C_2 PQ$ is cyclic. Hence $\angle C_2 QP = \angle C_2 B_1 P = \angle P B_1 A = \angle C$, so $C_2 Q // AC$. Then $C_2$ must be the other intersection of the parallel to $AC$ through $Q$ with circle $ABP$. Then $C_2$ is on segment $C_1 Q$, so $C_2$ is contained in triangle $ABQ$. However, line $AB_1$ intersects this triangle only at point $A$ because $B_1$ lies on arc $AC$ not containing $P$ of circle $APC$, a contradiction. Hence, $B_1, A, C_1$ are collinear, as desired. As a result, we have $\angle C_1 B_1 Q = \angle C_1 AB = \angle C_1 PB = 180^\circ - \angle C_1 PQ$, so $B_1 C_1 PQ$ is cyclic, as desired. Solution 3 Due to the parallel lines, $m\angle C_1QB_1=m\angle A.$ Therefore, it suffices to prove that \[m\angle C_1PB_1=m\angle C_1BA+m\angle ACB_1=m\angle A.\] Note that $m\angle BC_1A+m\angle AB_1C=180^{\circ}$ by the cyclic quadrilaterals. Now, the condition simplifies to proving $C_1,A,B_1$ collinear. Use barycentric coordinates. Let \[A=(1,0,0), B=(0,1,0), C=(0,0,1), P=(0,p,1-p), Q=(0,q,1-q).\] By the parallel lines, \[C_1=(1-q-z',q,z'), B_1=(q-y',y',1-q)\] for some $y',z'.$ As $A$ is a vertex of the reference triangle, we must prove that $q(1-q)=y'z'.$ Now we find the circumcircle of $\triangle APC.$ Let its equation be \[-a^2yz-b^2xz-c^2xy+(x+y+z)(ux+vy+wz)=0.\] Substituting in $A,C$ gives $u=w=0.$ Substituting in $P$ yields \[-a^2p(1-p)+vp=0\implies v = a^2(1-p).\] Substituting in $B_1$ yields \[0=-a^2y'(1-q)-b^2(q-y')(1-q)-c^2y'(q-y')+a^2(1-p)y'=0.\] \[c^2y'^2+(a^2q-a^2p+b^2(1-q)-c^2q)y'-b^2q(1-q)=0\] Similarly, the circumcircle of $\triangle APB$ is \[-a^2yz-b^2xz-c^2xy+(x+y+z)a^2pz.\] Now, we substitute $C_1$ into the equation \[0=-a^2qz'-b^2z'(1-q-z')-c^2q(1-q-z')+a^2pz'=0\] \[b^2 z'^2+(a^2p-a^2q-b^2(1-q)+c^2q)z'-c^2q(1-q)=0\] Let $k=a^2p-a^2q-b^2(1-q)+c^2q,$ and note that both $y',z'$ are negative. By the quadratic formula, we have \[y'=\frac{k-\sqrt{k^2+4b^2c^2q(1-q)}}{2c^2}, z'=\frac{-k-\sqrt{k^2+4b^2c^2q(1-q)}}{2b^2}\] Multiplying these two, we have \[y'z'=\frac{4b^2c^2q(1-q)}{4b^2c^2}=q(1-q),\] as desired. $\blacksquare$ Alternate solutions are always welcome. If you have a different, elegant solution to this problem, please add it to this page.
size(300); defaultpen(1); pair A=(2,5), B=(-1,0), C=(5,0); pair C1=(.5,5.7); path O1=circumcircle(A,B,C1); pair P=IntersectionPoint(O1,B--C,1); path O2=circumcircle(A,P,C); pair B1=IntersectionPoint(O2,C1--5A-4C1,0); path O=circumcircle(B1,C1,P); pair Q=IntersectionPoint(O,B--C,1); draw(C1--P--A--B--C--A); draw(P--B1--C1--Q--B1); draw(O1,dashed+linewidth(.7)); draw(O2,dashed+linewidth(.7)); draw(O,dotted); label("$A$",A,N); label("$B$",B,SW); label("$C$",C,SE); label("$P$",P,S); label("$Q'$",Q,S); label("$C_1$",C1,N); label("$B_1'$",B1,E);
[]
37
(Kiran Kedlaya, Sungyoon Kim) Let $ABC$ be an acute triangle with $\omega$, $\Omega$, and $R$ being its incircle, circumcircle, and circumradius, respectively. The circle $\omega_A$ is tangent internally to $\Omega$ at $A$ and externally tangent to $\omega$. Circle $\Omega_A$ is internally tangent to $\Omega$ at $A$ and tangent internally to $\omega$. Let $P_A$ and $Q_A$ denote the centers of $\omega_A$ and $\Omega_A$, respectively. Define points $P_B$, $Q_B$, $P_C$, $Q_C$ analogously. Prove that \[8P_AQ_A \cdot P_BQ_B \cdot P_CQ_C \le R^3,\] with equality if and only if triangle $ABC$ is equilateral.
2007 USAMO Problem 6
Solution 1 Lemma. \[P_{A}Q_{A}=\frac{ 4R^{2}(s-a)^{2}(s-b)(s-c)}{rb^{2}c^{2}}\] Proof. Note $P_{A}$ and $Q_{A}$ lie on $AO$ since for a pair of tangent circles, the point of tangency and the two centers are collinear. Let $\omega$ touch $BC$, $CA$, and $AB$ at $D$, $E$, and $F$, respectively. Note $AE=AF=s-a$. Consider an inversion, $\mathcal{I}$, centered at $A$, passing through $E$, $F$. Since $IE\perp AE$, $\omega$ is orthogonal to the inversion circle, so $\mathcal{I}(\omega)=\omega$. Consider $\mathcal{I}(\omega_{A})=\omega_{A}'$. Note that $\omega_{A}$ passes through $A$ and is tangent to $\omega_{A}$, hence $\omega_{A}'$ is a line that is tangent to $\omega$. Furthermore, $\omega_{A}'\perp AO$ because $\omega_{A}$ is symmetric about $OA$, so the inversion preserves that reflective symmetry. Since it is a line that is symmetric about $AO$, it must be perpendicular to $AO$. Likewise, $\mathcal{I}(\Omega_{A})=\Omega_{A}'$ is the other line tangent to $\omega$ and perpendicular to $AO$. Let $\omega_{A} \cap AO=X$ and $\omega_{A}' \cap AO=X'$ (second intersection). Let $\Omega_{A} \cap AO=Y$ and $\Omega_{A}' \cap AO=Y'$ (second intersection). Evidently, $AX=2AP_{A}$ and $AY=2AQ_{A}$. We want: \[\star=AQ_{A}-AP_{A}=\frac{1}{2}(AY-AX)=\frac{(s-a)^{2}}{2}\left(\frac{1}{AY'}-\frac{1}{AX'}\right)\] by inversion. Note that $\omega_{A}' || \Omega_{A}'$, and they are tangent to $\omega$, so the distance between those lines is $2r=AX'-AY'$. Drop a perpendicular from $I$ to $AO$, touching at $H$. Then $AH=AI\cos\angle OAI=AI\cos\frac{1}{2}|\angle B-\angle C|$. Then $AX', AY' = AI\cos\frac{1}{2}|\angle B-\angle C|\pm r$. So $AX'\cdot AY' = AI^{2}\cos^{2}\frac{1}{2}|\angle B-\angle C|-r^{2}$. \begin{align*} \star &= \frac{(s-a)^{2}}{2}\cdot\frac{AX' - AY'}{AY'\cdot AX'} \\ &= \frac{r(s-a)^{2}}{AI^{2}\cos^{2}\frac{1}{2}|\angle B-\angle C|-r^{2}} \\ &= \frac{\frac{(s-a)^{2}}{r}}{\left(\frac{AI}{r}\right)^{2}\cos^{2}\frac{1}{2}|\angle B-\angle C|-1}. \end{align*} Note that $\frac{AI}{r} = \frac{1}{\sin\frac{A}{2}}$. Applying the double angle formulas and $1-\cos\angle A=\frac{2(s-b)(s-c)}{bc}$, we get \begin{align*} \star &= \frac{\frac{(s-a)^{2}}{r}}{\frac{1+\cos (\angle B-\angle C)}{1-\cos A}+1} \\ &= \frac{\frac{(s-a)^{2}}{r}\cdot (1-\cos \angle A)}{\cos(\angle B-\angle C)+\cos(\pi-\angle B-\angle C)} \\ &= \frac{(s-a)^{2}(1-\cos \angle A)}{2r\sin \angle B\sin \angle C} \\ &= \frac{(s-a)^{2}(s-b)(s-c)}{rbc\sin\angle B\sin\angle C} \\ P_{A}Q_{A} &= \frac{4R^{2}(s-a)^{2}(s-b)(s-c)}{rb^{2}c^{2}} \end{align*} End Lemma The problem becomes: \begin{align*} 8\prod \frac{ 4R^{2}(s-a)^{2}(s-b)(s-c)}{rb^{2}c^{2}} &\leq R^{3} \\ \frac{2^{9}R^{6}\left[\prod(s-a)\right]^{4}}{r^{3}a^{4}b^{4}c^{4}} &\leq R^{3} \\ \left(\frac{4AR}{abc}\right)^{4}\cdot\left(\frac{A}{rs}\right)^{4}2rR^{2} &\leq R^{3} \\ 2r &\leq R, \end{align*} which is true because $OI^{2}=R(R-2r)$, equality is when the circumcenter and incenter coincide. As before, $\angle OAI=\frac{1}{2}|\angle B-\angle C|=0$, so, by symmetry, $\angle A=\angle B=\angle C$. Hence the inequality is true iff $\triangle ABC$ is equilateral. Comment: It is much easier to determine $AP_{A}$ by considering $\triangle IAP_{A}$. We have $AI$, $\angle IAO$, $IP_{A}=r+r(P_{A})$, and $AP_{A}=r(P_{A})$. However, the inversion is always nice to use. This also gives an easy construction for $w_{A}$ because the tangency point is collinear with the intersection of $w_{A}'$ and $w$. Alternate solutions are always welcome. If you have a different, elegant solution to this problem, please add it to this page.
size(400); defaultpen(fontsize(8)); pair A=(2,8), B=(0,0), C=(13,0), I=incenter(A,B,C), O=circumcenter(A,B,C), p_a, q_a, X, Y, X1, Y1, D, E, F; real r=abs(I-foot(I,A,B)), R=abs(A-O), a=abs(B-C), b=abs(A-C), c=abs(A-B), x=(((b+c-a)/2)^2)/(r^2+4*r*R+((b+c-a)/2)^2), y=((b+c-a)/2)^2/(r^2+((b+c-a)/2)^2); p_a=x*(O-A)+A; q_a=y*(O-A)+A; X=intersectionpoint(Circle(p_a,x*abs(O-A)), A+(O-A)*0.01--O); X1=intersectionpoint(intersectionpoint(incircle(A,B,C),I--I+O-A)+abs(A-O)*expi(angle(A-O)-pi/2)--intersectionpoint(incircle(A,B,C),I--I+O-A)-abs(A-O)*expi(angle(A-O)-pi/2), q_a--q_a+O-A); Y=intersectionpoint(Circle(q_a,y*abs(O-A)), O--2*O-A); Y1=intersectionpoint(intersectionpoint(incircle(A,B,C),I--I+A-O)+abs(A-O)*expi(angle(A-O)-pi/2)--intersectionpoint(incircle(A,B,C),I--I+A-O)-abs(A-O)*expi(angle(A-O)-pi/2), O--A); draw(intersectionpoint(incircle(A,B,C),I--I+A-O)+abs(A-O)*expi(angle(A-O)-pi/2)--intersectionpoint(incircle(A,B,C),I--I+A-O)-abs(A-O)*expi(angle(A-O)-pi/2),blue+0.7); draw(intersectionpoint(incircle(A,B,C),I--I+O-A)+abs(A-O)*expi(angle(A-O)-pi/2)--intersectionpoint(incircle(A,B,C),I--I+O-A)-0.5*abs(A-O)*expi(angle(A-O)-pi/2),red+0.7); draw(A--B--C--A); draw(Circle(A,abs(foot(I,A,B)-A))); draw(incircle(A,B,C)); draw(I--A--O--Y); draw(Circle(p_a,x*abs(O-A)),red+0.7); draw(Circle(q_a,y*abs(O-A)),blue+0.7); label("$A$",A,(-1,1)); label("$I$",I,(-1,0));label("$O$",O,(-1,-1)); label("$P_A$",p_a,(0.5,1));label("$Q_A$",q_a,(1,0)); label("$X$",X,(1,0));label("$Y$",Y,(1,-1)); label("$X'$",X1,(1,0));label("$Y'$",Y1,(0,1)); label("$\omega$",I+r*expi(pi/12), (1,0)); label("$\omega_A$",p_a+x*abs(O-A)*expi(pi/6), (1,1)); label("$\Omega_A$",q_a+y*abs(O-A)*expi(pi/6), (1,0)); label("$\Omega_A'$",intersectionpoint(incircle(A,B,C),I--I+A-O)-abs(A-O)*expi(angle(A-O)-pi/2), (0,2)); label("$\omega_A'$",intersectionpoint(incircle(A,B,C),I--I+O-A)-0.5*abs(A-O)*expi(angle(A-O)-pi/2), (0,2)); dot(p_a^^q_a^^A^^I^^O^^X^^Y^^X1^^Y1);
[]
38
(Zuming Feng) Let $ABC$ be an acute, scalene triangle, and let $M$, $N$, and $P$ be the midpoints of $\overline{BC}$, $\overline{CA}$, and $\overline{AB}$, respectively. Let the perpendicular bisectors of $\overline{AB}$ and $\overline{AC}$ intersect ray $AM$ in points $D$ and $E$ respectively, and let lines $BD$ and $CE$ intersect in point $F$, inside of triangle $ABC$. Prove that points $A$, $N$, $F$, and $P$ all lie on one circle.
2008 USAMO Problem 2
Solution 1 (synthetic) Without Loss of Generality, assume $AB >AC$. It is sufficient to prove that $\angle OFA = 90^{\circ}$, where $O$ is the circumcenter of $\triangle{ABC},$ as this would immediately prove that $A,P,O,F,N$ are concyclic. By applying the Menelaus' Theorem in the Triangle $\triangle BFC$ for the transversal $E,M,D$, we have (in magnitude) \[\frac{FE}{EC} \cdot \frac{CM}{MB} \cdot \frac{BD}{DF} = 1 \iff \frac{FE}{EC} = \frac{DF}{BD}\] Here, we used that $BM=MC$, as $M$ is the midpoint of $BC$. Now, since $EC =EA$ and $BD=DA$, we have \[\frac{FE}{EA} = \frac{DF}{DA} \iff \frac{DA}{AE} = \frac{DF}{FE} \iff AF \text{ bisects exterior } \angle EFD\] Now, note that $OE$ bisects the exterior $\angle FED$ and $OD$ bisects exterior $\angle FDE$, making $O$ the $F$-excentre of $\triangle FED$. This implies that $OF$ bisects interior $\angle EFD$, making $OF \perp AF$, as was required. Solution 2 (complex) Let $A=1,B=b,C=c$ where $b,c$ all lie on the unit circle. Then $O$ is 0. As noted earlier, $(FOBC)$ is cyclic. We will find the ghost point $F',$ the second intersection of $OBC$ and $ANP$. We know that these two circles already intersect at $O$ so we can reflect over the line between their centers. The center of $ANPO$ is the midpoint of $AO$ namely $\frac12$. With the tangent formula and then taking the midpoint, we find that the center of $OBC$ is $\frac{bc}{b+c}.$ Then we want to find the reflection of 0 over the line through $\frac12$ and $\frac{bc}{b+c}.$ Then we get \begin{align*} f' &= \frac{\left(\frac{bc}{b+c}-\overline{\frac{bc}{b+c}}\right)\div2}{(1/2)-\overline{\frac{bc}{b+c}}}\\ &= \frac{\frac{bc-1}{2(b+c)}}{\frac{b+c-2}{2(b+c)}}\\ &= \frac{bc-1}{b+c-2}. \end{align*} Now it remains to show $\angle F'BA=\angle ABM;$ the other angle equality would follow by symmetry. Then we get: \begin{align*} \frac{f'-b}{b-a}\div\frac{b-a}{a-m} &=\frac{\frac{bc-1}{b+c-2}-b}{b-1}\div\frac{b-1}{1-\frac{b+c}2}\\ &=\frac{\frac{bc-1-b(b+c-2)}{b+c-2}(2-b+c)}{2(b-1)^2}\\ &=\frac{b^2-2b+1}{2(b-1)^2}\\ &=\frac12. \end{align*} Thus $\measuredangle F'BA=\measuredangle BAM,$ so $F'=F$ and we're done. ~cocohearts Solution 3 (synthetic) Without loss of generality $AB < AC$. The intersection of $NE$ and $PD$ is $O$, the circumcenter of $\triangle ABC$. Let $\angle BAM = y$ and $\angle CAM = z$. Note $D$ lies on the perpendicular bisector of $AB$, so $AD = BD$. So $\angle FBC = \angle B - \angle ABD = B - y$. Similarly, $\angle FCB = C - z$, so $\angle BFC = 180 - (B + C) + (y + z) = 2A$. Notice that $\angle BOC$ intercepts the minor arc $BC$ in the circumcircle of $\triangle ABC$, which is double $\angle A$. Hence $\angle BFC = \angle BOC$, so $BFOC$ is cyclic. Lemma. $\triangle FEO$ is directly similar to $\triangle NEM$ Proof. \[\angle OFE = \angle OFC = \angle OBC = \frac {1}{2}\cdot (180 - 2A) = 90 - A\] since $F$, $E$, $C$ are collinear, $BFOC$ is cyclic, and $OB = OC$. Also \[\angle ENM = 90 - \angle MNC = 90 - A\] because $NE\perp AC$, and $MNP$ is the medial triangle of $\triangle ABC$ so $AB \parallel MN$. Hence $\angle OFE = \angle ENM$. Notice that $\angle AEN = 90 - z = \angle CEN$ since $NE\perp AC$. $\angle FED = \angle MEC = 2z$. Then \[\angle FEO = \angle FED + \angle AEN = \angle CEM + \angle CEN = \angle NEM\] Hence $\angle FEO = \angle NEM$. Hence $\triangle FEO$ is similar to $\triangle NEM$ by AA similarity. It is easy to see that they are oriented such that they are directly similar. End Lemma By the similarity in the Lemma, $FE: EO = NE: EM\implies FE: EN = OE: EM$. $\angle FEN = \angle OEM$ so $\triangle FEN\sim\triangle OEM$ by SAS similarity. Hence \[\angle EMO = \angle ENF = \angle ONF\] Using essentially the same angle chasing, we can show that $\triangle PDM$ is directly similar to $\triangle FDO$. It follows that $\triangle PDF$ is directly similar to $\triangle MDO$. So \[\angle EMO = \angle DMO = \angle DPF = \angle OPF\] Hence $\angle OPF = \angle ONF$, so $FONP$ is cyclic. In other words, $F$ lies on the circumcircle of $\triangle PON$. Note that $\angle ONA = \angle OPA = 90$, so $APON$ is cyclic. In other words, $A$ lies on the circumcircle of $\triangle PON$. $A$, $P$, $N$, $O$, and $F$ all lie on the circumcircle of $\triangle PON$. Hence $A$, $P$, $F$, and $N$ lie on a circle, as desired. Solution 4 (synthetic) This solution utilizes the phantom point method. Clearly, APON are cyclic because $\angle OPA = \angle ONA = 90$. Let the circumcircles of triangles $APN$ and $BOC$ intersect at $F'$ and $O$. Lemma. If $A,B,C$ are points on circle $\omega$ with center $O$, and the tangents to $\omega$ at $B,C$ intersect at $Q$, then $AP$ is the symmedian from $A$ to $BC$. Proof. This is fairly easy to prove (as H, O are isogonal conjugates, plus using SAS similarity), but the author lacks time to write it up fully, and will do so soon. End Lemma It is easy to see $Q$ (the intersection of ray $OM$ and the circumcircle of $\triangle BOC$) is colinear with $A$ and $F'$, and because line $OM$ is the diameter of that circle, $\angle QBO = \angle QCO = 90$, so $Q$ is the point $Q$ in the lemma; hence, we may apply the lemma. From here, it is simple angle-chasing to show that $F'$ satisfies the original construction for $F$, showing $F=F'$; we are done. Solution 5 (trigonometric) By the Law of Sines, $\frac {\sin\angle BAM}{\sin\angle CAM} = \frac {\sin B}{\sin C} = \frac bc = \frac {b/AF}{c/AF} = \frac {\sin\angle AFC\cdot\sin\angle ABF}{\sin\angle ACF\cdot\sin\angle AFB}$. Since $\angle ABF = \angle ABD = \angle BAD = \angle BAM$ and similarly $\angle ACF = \angle CAM$, we cancel to get $\sin\angle AFC = \sin\angle AFB$. Obviously, $\angle AFB + \angle AFC > 180^\circ$ so $\angle AFC = \angle AFB$. Then $\angle FAB + \angle ABF = 180^\circ - \angle AFB = 180^\circ - \angle AFC = \angle FAC + \angle ACF$ and $\angle ABF + \angle ACF = \angle A = \angle FAB + \angle FAC$. Subtracting these two equations, $\angle FAB - \angle FCA = \angle FCA - \angle FAB$ so $\angle BAF = \angle ACF$. Therefore, $\triangle ABF\sim\triangle CAF$ (by AA similarity), so a spiral similarity centered at $F$ takes $B$ to $A$ and $A$ to $C$. Therefore, it takes the midpoint of $\overline{BA}$ to the midpoint of $\overline{AC}$, or $P$ to $N$. So $\angle APF = \angle CNF = 180^\circ - \angle ANF$ and $APFN$ is cyclic. Solution 6 (isogonal conjugates) Construct $T$ on $AM$ such that $\angle BCT = \angle ACF$. Then $\angle BCT = \angle CAM$. Then $\triangle AMC\sim\triangle CMT$, so $\frac {AM}{CM} = \frac {CM}{TM}$, or $\frac {AM}{BM} = \frac {BM}{TM}$. Then $\triangle AMB\sim\triangle BMT$, so $\angle CBT = \angle BAM = \angle FBA$. Then we have $\angle CBT = \angle ABF$ and $\angle BCT = \angle ACF$. So $T$ and $F$ are isogonally conjugate. Thus $\angle BAF = \angle CAM$. Then $\angle AFB = 180 - \angle ABF - \angle BAF = 180 - \angle BAM - \angle CAM = 180 - \angle BAC$. If $O$ is the circumcenter of $\triangle ABC$ then $\angle BFC = 2\angle BAC = \angle BOC$ so $BFOC$ is cyclic. Then $\angle BFO = 180 - \angle BOC = 180 - (90 - \angle BAC) = 90 + \angle BAC$. Then $\angle AFO = 360 - \angle AFB - \angle BFO = 360 - (180 - \angle BAC) - (90 + \angle BAC) = 90$. Then $\triangle AFO$ is a right triangle. Now by the homothety centered at $A$ with ratio $\frac {1}{2}$, $B$ is taken to $P$ and $C$ is taken to $N$. Thus $O$ is taken to the circumcenter of $\triangle APN$ and is the midpoint of $AO$, which is also the circumcenter of $\triangle AFO$, so $A,P,N,F,O$ all lie on a circle. Solution 7 (symmedians) Median $AM$ of a triangle $ABC$ implies $\frac {\sin{BAM}}{\sin{CAM}} = \frac {\sin{B}}{\sin{C}}$. Trig ceva for $F$ shows that $AF$ is a symmedian. Then $FP$ is a median, use the lemma again to show that $AFP = C$, and similarly $AFN = B$, so you're done. Solution 8 (inversion) (Official Solution #2) Invert the figure about a circle centered at $A$, and let $X'$ denote the image of the point $X$ under this inversion. Find point $F_1'$ so that $AB'F_1'C'$ is a parallelogram and let $Z'$ denote the center of this parallelogram. Note that $\triangle BAC\sim\triangle C'AB'$ and $\triangle BAD\sim\triangle D'AB'$. Because $M$ is the midpoint of $BC$ and $Z'$ is the midpoint of $B'C'$, we also have $\triangle BAM\sim\triangle C'AZ'$. Thus \[\angle AF_1'B' = \angle F_1'AC' = \angle Z'AC' = \angle MAB = \angle DAB = \angle DBA = \angle AD'B'.\] Hence quadrilateral $AB'D'F_1'$ is cyclic and, by a similar argument, quadrilateral $AC'E'F_1'$ is also cyclic. Because the images under the inversion of lines $BDF$ and $CFE$ are circles that intersect in $A$ and $F'$, it follows that $F_1' = F'$. Next note that $B'$, $Z'$, and $C'$ are collinear and are the images of $P'$, $F'$, and $N'$, respectively, under a homothety centered at $A$ and with ratio $1/2$. It follows that $P'$, $F'$, and $N'$ are collinear, and then that the points $A$, $P$, $F$, and $N$ lie on a circle. [Image: images/usamo/2008_USAMO_Problem_2_0.png] Solution 9 (Official Solution #1) Let $O$ be the circumcenter of triangle $ABC$. We prove that \[\angle APO = \angle ANO = \angle AFO = 90^\circ.\qquad\qquad (1)\] It will then follow that $A, P, O, F, N$ lie on the circle with diameter $\overline{AO}$. Indeed, the fact that the first two angles in $(1)$ are right is immediate because $\overline{OP}$ and $\overline{ON}$ are the perpendicular bisectors of $\overline{AB}$ and $\overline{AC}$, respectively. Thus we need only prove that $\angle AFO = 90^\circ$. [Image: images/usamo/2008_USAMO_Problem_2_1.png] We may assume, without loss of generality, that $AB > AC$. This leads to configurations similar to the ones shown above. The proof can be adapted to other configurations. Because $\overline{PO}$ is the perpendicular bisector of $\overline{AB}$, it follows that triangle $ADB$ is an isosceles triangle with $AD = BD$. Likewise, triangle $AEC$ is isosceles with $AE = CE$. Let $x = \angle ABD = \angle BAD$ and $y = \angle CAE = \angle ACE$, so $x + y = \angle BAC$. Applying the Law of Sines to triangles $ABM$ and $ACM$ gives \[\frac{BM}{\sin x} = \frac{AB}{\sin\angle BMA}\quad\text{and}\quad\frac{CM}{\sin y} = \frac{AC}{\sin\angle CMA}.\] Taking the quotient of the two equations and noting that $\sin\angle BMA = \sin\angle CMA$, we find \[\frac{BM}{CM}\frac{\sin y}{\sin x} = \frac{AB}{AC}\frac{\sin\angle CMA}{\sin\angle BMA} = \frac{AB}{AC}.\] Because $BM = MC$, we have \[\frac{\sin x}{\sin y} = \frac{AC}{AB}.\qquad\qquad (2)\] Applying the Law of Sines to triangles $ABF$ and $ACF$, we find \[\frac{AF}{\sin x} = \frac{AB}{\sin\angle AFB}\quad\text{and}\quad\frac{AF}{\sin y} = \frac{AC}{\sin\angle AFC}.\] Taking the quotient of the two equations yields \[\frac{\sin x}{\sin y} = \frac{AC}{AB}\frac{\sin\angle AFB}{\sin\angle AFC},\] so by $(2)$, \[\sin\angle AFB = \sin\angle AFC.\qquad\qquad (3)\] Because $\angle ADF$ is an exterior angle to triangle $ADB$, we have $\angle EDF = 2x$. Similarly, $\angle DEF = 2y$. Hence \[\angle EFD = 180^\circ - 2x - 2y = 180^\circ - 2\angle BAC.\] Thus $\angle BFC = 2\angle BAC = \angle BOC$, so $BOFC$ is cyclic. In addition, \[\angle AFB + \angle AFC = 360^\circ - 2\angle BAC > 180^\circ,\] and hence, from $(3)$, $\angle AFB = \angle AFC = 180^\circ - \angle BAC$. Because $BOFC$ is cyclic and $\triangle BOC$ is isosceles with vertex angle $\angle BOC = 2\angle BAC$, we have $\angle OFB = \angle OCB = 90^\circ - \angle BAC$. Therefore, \[\angle AFO = \angle AFB - \angle OFB = (180^\circ - \angle BAC) - (90^\circ - \angle BAC) = 90^\circ.\] This completes the proof. Solution 10 (Anti-Steiner point) First, let $O$ be the circumcenter of $\triangle{ABC}$. Note that since $AP \perp PO$ and $AN \perp NO$, then $A$, $N$, $O$ and $P$, are concyclic. Notice that $NM \parallel AB$ and $AB \perp PO$, which means $NM \perp PO$. It follows analogously that $PM \perp NO$. This means that $M$ is the orthocenter of triangle ${NOP}$. Now consider what happens when we reflect line $AM$ over line $PO$. Since $PO$ is just the perpendicular bisector of $AB$, point $A$ will map to point $B$, and point $D$, which is both line $AM$ and $PO$, will map to itself. Therefore, we get line $BD$ from this reflection. It follows analogously that by reflecting line $AM$ over line $NO$, we get $CE$. Since line $AM$ passes through $M$, the orthocenter of triangle ${NOP}$, its reflections over sides $PO$ and $NO$, which correspond to $BD$ and $CE$ respectively, intersect on $\odot{NOP}$ (this is the Anti-Steiner point application). Therefore, $F$, the intersection of $BD$ and $CE$, lies on $\odot{NOP}$. Since $A$, $N$, $O$, and $P$ are concyclic, then $\odot{NOP}$ is the same as $\odot{ANP}$, so $F$ lies on $\odot{ANP}$, which is the same as saying $A$, $N$, $F$, and $P$ are concyclic, as desired. Solution 11 (Bary from EGMO) First, we find the coordinates of $D$. As $D$ lies on $AM$, we know $D=(t:1:1)$ for some $T$. Now, we find \[0=b^2(t-1)+(a^2-c^2) \implies t=\frac{c^2+b^2-a^2}{b^2}.\] Thus we obtain \[D = (2S_A:c^2:c^2).\] (Note we are using Conway's notation here). Similarly, $E = (2S_A:b^2:b^2)$, and it follows that \[F=(2S_A:b^2:c^2).\] The sum of the coordinates of $F$ is \[(b^2+c^2-a^2)+b^2+c^2=2b^2+2c^2-a^2.\] Hence, the reflection of $A$ over $F$ is simply \[2F-A=(-a^2:2b^2:2c^2).\] Then, it is obvious that $F$ lies on $(ABC):-a^2yz-b^2zx-c^2xy=0$. Alternate solutions are always welcome. If you have a different, elegant solution to this problem, please add it to this page.
// Block 1 /* setup and variables */ size(280); pathpen = black + linewidth(0.7); pointpen = black; pen s = fontsize(8); pair B=(0,0),C=(5,0),A=(1,4); /* A.x > C.x/2 */ /* construction and drawing */ pair P=(A+B)/2,M=(B+C)/2,N=(A+C)/2,D=IP(A--M,P--P+5*(P-bisectorpoint(A,B))),E=IP(A--M,N--N+5*(bisectorpoint(A,C)-N)),F=IP(B--B+5*(D-B),C--C+5*(E-C)),O=circumcenter(A,B,C); D(MP("A",A,(0,1),s)--MP("B",B,SW,s)--MP("C",C,SE,s)--A--MP("M",M,s)); D(B--D(MP("D",D,NE,s))--MP("P",P,(-1,0),s)--D(MP("O",O,(0,1),s))); D(D(MP("E",E,SW,s))--MP("N",N,(1,0),s)); D(C--D(MP("F",F,NW,s))); D(B--O--C,linetype("4 4")+linewidth(0.7)); D(M--N,linetype("4 4")+linewidth(0.7)); D(rightanglemark(A,P,D,3.5));D(rightanglemark(A,N,E,3.5)); D(anglemark(B,A,C)); MP("y",A,(0,-6));MP("z",A,(4,-6)); D(anglemark(B,F,C,4),linewidth(0.6));D(anglemark(B,O,C,4),linewidth(0.6)); picture p = new picture; draw(p,circumcircle(B,O,C),linetype("1 4")+linewidth(0.7)); clip(p,B+(-5,0)--B+(-5,A.y+2)--C+(5,A.y+2)--C+(5,0)--cycle); add(p); /* D(circumcircle(A,P,N),linetype("4 4")+linewidth(0.7)); */ // Block 2 /* setup and variables */ size(280); pathpen = black + linewidth(0.7); pointpen = black; pen s = fontsize(8); pair B=(0,0),C=(5,0),A=(1,4); /* A.x > C.x/2 */ /* construction and drawing */ pair P=(A+B)/2,M=(B+C)/2,N=(A+C)/2,D=IP(A--M,P--P+5*(P-bisectorpoint(A,B))),E=IP(A--M,N--N+5*(bisectorpoint(A,C)-N)),F=IP(B--B+5*(D-B),C--C+5*(E-C)),O=circumcenter(A,B,C); D(MP("A",A,(0,1),s)--MP("B",B,SW,s)--MP("C",C,SE,s)--A--MP("M",M,s)); D(B--D(MP("D",D,NE,s))--MP("P",P,(-1,0),s)--D(MP("O",O,(1,0),s))); D(D(MP("E",E,SW,s))--MP("N",N,(1,0),s)); D(C--D(MP("F",F,NW,s))); D(B--O--C,linetype("4 4")+linewidth(0.7)); D(F--N); D(O--M); D(rightanglemark(A,P,D,3.5));D(rightanglemark(A,N,E,3.5)); /* commented in above asy D(circumcircle(A,P,N),linetype("4 4")+linewidth(0.7)); D(anglemark(B,A,C)); MP("y",A,(0,-6));MP("z",A,(4,-6)); D(anglemark(B,F,C,4),linewidth(0.6));D(anglemark(B,O,C,4),linewidth(0.6)); picture p = new picture; draw(p,circumcircle(B,O,C),linetype("1 4")+linewidth(0.7)); clip(p,B+(-5,0)--B+(-5,A.y+2)--C+(5,A.y+2)--C+(5,0)--cycle); add(p); */ // Block 3 /* setup and variables */ size(280); pathpen = black + linewidth(0.7); pointpen = black; pen s = fontsize(8); pair B=(0,0),C=(5,0),A=(4,4); /* A.x > C.x/2 */ /* construction and drawing */ pair P=(A+B)/2,M=(B+C)/2,N=(A+C)/2,D=IP(A--M,P--P+5*(P-bisectorpoint(A,B))),E=IP(A--M,N--N+5*(bisectorpoint(A,C)-N)),F=IP(B--B+5*(D-B),C--C+5*(E-C)),O=circumcenter(A,B,C); D(MP("A",A,(0,1),s)--MP("B",B,SW,s)--MP("C",C,SE,s)--A--MP("M",M,s)); D(C--D(MP("E",E,NW,s))--MP("N",N,(1,0),s)--D(MP("O",O,SW,s))); D(D(MP("D",D,SE,s))--MP("P",P,W,s)); D(B--D(MP("F",F,s))); D(O--A--F,linetype("4 4")+linewidth(0.7)); D(MP("O'",circumcenter(A,P,N),NW,s)); D(circumcircle(A,P,N),linetype("4 4")+linewidth(0.7)); D(rightanglemark(A,P,D,3.5));D(rightanglemark(A,N,E,3.5)); picture p = new picture; draw(p,circumcircle(B,O,C),linetype("1 4")+linewidth(0.7)); draw(p,circumcircle(A,B,C),linetype("1 4")+linewidth(0.7)); clip(p,B+(-5,0)--B+(-5,A.y+2)--C+(5,A.y+2)--C+(5,0)--cycle); add(p);
["https://artofproblemsolving.com/wiki/images/0/05/2008usamo2-sol8.png", "https://artofproblemsolving.com/wiki/images/d/df/2008usamo2-sol9.png"]
39
(Gabriel Carroll) Let $n$ be a positive integer. Denote by $S_n$ the set of points $(x, y)$ with integer coordinates such that \[\left|x\right| + \left|y + \frac {1}{2}\right| < n\] A path is a sequence of distinct points $(x_1 , y_1 ), (x_2 , y_2 ), \ldots , (x_\ell, y_\ell)$ in $S_n$ such that, for $i = 2, \ldots , \ell$, the distance between $(x_i , y_i )$ and $(x_{i - 1} , y_{i - 1} )$ is $1$ (in other words, the points $(x_i , y_i )$ and $(x_{i - 1} , y_{i - 1} )$ are neighbors in the lattice of points with integer coordinates). Prove that the points in $S_n$ cannot be partitioned into fewer than $n$ paths (a partition of $S_n$ into $m$ paths is a set $\mathcal{P}$ of $m$ nonempty paths such that each point in $S_n$ appears in exactly one of the $m$ paths in $\mathcal{P}$).
2008 USAMO Problem 3
Solution 1 Color all the points in $S_{n}$ red or black such that each row of points starts and ends with a red point, and alternates between red and black for each point in the row. This creates a checkerboard pattern, except that the middle two rows are identical.          Examples for $n=4$ Suppose there is a partition of $m < n$ paths that works. For each of the $m$ paths, we break a path into two separate paths wherever there are consecutive red points. This only happens only with the $n$ red pairs in the middle two rows. We now have $m + l,\, l \le n$ paths whose colors are strictly alternating. In a path with alternating colors, there can be at most one more red dot than the number of black dots (which occurs when both endpoints are red). Thus there can be no more than $m + l$ red dots than black dots in $S_n$. There are $2n$ more red points than black points, so \[2n \le m + l \le m + n\] which implies that $n \le m$, contradiction. Solution 2 Suppose you have a partition of less than $n$ paths. Then start from $(0,n - 1)$ and work your way down to $(0, - n)$ along the right edge of $S_n$ performing the following algorithm when going from each point. Example for $S_4$ If a path already has the point you're coming from and the point you're going to as adjacent in the path, do nothing. If not the first case, and the point you're coming from and the point you're going to are both endpoints of paths, join them (one less path). If not the first case, and there is exactly one endpoint among the point you're coming from and the point you're going to, remove a segment from the one in the middle of a path (paths +1) and now you have two endpoints; join them (paths -1). If the point in the middle of the path is the one you're coming from, remove the segment that doesn't come from the point that came before it. The number of paths remains the same. If not the first case, and both points are in the middle of a path, which is impossible. Since the two points are in the middle of the path, they are adjacent to two other points. But they are also adjacent to each other, so both are adjacent to at least three points. Then, no two points adjacent to at least three others are travelled consecutively. Thus, given any configuration we can create the path shown above without increasing the number of paths. The remaining points form $S_{n - 1}$. Now suppose for some positive integer $n$, we have a partition into less than $n$ paths. Apply the algorithm to make the path shown above. Then the remaining points are partitioned into less than $n - 1$ paths. Apply the algorithm again. Repeat until we show that $S_1$ is partitioned into less than $1$ path, contradiction. Solution 3 We induct on $n$ to prove that an $n - 1$-path partition is impossible. This can be restated as saying that we cannot fit $2n^2 - n + 1$ edges into the graph with each vertex having degree at most 2. The base case is trivial (2 edges when there only is 1). Suppose it was possible for $n + 1$, and we'll prove it's possible for $n$. Call the 'complete' network (graph) of points $G_{n + 1}$ and the $n$-path partition for $n + 1$ is a subgraph of $G_{n + 1}$, $H_{n + 1}$. There are a total of $2(n + 1)^2 - n = 2n^2 + 3n + 2$ edges in $H_{n + 1}$ out of $4n^2 + 4n + 1$ in $G_{n + 1}$ (not hard to prove), and each vertex has maximum order 2. Now consider the complement of $H_{n + 1}$ in $G_{n + 1}$, that is, take all the edges in $G_{n + 1}$ that are not in $H_{n + 1}$ and of course all the vertices. Call this $F_{n + 1}$ We will trim $F_{n + 1}$ down a bit to get $H_n$. First, call the points in $S_{n + 1}$ but not $S_n$ exterior points, and the points in $S_n$ interior points. $F_{n + 1}$ has $2n^2 + n - 1$ edges. Since the interior points have degree 4 in $G_{n + 1}$, they have degree at least 2 in $F_{n + 1}$, for a total degree of $4n^2 + m$ where $0\le m\le 2n - 2$ since the total overall degree is $2(2n^2 + n - 1) = 4n^2 + 2n - 2$. This makes the total degree of the exterior points $2n - 2 - m$. Since the exterior points are not connected in $G_{n + 1}$, these $2n - 2 - m$ edges must connect on exterior point to an interior point. I then take away $2n - 2$ edges and the exterior points, yielding $2n^2 - n + 1$ edges and the interior points, which is $H_n$, as follows: First take away those $2n - 2 - m$ interior-exterior edges and shave off all the exterior points. Then the total degree (now just of the interior points) must be $4n^2 - 2n + 2 + 2m$. Let the number of 0-degree vertices be $a$, 1-degree vertices be $b$, 2-degree vertices be $c$, 3-degree vertices be $d$, and 4-degree vertices be $e$. Since all the vertices began as 2-degree or higher, $2a + b\le2n - 2 - m$. Moreover, the total degree is $b + 2c + 3d + 4e = 2(2n^2) + (d + 2e) - (b + 2a) = 4n^2 - 2n + 2 + 2m$. So $d + 2e = b + 2a - (2n - 2 + 2m)\le (2n - 2 - m) - (2n - 2 - 2m) = m$ So we can use our last $m$ edges to remove any excess degree on vertices with degree 3 or 4, yielding $H_n$. Alternate solutions are always welcome. If you have a different, elegant solution to this problem, please add it to this page.
// Block 1 /* variable declarations */ int n = 4; /* code */ pen r = red, b = black; int absol(int k){if(k >= 0) return k; else return -1*k-1;} pen col(bool k){if(k) return r; else return b;} for(int y = -n; y < n; ++y){ bool b = true; for(int x = absol(y)-n+1; x < n-absol(y); ++x){ dot((x,y),col(b)); b = !b; } } draw((0.5,0.5)--(0.5,1.5),white); /* to force rendering by using a white line */ // Block 2 /* variable declarations */ int n = 4; /* code */ pen r = red, b = black; int absol(int k){if(k >= 0) return k; else return -1*k-1;} pen col(bool k){if(k) return r; else return b;} for(int y = -n; y < n; ++y){ bool b = true; for(int x = absol(y)-n+1; x < n-absol(y); ++x){ dot((x,y),col(b)); b = !b; } } draw((0.5,0.5)--(0.5,1.5),white); /* to force rendering by using a white line */ draw((-1,2)--(-1,1)--(0,1)--(1,1)--(1,0),linewidth(0.7)); draw((1,0)--(1,-1),linetype("3 3")+linewidth(0.7)); draw((1,-1)--(1,-2)--(2,-2),linewidth(0.7)); // Block 3 /* variable declarations */ int n = 4; /* code */ int absol(int k){if(k >= 0) return k; else return -1*k-1;} for(int y = -n; y < n; ++y){ for(int x = absol(y)-n+1; x < n-absol(y); ++x){ dot((x,y),black); /* label((string) x + " " + (string) y, (x,y), SE); */ /* addendum */ if((x==n-absol(y)-1 && y >= 0) || (x==n-absol(y)-2 && y < 0)){ draw((x,y-0.2)--(x,y-0.8),EndArrow); } if(x==n-absol(y)-2 && y >= 0){ draw((x+0.2,y)--(x+0.8,y),EndArrow); } if(x==n-absol(y)-1 && y < 0 && y > -n){ draw((x-0.2,y)--(x-0.8,y),EndArrow); } } } draw((0.5,0.5)--(0.5,1.5),white); /* to force rendering by using a white line */ dot((0,-n),linewidth(5)+red);
[]
40
(Gregory Galparin) Let $\mathcal{P}$ be a convex polygon with $n$ sides, $n\ge3$. Any set of $n - 3$ diagonals of $\mathcal{P}$ that do not intersect in the interior of the polygon determine a triangulation of $\mathcal{P}$ into $n - 2$ triangles. If $\mathcal{P}$ is regular and there is a triangulation of $\mathcal{P}$ consisting of only isosceles triangles, find all the possible values of $n$.
2008 USAMO Problem 4
We label the vertices of $\mathcal{P}$ as $P_0, P_1, P_2, \ldots, P_n$. Consider a diagonal $d = \overline{P_a\,P_{a+k}},\,k \le n/2$ in the triangulation. We show that $k$ must have the form $2^{m}$ for some nonnegative integer $m$. This diagonal partitions $\mathcal{P}$ into two regions $\mathcal{Q},\, \mathcal{R}$, and is the side of an isosceles triangle in both regions. Without loss of generality suppose the area of $Q$ is less than the area of $R$ (so the center of $P$ does not lie in the interior of $Q$); it follows that the lengths of the edges and diagonals in $Q$ are all smaller than $d$. Thus $d$ must the be the base of the isosceles triangle in $Q$, from which it follows that the isosceles triangle is $\triangle P_aP_{a+k/2}\,P_{a+k}$, and so $2|k$. Repeating this process on the legs of isosceles triangle ($\overline{P_aP_{a+k/2}},\,\overline{P_{a+k}P_{a+k/2}}$), it follows that $k = 2^m$ for some positive integer $m$ (if we allow degeneracy, then we can also let $m=0$).       An example for $n=17$, $k=8$An isosceles triangle containing the center for $n=20$, $(x,y,z) = (0,8,16)$ Now take the isosceles triangle $P_xP_yP_z,\,0 \le x < y < z < n$ in the triangulation that contains the center of $\mathcal{P}$ in its interior; if a diagonal passes through the center, select either of the isosceles triangles with that diagonal as an edge. Without loss of generality, suppose $P_xP_y = P_yP_z$. From our previous result, it follows that there are $2^a$ edges of $P$ on the minor arcs of $P_xP_y,\, P_yP_z$ and $2^b$ edges of $P$ on the minor arc of $P_zP_x$, for positive integers $a,\,b$. Therefore, we can write \[n = 2 \cdot 2^a + 2^b = 2^{a+1} + 2^{b},\] so $n$ must be the sum of two powers of $2$. We now claim that this condition is sufficient. Suppose without loss of generality that $a+1 \ge b$; then we rewrite this as \[n = 2^{b}(2^{a-b+1}+1).\] Lemma 1: All regular polygons with $n = 2^k + 1$ or $n=4$ have triangulations that meet the conditions. By induction, it follows that we can cover all the desired $n$. For $n = 3,4$, this is trivial. For $k>1$, we construct the diagonals of equal length $\overline{P_0P_{2^{k-1}}}$ and $\overline{P_{2^{k-1}+1}P_0}$. This partitions $\mathcal{P}$ into $3$ regions: an isosceles $\triangle P_0P_{2^{k-1}}P_{2^{k-1}+1}$, and two other regions. For these two regions, we can recursively construct the isosceles triangles defined above in the second paragraph. It follows that we have constructed $2(2^{k-1}-1) + (1) = 2^k-1 = n-2$ isosceles triangles with non-intersecting diagonals, as desired. An example for $n=17 = 2^{4}+1$ Lemma 2: If a regular polygon with $n$ sides has a working triangulation, then the regular polygon with $2n$ sides also has a triangulation that meets the conditions. We construct the diagonals $\overline{P_0P_2},\ \overline{P_2P_4},\ \ldots \overline{P_{2n-2}P_0}$. This partitions $\mathcal{P}$ into $n$ isosceles triangles of the form $\triangle P_{2k}P_{2k+1}P_{2k+2}$, as well as a central regular polygon with $n$ sides. However, we know that there exists a triangulation for the $n$-sided polygon that yields $n-2$ isosceles triangles. Thus, we have created $(n) + (n-2) = 2n-2$ isosceles triangles with non-intersecting diagonals, as desired. An example for $n=10,\, n/2 = 5$ In summary, the answer is all $n$ that can be written in the form $2^{a+1} + 2^{b},\, a,b \ge 0$. Alternatively, this condition can be expressed as either $n=2^{k},\, k \ge 2$ (this is the case when $a+1 = b$) or $n$ is the sum of two distinct powers of $2$, where $1= 2^0$ is considered a power of $2$.
// Block 1 size(200); defaultpen(linewidth(0.7)+fontsize(10)); int n = 17; real r = 1; real rad = pi/2; pair pt(real k=0) { return (r*expi(rad-2*pi*k/n)); } for(int i=0; i<n; ++i){ dot(pt(i)); draw(pt(i)--pt(i+1)); } draw(pt()--pt(8)); draw(pt()--pt(4)--pt(8),linewidth(0.7)+linetype("4 4")); draw(pt()--pt(2)--pt(4),linewidth(0.7)+linetype("4 4")); label("\(d\)",(pt()+pt(8))/2,WNW); label("\(\mathcal{Q}\)",(pt()+pt(6))/2,SE); label("\(\mathcal{R}\)",(pt()+pt(10))/2,W); label("\(P_0\)",pt(),N); label("\(P_1\)",pt(1),NNE); label("\(P_8\)",pt(8),S); label("\(P_{16}\)",pt(-1),NNW); label("\(\cdots\)",pt(2),NE); // Block 2 size(200); defaultpen(linewidth(0.7)+fontsize(10)); int n = 20; real r = 1; real rad = pi/2; pair pt(real k=0) { return (r*expi(rad-2*pi*k/n)); } for(int i=0; i<n; ++i){ dot(pt(i)); draw(pt(i)--pt(i+1)); } draw(pt()--pt(8)--pt(16)--cycle); label("\(O\)",(0,0),W); dot((0,0)); draw(pt()--pt(4)--pt(8)--pt(6)--pt(4)--pt(2)--pt()--pt(18)--pt(16)--pt(12)--pt(8)--pt(10)--pt(12)--pt(14)--pt(16),linewidth(0.3)+linetype("4 4")); label("\(P_0\)",pt(),N); label("\(P_1\)",pt(1),NNE); label("\(P_{19}\)",pt(-1),NNW); label("\(P_{8}\)",pt(8),SE); label("\(P_{16}\)",pt(16),W); label("\(\cdots\)",pt(2),NE); // Block 3 size(200); defaultpen(linewidth(0.7)+fontsize(10)); int n = 17; real r = 1; real rad = pi/2; pair pt(real k=0) { return (r*expi(rad-2*pi*k/n)); } for(int i=0; i<n; ++i){ dot(pt(i)); draw(pt(i)--pt(i+1)); } /* could rewrite recursively, if someone wants to do .. */ draw(pt(8)--pt()--pt(9)); draw(pt()--pt(4)--pt(8)); draw(pt()--pt(2)--pt(4)); draw(pt()--pt(1)--pt(2)); draw(pt(2)--pt(3)--pt(4)); draw(pt(4)--pt(6)--pt(8)); draw(pt(4)--pt(5)--pt(6)); draw(pt(6)--pt(7)--pt(8)); draw(pt(9)--pt(13)--pt(17)); draw(pt(9)--pt(11)--pt(13)); draw(pt(9)--pt(10)--pt(11)); draw(pt(11)--pt(12)--pt(13)); draw(pt(13)--pt(15)--pt(17)); draw(pt(13)--pt(14)--pt(15)); draw(pt(15)--pt(16)--pt(17)); label("\(P_0\)",pt(),N); label("\(P_1\)",pt(1),NNE); label("\(P_{16}\)",pt(-1),NNW); label("\(\cdots\)",pt(2),NE); // Block 4 size(200); defaultpen(linewidth(0.7)+fontsize(10)); int n = 10; real r = 1; real rad = pi/2; pair pt(real k=0) { return (r*expi(rad-2*pi*k/n)); } for(int i=0; i<n; ++i){ dot(pt(i)); draw(pt(i)--pt(i+1)); } draw(pt()--pt(2)--pt(4)--pt(6)--pt(8)--cycle); draw(pt()--pt(4)--pt(6)--cycle,linewidth(0.5)+linetype("4 4")); label("\(P_0\)",pt(),N); label("\(P_1\)",pt(1),NNE); label("\(P_{2}\)",pt(2),NE); label("\(P_{3}\)",pt(3),E); label("\(P_{4}\)",pt(4),SE); label("\(P_{5}\)",pt(5),S); label("\(P_{6}\)",pt(6),SW); label("\(P_{7}\)",pt(7),W); label("\(P_{8}\)",pt(8),NW); label("\(P_{9}\)",pt(9),NNW); // Block 5 size(200); defaultpen(linewidth(0.7)+fontsize(10)); int n = 17; real r = 1; real rad = pi/2; pair pt(real k=0) { return (r*expi(rad-2*pi*k/n)); } for(int i=0; i<n; ++i){ dot(pt(i)); draw(pt(i)--pt(i+1)); } draw(pt()--pt(8)); draw(pt()--pt(4)--pt(8),linewidth(0.7)+linetype("4 4")); draw(pt()--pt(2)--pt(4),linewidth(0.7)+linetype("4 4")); label("\(d\)",(pt()+pt(8))/2,WNW); label("\(\mathcal{Q}\)",(pt()+pt(6))/2,SE); label("\(\mathcal{R}\)",(pt()+pt(10))/2,W); label("\(P_0\)",pt(),N); label("\(P_1\)",pt(1),NNE); label("\(P_8\)",pt(8),S); label("\(P_{16}\)",pt(-1),NNW); label("\(\cdots\)",pt(2),NE); // Block 6 size(200); defaultpen(linewidth(0.7)+fontsize(10)); int n = 20; real r = 1; real rad = pi/2; pair pt(real k=0) { return (r*expi(rad-2*pi*k/n)); } for(int i=0; i<n; ++i){ dot(pt(i)); draw(pt(i)--pt(i+1)); } draw(pt()--pt(8)--pt(16)--cycle); label("\(O\)",(0,0),W); dot((0,0)); draw(pt()--pt(4)--pt(8)--pt(6)--pt(4)--pt(2)--pt()--pt(18)--pt(16)--pt(12)--pt(8)--pt(10)--pt(12)--pt(14)--pt(16),linewidth(0.3)+linetype("4 4")); label("\(P_0\)",pt(),N); label("\(P_1\)",pt(1),NNE); label("\(P_{19}\)",pt(-1),NNW); label("\(P_{8}\)",pt(8),SE); label("\(P_{16}\)",pt(16),W); label("\(\cdots\)",pt(2),NE); // Block 7 size(200); defaultpen(linewidth(0.7)+fontsize(10)); int n = 17; real r = 1; real rad = pi/2; pair pt(real k=0) { return (r*expi(rad-2*pi*k/n)); } for(int i=0; i<n; ++i){ dot(pt(i)); draw(pt(i)--pt(i+1)); } /* could rewrite recursively, if someone wants to do .. */ draw(pt(8)--pt()--pt(9)); draw(pt()--pt(4)--pt(8)); draw(pt()--pt(2)--pt(4)); draw(pt()--pt(1)--pt(2)); draw(pt(2)--pt(3)--pt(4)); draw(pt(4)--pt(6)--pt(8)); draw(pt(4)--pt(5)--pt(6)); draw(pt(6)--pt(7)--pt(8)); draw(pt(9)--pt(13)--pt(17)); draw(pt(9)--pt(11)--pt(13)); draw(pt(9)--pt(10)--pt(11)); draw(pt(11)--pt(12)--pt(13)); draw(pt(13)--pt(15)--pt(17)); draw(pt(13)--pt(14)--pt(15)); draw(pt(15)--pt(16)--pt(17)); label("\(P_0\)",pt(),N); label("\(P_1\)",pt(1),NNE); label("\(P_{16}\)",pt(-1),NNW); label("\(\cdots\)",pt(2),NE); // Block 8 size(200); defaultpen(linewidth(0.7)+fontsize(10)); int n = 10; real r = 1; real rad = pi/2; pair pt(real k=0) { return (r*expi(rad-2*pi*k/n)); } for(int i=0; i<n; ++i){ dot(pt(i)); draw(pt(i)--pt(i+1)); } draw(pt()--pt(2)--pt(4)--pt(6)--pt(8)--cycle); draw(pt()--pt(4)--pt(6)--cycle,linewidth(0.5)+linetype("4 4")); label("\(P_0\)",pt(),N); label("\(P_1\)",pt(1),NNE); label("\(P_{2}\)",pt(2),NE); label("\(P_{3}\)",pt(3),E); label("\(P_{4}\)",pt(4),SE); label("\(P_{5}\)",pt(5),S); label("\(P_{6}\)",pt(6),SW); label("\(P_{7}\)",pt(7),W); label("\(P_{8}\)",pt(8),NW); label("\(P_{9}\)",pt(9),NNW);
[]
41
Trapezoid $ABCD$, with $\overline{AB}||\overline{CD}$, is inscribed in circle $\omega$ and point $G$ lies inside triangle $BCD$. Rays $AG$ and $BG$ meet $\omega$ again at points $P$ and $Q$, respectively. Let the line through $G$ parallel to $\overline{AB}$ intersect $\overline{BD}$ and $\overline{BC}$ at points $R$ and $S$, respectively. Prove that quadrilateral $PQRS$ is cyclic if and only if $\overline{BG}$ bisects $\angle CBD$.
2009 USAMO Problem 5
We will use directed angles in this solution. Extend $QR$ to $T$ as follows: If: Note that \begin{align*}\measuredangle GBT+\measuredangle TRG&=\frac{m\widehat{TQ}}{2}+\measuredangle TRB+\measuredangle BRG\\ &=\frac{m\widehat{TQ}+m\widehat{DQ}+m\widehat{CB}+m\widehat{BT}}{2}.\\ \end{align*} Thus, $BTRG$ is cyclic. Also, note that $GSCP$ is cyclic because \begin{align*}\measuredangle CSG+\measuredangle GPC&=\measuredangle CBA+\measuredangle APC\\ &=180^\circ\text{ or }0^\circ, \end{align*} depending on the configuration. Next, we have $T, G, C$ are collinear since \[\measuredangle GTR=\measuredangle GBR=\frac{m\widehat{DQ}}{2}=\frac{m\widehat{QC}}{2}=\measuredangle CTQ.\] Therefore, \begin{align*}\measuredangle RQP+\measuredangle PSR&=\frac{m\widehat{PBT}}{2}+\measuredangle PCG\\ &=\frac{m\widehat{PBT}+m\widehat{TDP}}{2}\\ &=180^\circ \end{align*}, so $PQRS$ is cyclic. Only If: These steps can be reversed.
// Block 1 import cse5; import graph; import olympiad; dotfactor = 3; unitsize(1.5inch); path circle = Circle(origin, 1); draw(circle); pair A = (-.6, .8), B = (.6, .8), C = (.9, -sqrt(.19)), D = (-.9, -sqrt(.19)), G = bisectorpoint(C, B, D); draw(A--B--C--D--cycle); draw(B--D); dot("$A$", A, NW); dot("$B$", B, NE); dot("$C$", C, SE); dot("$D$", D, SW); dot("$G$", G, dir(40)); pair P = IP(L(A, G, 10, 10), circle, 1), Q = IP(L(B, G, 10, 10), circle, 1); draw(A--P--C); draw(B--Q); dot("$P$", P, SE); dot("$Q$", Q, S); pair R = IP((-1, G.y)--(1, G.y), B--D), S = IP((-1, G.y)--(1, G.y), B--C); draw(P--Q--R--S--cycle); dot("$R$", R, N); dot("$S$", S, E); pair T = IP(L(Q, R, 10, 10), circle, 1); draw(R--T--C, dashed); draw(T--B, dashed); dot("$T$", T, NW); // Block 2 import cse5; import graph; import olympiad; dotfactor = 3; unitsize(1.5inch); path circle = Circle(origin, 1); draw(circle); pair A = (-.6, .8), B = (.6, .8), C = (.9, -sqrt(.19)), D = (-.9, -sqrt(.19)), G = bisectorpoint(C, B, D); draw(A--B--C--D--cycle); draw(B--D); dot("$A$", A, NW); dot("$B$", B, NE); dot("$C$", C, SE); dot("$D$", D, SW); dot("$G$", G, dir(40)); pair P = IP(L(A, G, 10, 10), circle, 1), Q = IP(L(B, G, 10, 10), circle, 1); draw(A--P--C); draw(B--Q); dot("$P$", P, SE); dot("$Q$", Q, S); pair R = IP((-1, G.y)--(1, G.y), B--D), S = IP((-1, G.y)--(1, G.y), B--C); draw(P--Q--R--S--cycle); dot("$R$", R, N); dot("$S$", S, E); pair T = IP(L(Q, R, 10, 10), circle, 1); draw(R--T--C, dashed); draw(T--B, dashed); dot("$T$", T, NW);
[]
41
Trapezoid $ABCD$, with $\overline{AB}||\overline{CD}$, is inscribed in circle $\omega$ and point $G$ lies inside triangle $BCD$. Rays $AG$ and $BG$ meet $\omega$ again at points $P$ and $Q$, respectively. Let the line through $G$ parallel to $\overline{AB}$ intersect $\overline{BD}$ and $\overline{BC}$ at points $R$ and $S$, respectively. Prove that quadrilateral $PQRS$ is cyclic if and only if $\overline{BG}$ bisects $\angle CBD$.
2009 USAMO Problem 5
Extend $QR$ to $T$, and let line $l \parallel AB$ intersect $\omega$ at $K$ and another point $V$, as shown: If: Suppose that $VP \cap CB = S'$, and $AC \cap QV = R'$. Pascal's theorem on the tuple $(V, P, A, C, B, Q)$ implies that the points $S'$, $R'$, and $G = PA \cap BQ$ are collinear. However, $AC$ and $BD$ are symmetrical with respect to the axis of symmetry of trapezoid $ABCD$, and $TQ$ and $VQ$ are also symmetrical with respect to the axis of symmetry of $ABCD$ (as $Q$ is the midpoint of $\overset{\frown}{DC}$, and $TV \parallel DC$). Since $R = BD \cap TQ$, $R$ and $R'$ are symmetric with respect to the axis of symmetry of trapezoid $ABCD$. This implies that line $R'G$ is equivalent to line $RG$. Thus, $S'$ lies on line $RG$. However, $S = BC \cap RG$, so this implies that $S' = S$. Now note that $TVPQ$ is cyclic. Since $TV \parallel RS$, $\measuredangle VTQ = \measuredangle SRQ$. However, $\measuredangle VTQ + \measuredangle VPQ = 180^{\circ} = \measuredangle SRQ + \measuredangle SPQ$. Therefore, $PQRS$ is cyclic. Only If: Consider the same setup, except $Q$ is no longer the midpoint of $\overset{\frown}{DC}$. Note that $TV$ must be parallel to $RG$ in order for $PQRS$ to be cyclic. We claim that $S' = S$ and hope to reach a contradiction. Pascal's theorem on the tuple $(V, P, A, C, B, Q)$ implies that $S'$, $R'$, and $G = PA \cap BQ$ are collinear. However, there exists a unique point $Q$ such that $HQ$, $AC$, and $RG$ are concurrent. By If, $Q$ must be the midpoint of $\overset{\frown}{DC}$ in order for the concurrency to occur; hence, $R' \notin RS$. Then $R'G \cap BC = S' \neq S$, since $RG \cap BC = S$. However, this is a contradiction, so therefore $TV$ cannot be parallel to $RG$ and $PQRS$ is not cyclic. Solution by TheBoomBox77
// Block 1 import cse5; import graph; import olympiad; dotfactor = 3; unitsize(1.5inch); path circle = Circle(origin, 1); draw(circle); pair A = (-.6, .8), B = (.6, .8), C = (.9, -sqrt(.19)), D = (-.9, -sqrt(.19)), G = bisectorpoint(C, B, D); draw(A--B--C--D--cycle); draw(B--D); dot("$A$", A, NW); dot("$B$", B, NE); dot("$C$", C, SE); dot("$D$", D, SW); dot("$G$", G, dir(40)); pair P = IP(L(A, G, 10, 10), circle, 1), Q = IP(L(B, G, 10, 10), circle, 1); draw(A--P); draw(B--Q); dot("$P$", P, SE); dot("$Q$", Q, S); pair R = IP((-1, G.y)--(1, G.y), B--D), S = IP((-1, G.y)--(1, G.y), B--C); draw(P--Q--R--S); dot("$R$", R, N); dot("$S$", S, E); pair T = IP(L(Q, R, 10, 10), circle, 1); draw(Q--T); pair V = IP(L(P, S, 10, 10), circle, 1); draw(T--V); draw(P--V, dotted); dot("$T$", T, NW); dot("$V$", V, NE); // Block 2 import cse5; import graph; import olympiad; dotfactor = 3; unitsize(1.5inch); path circle = Circle(origin, 1); draw(circle); pair A = (-.6, .8), B = (.6, .8), C = (.9, -sqrt(.19)), D = (-.9, -sqrt(.19)), G = bisectorpoint(C, B, D); draw(A--B--C--D--cycle); draw(B--D); dot("$A$", A, NW); dot("$B$", B, NE); dot("$C$", C, SE); dot("$D$", D, SW); dot("$G$", G, dir(40)); pair P = IP(L(A, G, 10, 10), circle, 1), Q = IP(L(B, G, 10, 10), circle, 1); draw(A--P); draw(B--Q); dot("$P$", P, SE); dot("$Q$", Q, S); pair R = IP((-1, G.y)--(1, G.y), B--D), S = IP((-1, G.y)--(1, G.y), B--C); draw(P--Q--R--S); dot("$R$", R, N); dot("$S$", S, E); pair T = IP(L(Q, R, 10, 10), circle, 1); draw(Q--T); pair V = IP(L(P, S, 10, 10), circle, 1); draw(T--V); draw(P--V, dotted); dot("$T$", T, NW); dot("$V$", V, NE);
[]
42
Let $AXYZB$ be a convex pentagon inscribed in a semicircle of diameter $AB$. Denote by $P, Q, R, S$ the feet of the perpendiculars from $Y$ onto lines $AX, BX, AZ, BZ$, respectively. Prove that the acute angle formed by lines $PQ$ and $RS$ is half the size of $\angle XOZ$, where $O$ is the midpoint of segment $AB$.
2010 USAMO Problem 1
Let $\alpha = \angle BAZ$, $\beta = \angle ABX$. Since $XY$ is a chord of the circle with diameter $AB$, $\angle XAY = \angle XBY = \gamma$. From the chord $YZ$, we conclude $\angle YAZ = \angle YBZ = \delta$. Triangles $BQY$ and $APY$ are both right-triangles, and share the angle $\gamma$, therefore they are similar, and so the ratio $PY : YQ = AY : YB$. Now by Thales' theorem the angles $\angle AXB = \angle AYB = \angle AZB$ are all right-angles. Also, $\angle PYQ$, being the fourth angle in a quadrilateral with 3 right-angles is again a right-angle. Therefore $\triangle PYQ \sim \triangle AYB$ and $\angle YQP = \angle YBA = \gamma + \beta$. Similarly, $RY : YS = AY : YB$, and so $\angle YRS = \angle YAB = \alpha + \delta$. Now $RY$ is perpendicular to $AZ$ so the direction $RY$ is $\alpha$ counterclockwise from the vertical, and since $\angle YRS = \alpha + \delta$ we see that $SR$ is $\delta$ clockwise from the vertical. (Draw an actual vertical line segment if necessary.) Similarly, $QY$ is perpendicular to $BX$ so the direction $QY$ is $\beta$ clockwise from the vertical, and since $\angle YQP$ is $\gamma + \beta$ we see that $QY$ is $\gamma$ counterclockwise from the vertical. Therefore the lines $PQ$ and $RS$ intersect at an angle $\chi = \gamma + \delta$. Now by the central angle theorem $2\gamma = \angle XOY$ and $2\delta = \angle YOZ$, and so $2(\gamma + \delta) = \angle XOZ$, and we are done. Note that $RTQY$ is a quadrilateral whose angles sum to 360°; can you find a faster approach using this fact? Footnote We can prove a bit more. Namely, the extensions of the segments $RS$ and $PQ$ meet at a point on the diameter $AB$ that is vertically below the point $Y$. Since $YR = AY \sin(\delta)$ and is inclined $\alpha$ counterclockwise from the vertical, the point $S$ is $AY \sin(\delta) \sin(\alpha)$ horizontally to the right of $Y$. Now $AS = AY \cos(\delta)$, so $S$ is $AS \sin(\alpha) = AY \cos(\delta)\sin(\alpha)$ vertically above the diameter $AB$. Also, the segment $SR$ is inclined $\delta$ clockwise from the vertical, so if we extend it down from $S$ towards the diameter $AB$ it will meet the diameter at a point which is $AY \cos(\delta)\sin(\alpha)\tan(\delta) = AY \sin(\delta)\sin(\alpha)$ horizontally to the left of $S$. This places the intersection point of $RS$ and $AB$ vertically below $Y$. Similarly, and by symmetry the intersection point of $PQ$ and $AB$ is directly below $Y$ on $AB$, so the lines through $PQ$ and $RS$ meet at a point $T$ on the diameter that is vertically below $Y$. Footnote to the Footnote The Footnote's claim is more easily proved as follows. Note that because $\angle{QPY}$ and $\angle{YAB}$ are both complementary to $\beta + \gamma$, they must be equal. Now, let $PQ$ intersect diameter $AB$ at $T'$. Then $PYT'A$ is cyclic and so $\angle{YT'A} = 180^\circ - \angle{APY} = 90^\circ$. Hence $T'YSB$ is cyclic as well, and so we deduce that $\angle{YST'} = \angle{YBT'} = 90^\circ - \alpha - \delta = \angle{YSR}.$ Hence $S, R, T'$ are collinear and so $T = T'$. This proves the Footnote. Footnote to the Footnote to the Footnote The Footnote's claim can be proved even more easily as follows. Drop an altitude from $Y$ to $AB$ at point $T$. Notice that $P, Q, T$ are collinear because they form the Simson line of $\triangle AXB$ from $Y$. Also notice that $P, Q, T$ are collinear because they form the Simson line of $\triangle AZB$ from $Y$. Since $T$ is at the diameter $AB$, lines $PQ$ and $SR$ must intersect at the diameter. Footnote to the Fourth Power There is another, simpler solution using Simson lines. Can you find it?
// Block 1 import olympiad; // Scale unitsize(1inch); real r = 1.75; // Semi-circle: centre O, radius r, diameter A--B. pair O = (0,0); dot(O); label("$O$", O, plain.S); pair A = r * plain.W; dot(A); label("$A$", A, unit(A)); pair B = r * plain.E; dot(B); label("$B$", B, unit(B)); draw(arc(O, r, 0, 180)--cycle); // points X, Y, Z real alpha = 22.5; real beta = 15; real delta = 30; pair X = r * dir(180 - 2*beta); dot(X); label("$X$", X, unit(X)); pair Y = r * dir(2*(alpha + delta)); dot(Y); label("$Y$", Y, unit(Y)); pair Z = r * dir(2*alpha); dot(Z); label("$Z$", Z, unit(Z)); // Feet of perpendiculars from Y pair P = foot(Y, A, X); dot(P); label("$P$", P, unit(P-Y)); dot(P); pair Q = foot(Y, B, X); dot(P); label("$Q$", Q, unit(A-Q)); dot(Q); pair R = foot(Y, B, Z); dot(R); label("$S$", R, unit(R-Y)); dot(R); pair S = foot(Y, A, Z); dot(S); label("$R$", S, unit(B-S)); dot(S); pair T = foot(Y, A, B); dot(T); label("$T$", T, unit(T-Y)); dot(T); // Segments draw(B--X); draw(B--Y); draw(B--R); draw(A--Z); draw(A--Y); draw(A--P); draw(Y--P); draw(Y--Q); draw(Y--R); draw(Y--S); draw(R--T); draw(P--T); // Right angles draw(rightanglemark(A, X, B, 3)); draw(rightanglemark(A, Y, B, 3)); draw(rightanglemark(A, Z, B, 3)); draw(rightanglemark(A, P, Y, 3)); draw(rightanglemark(Y, R, B, 3)); draw(rightanglemark(Y, S, A, 3)); draw(rightanglemark(B, Q, Y, 3)); // Acute angles import markers; void langle(pair A, pair B, pair C, string l="", real r=40, int n=1, int nm = 0) { string sl = "$\scriptstyle{" + l + "}$"; marker m = (nm > 0) ? marker(markinterval(stickframe(n=nm, 2mm), true)) : nomarker; markangle(Label(sl), radius=r, n=n, A, B, C, m); } langle(B, A, Z, "\alpha" ); langle(X, B, A, "\beta", n=2); langle(Y, A, X, "\gamma", nm=1); langle(Y, B, X, "\gamma", nm=1); langle(Z, A, Y, "\delta", nm=2); langle(Z, B, Y, "\delta", nm=2); langle(R, S, Y, "\alpha+\delta", r=23); langle(Y, Q, P, "\beta+\gamma", r=23); langle(R, T, P, "\chi", r=15); // Block 2 import olympiad; // Scale unitsize(1inch); real r = 1.75; // Semi-circle: centre O, radius r, diameter A--B. pair O = (0,0); dot(O); label("$O$", O, plain.S); pair A = r * plain.W; dot(A); label("$A$", A, unit(A)); pair B = r * plain.E; dot(B); label("$B$", B, unit(B)); draw(arc(O, r, 0, 180)--cycle); // points X, Y, Z real alpha = 22.5; real beta = 15; real delta = 30; pair X = r * dir(180 - 2*beta); dot(X); label("$X$", X, unit(X)); pair Y = r * dir(2*(alpha + delta)); dot(Y); label("$Y$", Y, unit(Y)); pair Z = r * dir(2*alpha); dot(Z); label("$Z$", Z, unit(Z)); // Feet of perpendiculars from Y pair P = foot(Y, A, X); dot(P); label("$P$", P, unit(P-Y)); dot(P); pair Q = foot(Y, B, X); dot(P); label("$Q$", Q, unit(A-Q)); dot(Q); pair R = foot(Y, B, Z); dot(R); label("$S$", R, unit(R-Y)); dot(R); pair S = foot(Y, A, Z); dot(S); label("$R$", S, unit(B-S)); dot(S); pair T = foot(Y, A, B); dot(T); label("$T$", T, unit(T-Y)); dot(T); // Segments draw(B--X); draw(B--Y); draw(B--R); draw(A--Z); draw(A--Y); draw(A--P); draw(Y--P); draw(Y--Q); draw(Y--R); draw(Y--S); draw(R--T); draw(P--T); // Right angles draw(rightanglemark(A, X, B, 3)); draw(rightanglemark(A, Y, B, 3)); draw(rightanglemark(A, Z, B, 3)); draw(rightanglemark(A, P, Y, 3)); draw(rightanglemark(Y, R, B, 3)); draw(rightanglemark(Y, S, A, 3)); draw(rightanglemark(B, Q, Y, 3)); // Acute angles import markers; void langle(pair A, pair B, pair C, string l="", real r=40, int n=1, int nm = 0) { string sl = "$\scriptstyle{" + l + "}$"; marker m = (nm > 0) ? marker(markinterval(stickframe(n=nm, 2mm), true)) : nomarker; markangle(Label(sl), radius=r, n=n, A, B, C, m); } langle(B, A, Z, "\alpha" ); langle(X, B, A, "\beta", n=2); langle(Y, A, X, "\gamma", nm=1); langle(Y, B, X, "\gamma", nm=1); langle(Z, A, Y, "\delta", nm=2); langle(Z, B, Y, "\delta", nm=2); langle(R, S, Y, "\alpha+\delta", r=23); langle(Y, Q, P, "\beta+\gamma", r=23); langle(R, T, P, "\chi", r=15);
[]
42
Let $AXYZB$ be a convex pentagon inscribed in a semicircle of diameter $AB$. Denote by $P, Q, R, S$ the feet of the perpendiculars from $Y$ onto lines $AX, BX, AZ, BZ$, respectively. Prove that the acute angle formed by lines $PQ$ and $RS$ is half the size of $\angle XOZ$, where $O$ is the midpoint of segment $AB$.
2010 USAMO Problem 1
Let $T$ be the foot of the perpendicular from $Y$ to $\overline{AB}$, let $O$ be the center of the semi-circle. Since we have a semi-circle, if we were to reflect it over $\overline {AB}$, we would have a full circle, with $\triangle{AXB}$ and $\triangle{AZB}$ inscribed in it. Now, notice that $Y$ is a point on that full circle, so we can say that $T$ lies on the Simson Line $\overline{PQ}$ from $Y$ to $\triangle AXB$ and that it also lies on the Simson line $\overline {RS}$ from $Y$ to $\triangle AZB$. Thus, $T$ lies on two distinct lines in a plane, which means that $T=\overline{PQ}\cap\overline{RS}$. Therefore, it suffices to show that $\angle PTS=\tfrac{1}{2}\angle XOZ$. Since $m\angle YTA + m\angle YPA = 90^\circ + 90^\circ = 180^\circ$ and $m \angle YTB + m \angle YSB = 90^\circ + 90^\circ = 180^\circ$, we know that $TAPY$ and $TBSY$ are cyclic quadrilaterals. We use this fact to get \[\angle PTS=\angle PTY+\angle YTS=\angle PAY+\angle YBS=\angle XAY+\angle YBZ. \space \space (1)\] \\ Now note that $\angle XAY$ is the inscribed angle of minor arc $\overset{\huge\frown}{PY}$, and $\angle XOY$ is the central angle of minor arc $\overset{\huge\frown}{AB}$, so $\angle XAY = \frac{\overset{\huge\frown}{PY}}{2} = \frac{\angle XOY}{2}$. Similarly, $\angle YBZ = \frac{\overset{\huge\frown}{YZ}}{2}=\frac{\angle YOZ}{2}$. Thus we can say \[\angle XAY + \angle YBZ = \frac{\angle XOY}{2} + \frac{\angle YOZ}{2}=\frac{\angle XOY + \angle YOZ}{2} = \frac{\angle XOZ}{2}. \space \space (2)\] Combining statements $(1)$ and $(2)$, we can say that $\angle PTS = \frac{\angle XOZ}{2}$, as desired. $\square$ ~thinker123
// Block 1 currentpicture=new picture; size(12cm); pair O, A, B, X, Y, Z, P, Q, R, SS, T; O=(0, 0); A=(-1, 0); B=(1, 0); X=(Cos(144), Sin(144)); Y=(Cos(105), Sin(105)); Z=(Cos(27), Sin(27)); P=foot(Y, A, X); Q=foot(Y, B, X); R=foot(Y, A, Z); SS=foot(Y, B, Z); T=foot(Y, A, B); dot(O); dot(A); dot(B); dot(X); dot(Y); dot(Z); dot(P); dot(Q); dot(R); dot(SS); dot(T); draw(arc(O, 1, 0, 180)); draw(circumcircle(T, A, Y), dotted); draw(circumcircle(T, B, Y), dotted); draw(A -- B); draw(Z -- O -- X -- A -- Z -- B -- X); draw(A -- Y -- B); draw(P -- T -- SS); draw(P -- Y -- Q); draw(R -- Y -- SS); draw(X -- P); draw(Z -- SS); draw(Y -- T); draw(rightanglemark(Y, T, B, 1.25)); draw(rightanglemark(Y, P, A, 1.25)); draw(rightanglemark(Y, Q, X, 1.25)); draw(rightanglemark(Y, R, Z, 1.25)); draw(rightanglemark(Y, SS, B, 1.25)); draw(rightanglemark(A, X, B, 1.25)); draw(rightanglemark(A, Y, B, 1.25)); draw(rightanglemark(A, Z, B, 1.25)); label("$O$", O, S); label("$A$", A, SW); label("$B$", B, SE); label("$X$", X, (X-B)/length(X-B)); label("$Y$", Y, Y); label("$Z$", Z, (Z-A)/length(Z-A)); label("$P$", P, (P-T)/length(P-T)); label("$Q$", Q, SW); label("$R$", R, SE); label("$S$", SS, (SS-T)/length(SS-T)); label("$T$", T, S); // Block 2 currentpicture=new picture; size(12cm); pair O, A, B, X, Y, Z, P, Q, R, SS, T; O=(0, 0); A=(-1, 0); B=(1, 0); X=(Cos(144), Sin(144)); Y=(Cos(105), Sin(105)); Z=(Cos(27), Sin(27)); P=foot(Y, A, X); Q=foot(Y, B, X); R=foot(Y, A, Z); SS=foot(Y, B, Z); T=foot(Y, A, B); dot(O); dot(A); dot(B); dot(X); dot(Y); dot(Z); dot(P); dot(Q); dot(R); dot(SS); dot(T); draw(arc(O, 1, 0, 180)); draw(circumcircle(T, A, Y), dotted); draw(circumcircle(T, B, Y), dotted); draw(A -- B); draw(Z -- O -- X -- A -- Z -- B -- X); draw(A -- Y -- B); draw(P -- T -- SS); draw(P -- Y -- Q); draw(R -- Y -- SS); draw(X -- P); draw(Z -- SS); draw(Y -- T); draw(rightanglemark(Y, T, B, 1.25)); draw(rightanglemark(Y, P, A, 1.25)); draw(rightanglemark(Y, Q, X, 1.25)); draw(rightanglemark(Y, R, Z, 1.25)); draw(rightanglemark(Y, SS, B, 1.25)); draw(rightanglemark(A, X, B, 1.25)); draw(rightanglemark(A, Y, B, 1.25)); draw(rightanglemark(A, Z, B, 1.25)); label("$O$", O, S); label("$A$", A, SW); label("$B$", B, SE); label("$X$", X, (X-B)/length(X-B)); label("$Y$", Y, Y); label("$Z$", Z, (Z-A)/length(Z-A)); label("$P$", P, (P-T)/length(P-T)); label("$Q$", Q, SW); label("$R$", R, SE); label("$S$", SS, (SS-T)/length(SS-T)); label("$T$", T, S);
[]
43
Let $ABC$ be a triangle with $\angle A = 90^{\circ}$. Points $D$ and $E$ lie on sides $AC$ and $AB$, respectively, such that $\angle ABD = \angle DBC$ and $\angle ACE = \angle ECB$. Segments $BD$ and $CE$ meet at $I$. Determine whether or not it is possible for segments $AB, AC, BI, ID, CI, IE$ to all have integer lengths.
2010 USAMO Problem 4
We know that angle $BIC = 135^{\circ}$, as the other two angles in triangle $BIC$ add to $45^{\circ}$. Assume that only $AB, AC, BI$, and $CI$ are integers. Using the Law of Cosines on triangle BIC, $BC^2 = BI^2 + CI^2 - 2BI\cdot CI \cdot \cos 135^{\circ}$. Observing that $BC^2 = AB^2 + AC^2$ is an integer and that $\cos 135^{\circ} = -\frac{\sqrt{2}}{2},$ we have \[BC^2 - BI^2 - CI^2 = BI\cdot CI\cdot \sqrt{2}\] and therefore, \[\sqrt{2} = \frac{BC^2 - BI^2 - CI^2}{BI\cdot CI}\] The LHS ($\sqrt{2}$) is irrational, while the RHS is the quotient of the division of two integers and thus is rational. Clearly, there is a contradiction. Therefore, it is impossible for $AB, AC, BI$, and $CI$ to all be integers, which invalidates the original claim that all six lengths are integers, and we are done.
// Block 1 import olympiad; // Scale unitsize(1inch); // Shape real h = 1.75; real w = 2.5; // Points void ldot(pair p, string l, pair dir=p) { dot(p); label(l, p, unit(dir)); } pair A = origin; ldot(A, "$A$", plain.SW); pair B = w * plain.E; ldot(B, "$B$", plain.SE); pair C = h * plain.N; ldot(C, "$C$", plain.NW); pair D = extension(B, bisectorpoint(C, B, A), A, C); ldot(D, "$D$", D-B); pair E = extension(C, bisectorpoint(A, C, B), A, B); ldot(E, "$E$", E-C); pair I = extension(B, D, C, E); ldot(I, "$I$", A-I); // Segments draw(A--B); draw(B--C); draw(C--A); draw(C--E); draw(B--D); // Angles import markers; draw(rightanglemark(B, A, C, 4)); markangle(Label("$\scriptstyle{\frac{\theta}{2}}$"), radius=40, I, B, E); markangle(Label("$\scriptstyle{\frac{\theta}{2}}$"), radius=40, C, B, I); markangle(Label("$\scriptstyle{\frac{\pi}{4} - \frac{\theta}{2}}$"), radius=40, I, C, B); markangle(Label("$\scriptstyle{\frac{\pi}{4} - \frac{\theta}{2}}$"), radius=40, D, C, I); markangle(Label("$\scriptstyle{\frac{3\pi}{4}}$"), radius=10, B, I, C); // Block 2 import olympiad; // Scale unitsize(1inch); // Shape real h = 1.75; real w = 2.5; // Points void ldot(pair p, string l, pair dir=p) { dot(p); label(l, p, unit(dir)); } pair A = origin; ldot(A, "$A$", plain.SW); pair B = w * plain.E; ldot(B, "$B$", plain.SE); pair C = h * plain.N; ldot(C, "$C$", plain.NW); pair D = extension(B, bisectorpoint(C, B, A), A, C); ldot(D, "$D$", D-B); pair E = extension(C, bisectorpoint(A, C, B), A, B); ldot(E, "$E$", E-C); pair I = extension(B, D, C, E); ldot(I, "$I$", A-I); // Segments draw(A--B); draw(B--C); draw(C--A); draw(C--E); draw(B--D); // Angles import markers; draw(rightanglemark(B, A, C, 4)); markangle(Label("$\scriptstyle{\frac{\theta}{2}}$"), radius=40, I, B, E); markangle(Label("$\scriptstyle{\frac{\theta}{2}}$"), radius=40, C, B, I); markangle(Label("$\scriptstyle{\frac{\pi}{4} - \frac{\theta}{2}}$"), radius=40, I, C, B); markangle(Label("$\scriptstyle{\frac{\pi}{4} - \frac{\theta}{2}}$"), radius=40, D, C, I); markangle(Label("$\scriptstyle{\frac{3\pi}{4}}$"), radius=10, B, I, C);
[]
44
Let $P$ be a point in the plane of triangle $ABC$, and $\gamma$ a line passing through $P$. Let $A'$, $B'$, $C'$ be the points where the reflections of lines $PA$, $PB$, $PC$ with respect to $\gamma$ intersect lines $BC$, $AC$, $AB$, respectively. Prove that $A'$, $B'$, $C'$ are collinear.
2012 USAMO Problem 5
By the sine law on triangle $AB'P$, \[\frac{AB'}{\sin \angle APB'} = \frac{AP}{\sin \angle AB'P},\] so \[AB' = AP \cdot \frac{\sin \angle APB'}{\sin \angle AB'P}.\] Similarly, \begin{align*} B'C &= CP \cdot \frac{\sin \angle CPB'}{\sin \angle CB'P}, \\ CA' &= CP \cdot \frac{\sin \angle CPA'}{\sin \angle CA'P}, \\ A'B &= BP \cdot \frac{\sin \angle BPA'}{\sin \angle BA'P}, \\ BC' &= BP \cdot \frac{\sin \angle BPC'}{\sin \angle BC'P}, \\ C'A &= AP \cdot \frac{\sin \angle APC'}{\sin \angle AC'P}. \end{align*} Hence, \begin{align*} &\frac{AB'}{B'C} \cdot \frac{CA'}{A'B} \cdot \frac{BC'}{C'A} \\ &= \frac{\sin \angle APB'}{\sin \angle AB'P} \cdot \frac{\sin \angle CB'P}{\sin \angle CPB'} \cdot \frac{\sin \angle CPA'}{\sin \angle CA'P} \cdot \frac{\sin \angle BA'P}{\sin \angle BPA'} \cdot \frac{\sin \angle BPC'}{\sin \angle BC'P} \cdot \frac{\sin \angle AC'P}{\sin \angle APC'}. \end{align*} Since angles $\angle AB'P$ and $\angle CB'P$ are supplementary or equal, depending on the position of $B'$ on $AC$, \[\sin \angle AB'P = \sin \angle CB'P.\] Similarly, \begin{align*} \sin \angle CA'P &= \sin \angle BA'P, \\ \sin \angle BC'P &= \sin \angle AC'P. \end{align*} By the reflective property, $\angle APB'$ and $\angle BPA'$ are supplementary or equal, so \[\sin \angle APB' = \sin \angle BPA'.\] Similarly, \begin{align*} \sin \angle CPA' &= \sin \angle APC', \\ \sin \angle BPC' &= \sin \angle CPB'. \end{align*} Therefore, \[\frac{AB'}{B'C} \cdot \frac{CA'}{A'B} \cdot \frac{BC'}{C'A} = 1,\] so by Menelaus's theorem, $A'$, $B'$, and $C'$ are collinear.
// Block 1 import graph; import geometry; unitsize(0.5 cm); pair[] A, B, C; pair P, R; A[0] = (2,12); B[0] = (0,0); C[0] = (14,0); P = (4,5); R = 5*dir(70); A[1] = extension(B[0],C[0],P,reflect(P + R,P - R)*(A[0])); B[1] = extension(C[0],A[0],P,reflect(P + R,P - R)*(B[0])); C[1] = extension(A[0],B[0],P,reflect(P + R,P - R)*(C[0])); draw((P - R)--(P + R),red); draw(A[1]--B[1]--C[1]--cycle,blue); draw(A[0]--B[0]--C[0]--cycle); draw(A[0]--P); draw(B[0]--P); draw(C[0]--P); draw(P--A[1]); draw(P--B[1]); draw(P--C[1]); draw(A[1]--B[0]); draw(A[1]--B[0]); label("$A$", A[0], N); label("$B$", B[0], S); label("$C$", C[0], SE); dot("$A'$", A[1], SW); dot("$B'$", B[1], NE); dot("$C'$", C[1], W); dot("$P$", P, SE); label("$\gamma$", P + R, N); // Block 2 import graph; import geometry; unitsize(0.5 cm); pair[] A, B, C; pair P, R; A[0] = (2,12); B[0] = (0,0); C[0] = (14,0); P = (4,5); R = 5*dir(70); A[1] = extension(B[0],C[0],P,reflect(P + R,P - R)*(A[0])); B[1] = extension(C[0],A[0],P,reflect(P + R,P - R)*(B[0])); C[1] = extension(A[0],B[0],P,reflect(P + R,P - R)*(C[0])); draw((P - R)--(P + R),red); draw(A[1]--B[1]--C[1]--cycle,blue); draw(A[0]--B[0]--C[0]--cycle); draw(A[0]--P); draw(B[0]--P); draw(C[0]--P); draw(P--A[1]); draw(P--B[1]); draw(P--C[1]); draw(A[1]--B[0]); draw(A[1]--B[0]); label("$A$", A[0], N); label("$B$", B[0], S); label("$C$", C[0], SE); dot("$A'$", A[1], SW); dot("$B'$", B[1], NE); dot("$C'$", C[1], W); dot("$P$", P, SE); label("$\gamma$", P + R, N);
[]
45
In triangle $ABC$, points $P,Q,R$ lie on sides $BC,CA,AB$ respectively. Let $\omega_A$, $\omega_B$, $\omega_C$ denote the circumcircles of triangles $AQR$, $BRP$, $CPQ$, respectively. Given the fact that segment $AP$ intersects $\omega_A$, $\omega_B$, $\omega_C$ again at $X,Y,Z$ respectively, prove that $YX/XZ=BP/PC$.
2013 USAMO Problem 1
In this solution, all lengths and angles are directed. Firstly, it is easy to see by that $\omega_A, \omega_B, \omega_C$ concur at a point $M$ (the Miquel point). Let $XM$ meet $\omega_B, \omega_C$ again at $D$ and $E$, respectively. Then by Power of a Point, we have \[XM \cdot XE = XZ \cdot XP \quad\text{and}\quad XM \cdot XD = XY \cdot XP\] Thusly \[\frac{XY}{XZ} = \frac{XD}{XE}\] But we claim that $\triangle XDP \sim \triangle PBM$. Indeed, \[\measuredangle XDP = \measuredangle MDP = \measuredangle MBP = - \measuredangle PBM\] and \[\measuredangle DXP = \measuredangle MXY = \measuredangle MXA = \measuredangle MRA = 180^\circ - \measuredangle MRB = \measuredangle MPB = -\measuredangle BPM\] Therefore, $\frac{XD}{XP} = \frac{PB}{PM}$. Analogously we find that $\frac{XE}{XP} = \frac{PC}{PM}$ and we are done. courtesy v_enhance, minor clarification by integralarefun
// Block 1 /* DRAGON 0.0.9.6 Homemade Script by v_Enhance. */ import olympiad; import cse5; size(11cm); real lsf=0.8000; real lisf=2011.0; defaultpen(fontsize(10pt)); /* Initialize Objects */ pair A = (-1.0, 3.0); pair B = (-3.0, -3.0); pair C = (4.0, -3.0); pair P = (-0.6698198198198195, -3.0); pair Q = (1.1406465288818244, 0.43122416534181074); pair R = (-1.6269590345062048, 1.119122896481385); path w_A = circumcircle(A,Q,R); path w_B = circumcircle(B,P,R); path w_C = circumcircle(P,Q,C); pair O_A = midpoint(relpoint(w_A, 0)--relpoint(w_A, 0.5)); pair O_B = midpoint(relpoint(w_B, 0)--relpoint(w_B, 0.5)); pair O_C = midpoint(relpoint(w_C, 0)--relpoint(w_C, 0.5)); pair X = (2)*(foot(O_A,A,P))-A; pair Y = (2)*(foot(O_B,A,P))-P; pair Z = (2)*(foot(O_C,A,P))-P; pair M = 2*foot(P,relpoint(O_B--O_C,0.5-10/lisf),relpoint(O_B--O_C,0.5+10/lisf))-P; pair D = (2)*(foot(O_B,X,M))-M; pair E = (2)*(foot(O_C,X,M))-M; /* Draw objects */ draw(A--B, rgb(0.6,0.6,0.0)); draw(B--C, rgb(0.6,0.6,0.0)); draw(C--A, rgb(0.6,0.6,0.0)); draw(w_A, rgb(0.4,0.4,0.0)); draw(w_B, rgb(0.4,0.4,0.0)); draw(w_C, rgb(0.4,0.4,0.0)); draw(A--P, rgb(0.0,0.2,0.4)); draw(D--E, rgb(0.0,0.2,0.4)); draw(P--D, rgb(0.0,0.2,0.4)); draw(P--E, rgb(0.0,0.2,0.4)); draw(P--M, rgb(0.4,0.2,0.0)); draw(R--M, rgb(0.4,0.2,0.0)); draw(Q--M, rgb(0.4,0.2,0.0)); draw(B--M, rgb(0.0,0.2,0.4)); draw(C--M, rgb(0.0,0.2,0.4)); draw((abs(dot(unit(M-P),unit(B-P))) < 1/2011) ? rightanglemark(M,P,B) : anglemark(M,P,B), rgb(0.0,0.8,0.8)); draw((abs(dot(unit(M-R),unit(A-R))) < 1/2011) ? rightanglemark(M,R,A) : anglemark(M,R,A), rgb(0.0,0.8,0.8)); draw((abs(dot(unit(M-X),unit(A-X))) < 1/2011) ? rightanglemark(M,X,A) : anglemark(M,X,A), rgb(0.0,0.8,0.8)); draw((abs(dot(unit(D-X),unit(P-X))) < 1/2011) ? rightanglemark(D,X,P) : anglemark(D,X,P), rgb(0.0,0.8,0.8)); /* Place dots on each point */ dot(A); dot(B); dot(C); dot(P); dot(Q); dot(R); dot(X); dot(Y); dot(Z); dot(M); dot(D); dot(E); /* Label points */ label("$A$", A, lsf * dir(110)); label("$B$", B, lsf * unit(B-M)); label("$C$", C, lsf * unit(C-M)); label("$P$", P, lsf * unit(P-M) * 1.8); label("$Q$", Q, lsf * dir(90) * 1.6); label("$R$", R, lsf * unit(R-M) * 2); label("$X$", X, lsf * dir(-60) * 2); label("$Y$", Y, lsf * dir(45)); label("$Z$", Z, lsf * dir(5)); label("$M$", M, lsf * dir(M-P)*2); label("$D$", D, lsf * dir(150)); label("$E$", E, lsf * dir(5)); // Block 2 /* DRAGON 0.0.9.6 Homemade Script by v_Enhance. */ import olympiad; import cse5; size(11cm); real lsf=0.8000; real lisf=2011.0; defaultpen(fontsize(10pt)); /* Initialize Objects */ pair A = (-1.0, 3.0); pair B = (-3.0, -3.0); pair C = (4.0, -3.0); pair P = (-0.6698198198198195, -3.0); pair Q = (1.1406465288818244, 0.43122416534181074); pair R = (-1.6269590345062048, 1.119122896481385); path w_A = circumcircle(A,Q,R); path w_B = circumcircle(B,P,R); path w_C = circumcircle(P,Q,C); pair O_A = midpoint(relpoint(w_A, 0)--relpoint(w_A, 0.5)); pair O_B = midpoint(relpoint(w_B, 0)--relpoint(w_B, 0.5)); pair O_C = midpoint(relpoint(w_C, 0)--relpoint(w_C, 0.5)); pair X = (2)*(foot(O_A,A,P))-A; pair Y = (2)*(foot(O_B,A,P))-P; pair Z = (2)*(foot(O_C,A,P))-P; pair M = 2*foot(P,relpoint(O_B--O_C,0.5-10/lisf),relpoint(O_B--O_C,0.5+10/lisf))-P; pair D = (2)*(foot(O_B,X,M))-M; pair E = (2)*(foot(O_C,X,M))-M; /* Draw objects */ draw(A--B, rgb(0.6,0.6,0.0)); draw(B--C, rgb(0.6,0.6,0.0)); draw(C--A, rgb(0.6,0.6,0.0)); draw(w_A, rgb(0.4,0.4,0.0)); draw(w_B, rgb(0.4,0.4,0.0)); draw(w_C, rgb(0.4,0.4,0.0)); draw(A--P, rgb(0.0,0.2,0.4)); draw(D--E, rgb(0.0,0.2,0.4)); draw(P--D, rgb(0.0,0.2,0.4)); draw(P--E, rgb(0.0,0.2,0.4)); draw(P--M, rgb(0.4,0.2,0.0)); draw(R--M, rgb(0.4,0.2,0.0)); draw(Q--M, rgb(0.4,0.2,0.0)); draw(B--M, rgb(0.0,0.2,0.4)); draw(C--M, rgb(0.0,0.2,0.4)); draw((abs(dot(unit(M-P),unit(B-P))) < 1/2011) ? rightanglemark(M,P,B) : anglemark(M,P,B), rgb(0.0,0.8,0.8)); draw((abs(dot(unit(M-R),unit(A-R))) < 1/2011) ? rightanglemark(M,R,A) : anglemark(M,R,A), rgb(0.0,0.8,0.8)); draw((abs(dot(unit(M-X),unit(A-X))) < 1/2011) ? rightanglemark(M,X,A) : anglemark(M,X,A), rgb(0.0,0.8,0.8)); draw((abs(dot(unit(D-X),unit(P-X))) < 1/2011) ? rightanglemark(D,X,P) : anglemark(D,X,P), rgb(0.0,0.8,0.8)); /* Place dots on each point */ dot(A); dot(B); dot(C); dot(P); dot(Q); dot(R); dot(X); dot(Y); dot(Z); dot(M); dot(D); dot(E); /* Label points */ label("$A$", A, lsf * dir(110)); label("$B$", B, lsf * unit(B-M)); label("$C$", C, lsf * unit(C-M)); label("$P$", P, lsf * unit(P-M) * 1.8); label("$Q$", Q, lsf * dir(90) * 1.6); label("$R$", R, lsf * unit(R-M) * 2); label("$X$", X, lsf * dir(-60) * 2); label("$Y$", Y, lsf * dir(45)); label("$Z$", Z, lsf * dir(5)); label("$M$", M, lsf * dir(M-P)*2); label("$D$", D, lsf * dir(150)); label("$E$", E, lsf * dir(5));
[]
45
In triangle $ABC$, points $P,Q,R$ lie on sides $BC,CA,AB$ respectively. Let $\omega_A$, $\omega_B$, $\omega_C$ denote the circumcircles of triangles $AQR$, $BRP$, $CPQ$, respectively. Given the fact that segment $AP$ intersects $\omega_A$, $\omega_B$, $\omega_C$ again at $X,Y,Z$ respectively, prove that $YX/XZ=BP/PC$.
2013 USAMO Problem 1
We will use some construction arguments to solve the problem. Let $\angle BAC=\alpha,$ $\angle ABC=\beta,$ $\angle ACB=\gamma,$ and let $\angle APB=\theta.$ We construct lines through the points $Q,$ and $R$ that intersect with $\triangle ABC$ at the points $Q$ and $R,$ respectively, and that intersect each other at $T.$ We will construct these lines such that $\angle CQV=\angle ARV=\theta.$ Now we let the intersections of $AP$ with $RV$ and $QU$ be $Y'$ and $Z',$ respectively. This construction is as follows. We know that $\angle BRY'=180^\circ-\angle ARY'=180^\circ-\theta.$ Hence, we have, \begin{align*} \angle BRY'+\angle BPY' &=180^\circ-\theta+\theta\\ &=180^\circ. \end{align*} Since the opposite angles of quadrilateral $RY'PB$ add up to $180^\circ,$ it must be cyclic. Similarly, we can also show that quadrilaterals $CQZ'P,$ and $AQTR$ are also cyclic. Since points $Y'$ and $Z'$ lie on $AP,$ we know that, \[Y'=\omega_B\cap AP\] and that \[Z'=\omega_C\cap AP.\] Hence, the points $Y'$ and $Z'$ coincide with the given points $Y$ and $Z,$ respectively. Since quadrilateral $AQTR$ is also cyclic, we have, \begin{align*} \angle Y'TZ' &=180^\circ-\angle RTQ\\ &=180^\circ-(180^\circ-\angle RAQ)\\ &=\angle RAQ\\ &=\alpha. \end{align*} Similarly, since quadrilaterals $CQZ'P,$ and $AQTR$ are also cyclic, we have, \begin{align*} \angle TY'Z' &=180^\circ-\angle RY'P\\ &=180^\circ-(180^\circ-\angle RBP)\\ &=\angle RBP\\ &=\beta, \end{align*} and, \begin{align*} \angle Y'Z'T &=180^\circ-\angle PZ'Q\\ &=180^\circ-(180^\circ-\angle PCQ)\\ &=\angle PCQ\\ &=\gamma. \end{align*} Since these three angles are of $\triangle TY'Z',$ and they are equal to corresponding angles of $\triangle ABC,$ by AA similarity, we know that $\triangle TY'Z'\sim \triangle ABC.$ We now consider the point $X=\omega_c\cap AC.$ We know that the points $A,$ $Q,$ $T,$ and $R$ are concyclic. Hence, the points $A,$ $T,$ $X,$ and $R$ must also be concyclic. Hence, quadrilateral $AQTX$ is cyclic. Since the angles $\angle ART$ and $\angle AXT$ are inscribed in the same arc $\overarc{AT},$ we have, \begin{align*} \angle AXT &=\angle ART\\ &=\theta. \end{align*} Consider by this result, we can deduce that the homothety that maps $ABC$ to $TY'Z'$ will map $P$ to $X.$ Hence, we have that, \[Y'X/XZ'=BP/PC.\] Since $Y'=Y$ and $Z'=Z$ hence, \[YX/XZ=BP/PC,\] as required.
// Block 1 import graph; size(12cm); real labelscalefactor = 1.9; pen dps = linewidth(0.7) + fontsize(10); defaultpen(dps); pen rvwvcq = rgb(0.08235294117647059,0.396078431372549,0.7529411764705882); pen wrwrwr = rgb(0.3803921568627451,0.3803921568627451,0.3803921568627451); draw((-3.6988888888888977,6.426666666666669)--(-7.61,-5)--(7.09,-5)--cycle); draw((-3.6988888888888977,6.426666666666669)--(-7.61,-5)); draw((-7.61,-5)--(7.09,-5)); draw((7.09,-5)--(-3.6988888888888977,6.426666666666669)); draw((-3.6988888888888977,6.426666666666669)--(-2.958888888888898,-5)); draw((-5.053354907372894,2.4694710603912564)--(1.7922953932137468,0.6108747864253139)); draw((0.5968131669050584,1.8770271258031248)--(-5.8024625203461,-5)); dot((-3.6988888888888977,6.426666666666669)); label("$A$", (-3.6988888888888977,6.426666666666669), N * labelscalefactor); dot((-7.61,-5)); label("$B$", (-7.61,-5), SW * labelscalefactor); dot((7.09,-5)); label("$C$", (7.09,-5), SE * labelscalefactor); dot((-2.958888888888898,-5)); label("$P$", (-2.958888888888898,-5), S * labelscalefactor); dot((0.5968131669050584,1.8770271258031248)); label("$Q$", (0.5968131669050584,1.8770271258031248), NE * labelscalefactor); dot((-5.053354907372894,2.4694710603912564)); label("$R$", (-5.053354907372894,2.4694710603912564), dir(165) * labelscalefactor); dot((-3.143912404905382,-2.142970212141873)); label("$Z'$", (-3.143912404905382,-2.142970212141873), dir(170) * labelscalefactor); dot((-3.413789986031826,2.0243286531799747)); label("$Y'$", (-3.413789986031826,2.0243286531799747), NE * labelscalefactor); dot((-3.3284001481939356,0.7057864725120093)); label("$X$", (-3.3284001481939356,0.7057864725120093), dir(220) * labelscalefactor); dot((1.7922953932137468,0.6108747864253139)); label("$V$", (1.7922953932137468,0.6108747864253139), NE * labelscalefactor); dot((-5.8024625203461,-5)); label("$U$", (-5.8024625203461,-5), S * labelscalefactor); dot((-0.10264330299819162,1.125351256231488)); label("$T$", (-0.10264330299819162,1.125351256231488), dir(275) * labelscalefactor); // Block 2 import graph; size(12cm); real labelscalefactor = 1.9; pen dps = linewidth(0.7) + fontsize(10); defaultpen(dps); pen rvwvcq = rgb(0.08235294117647059,0.396078431372549,0.7529411764705882); pen wrwrwr = rgb(0.3803921568627451,0.3803921568627451,0.3803921568627451); draw((-3.6988888888888977,6.426666666666669)--(-7.61,-5)--(7.09,-5)--cycle); draw((-3.6988888888888977,6.426666666666669)--(-7.61,-5)); draw((-7.61,-5)--(7.09,-5)); draw((7.09,-5)--(-3.6988888888888977,6.426666666666669)); draw((-3.6988888888888977,6.426666666666669)--(-2.958888888888898,-5)); draw((-5.053354907372894,2.4694710603912564)--(1.7922953932137468,0.6108747864253139)); draw((0.5968131669050584,1.8770271258031248)--(-5.8024625203461,-5)); draw((-3.3284001481939356,0.7057864725120093)--(-0.10264330299819162,1.125351256231488)); draw((-3.3284001481939356,0.7057864725120093)--(-5.053354907372894,2.4694710603912564)); draw((-3.6988888888888977,6.426666666666669)--(-0.10264330299819162,1.125351256231488)); dot((-3.6988888888888977,6.426666666666669)); label("$A$", (-3.6988888888888977,6.426666666666669), N * labelscalefactor); dot((-7.61,-5)); label("$B$", (-7.61,-5), SW * labelscalefactor); dot((7.09,-5)); label("$C$", (7.09,-5), SE * labelscalefactor); dot((-2.958888888888898,-5)); label("$P$", (-2.958888888888898,-5), S * labelscalefactor); dot((0.5968131669050584,1.8770271258031248)); label("$Q$", (0.5968131669050584,1.8770271258031248), NE * labelscalefactor); dot((-5.053354907372894,2.4694710603912564)); label("$R$", (-5.053354907372894,2.4694710603912564), dir(165) * labelscalefactor); dot((-3.143912404905382,-2.142970212141873)); label("$Z'$", (-3.143912404905382,-2.142970212141873), dir(170) * labelscalefactor); dot((-3.413789986031826,2.0243286531799747)); label("$Y'$", (-3.413789986031826,2.0243286531799747), NE * labelscalefactor); dot((-3.3284001481939356,0.7057864725120093)); label("$X$", (-3.3284001481939356,0.7057864725120093), dir(220) * labelscalefactor); dot((1.7922953932137468,0.6108747864253139)); label("$V$", (1.7922953932137468,0.6108747864253139), NE * labelscalefactor); dot((-5.8024625203461,-5)); label("$U$", (-5.8024625203461,-5), S * labelscalefactor); dot((-0.10264330299819162,1.125351256231488)); label("$T$", (-0.10264330299819162,1.125351256231488), dir(275) * labelscalefactor); // Block 3 import graph; size(12cm); real labelscalefactor = 1.9; pen dps = linewidth(0.7) + fontsize(10); defaultpen(dps); pen rvwvcq = rgb(0.08235294117647059,0.396078431372549,0.7529411764705882); pen wrwrwr = rgb(0.3803921568627451,0.3803921568627451,0.3803921568627451); draw((-3.6988888888888977,6.426666666666669)--(-7.61,-5)--(7.09,-5)--cycle); draw((-3.6988888888888977,6.426666666666669)--(-7.61,-5)); draw((-7.61,-5)--(7.09,-5)); draw((7.09,-5)--(-3.6988888888888977,6.426666666666669)); draw((-3.6988888888888977,6.426666666666669)--(-2.958888888888898,-5)); draw((-5.053354907372894,2.4694710603912564)--(1.7922953932137468,0.6108747864253139)); draw((0.5968131669050584,1.8770271258031248)--(-5.8024625203461,-5)); dot((-3.6988888888888977,6.426666666666669)); label("$A$", (-3.6988888888888977,6.426666666666669), N * labelscalefactor); dot((-7.61,-5)); label("$B$", (-7.61,-5), SW * labelscalefactor); dot((7.09,-5)); label("$C$", (7.09,-5), SE * labelscalefactor); dot((-2.958888888888898,-5)); label("$P$", (-2.958888888888898,-5), S * labelscalefactor); dot((0.5968131669050584,1.8770271258031248)); label("$Q$", (0.5968131669050584,1.8770271258031248), NE * labelscalefactor); dot((-5.053354907372894,2.4694710603912564)); label("$R$", (-5.053354907372894,2.4694710603912564), dir(165) * labelscalefactor); dot((-3.143912404905382,-2.142970212141873)); label("$Z'$", (-3.143912404905382,-2.142970212141873), dir(170) * labelscalefactor); dot((-3.413789986031826,2.0243286531799747)); label("$Y'$", (-3.413789986031826,2.0243286531799747), NE * labelscalefactor); dot((-3.3284001481939356,0.7057864725120093)); label("$X$", (-3.3284001481939356,0.7057864725120093), dir(220) * labelscalefactor); dot((1.7922953932137468,0.6108747864253139)); label("$V$", (1.7922953932137468,0.6108747864253139), NE * labelscalefactor); dot((-5.8024625203461,-5)); label("$U$", (-5.8024625203461,-5), S * labelscalefactor); dot((-0.10264330299819162,1.125351256231488)); label("$T$", (-0.10264330299819162,1.125351256231488), dir(275) * labelscalefactor); // Block 4 import graph; size(12cm); real labelscalefactor = 1.9; pen dps = linewidth(0.7) + fontsize(10); defaultpen(dps); pen rvwvcq = rgb(0.08235294117647059,0.396078431372549,0.7529411764705882); pen wrwrwr = rgb(0.3803921568627451,0.3803921568627451,0.3803921568627451); draw((-3.6988888888888977,6.426666666666669)--(-7.61,-5)--(7.09,-5)--cycle); draw((-3.6988888888888977,6.426666666666669)--(-7.61,-5)); draw((-7.61,-5)--(7.09,-5)); draw((7.09,-5)--(-3.6988888888888977,6.426666666666669)); draw((-3.6988888888888977,6.426666666666669)--(-2.958888888888898,-5)); draw((-5.053354907372894,2.4694710603912564)--(1.7922953932137468,0.6108747864253139)); draw((0.5968131669050584,1.8770271258031248)--(-5.8024625203461,-5)); draw((-3.3284001481939356,0.7057864725120093)--(-0.10264330299819162,1.125351256231488)); draw((-3.3284001481939356,0.7057864725120093)--(-5.053354907372894,2.4694710603912564)); draw((-3.6988888888888977,6.426666666666669)--(-0.10264330299819162,1.125351256231488)); dot((-3.6988888888888977,6.426666666666669)); label("$A$", (-3.6988888888888977,6.426666666666669), N * labelscalefactor); dot((-7.61,-5)); label("$B$", (-7.61,-5), SW * labelscalefactor); dot((7.09,-5)); label("$C$", (7.09,-5), SE * labelscalefactor); dot((-2.958888888888898,-5)); label("$P$", (-2.958888888888898,-5), S * labelscalefactor); dot((0.5968131669050584,1.8770271258031248)); label("$Q$", (0.5968131669050584,1.8770271258031248), NE * labelscalefactor); dot((-5.053354907372894,2.4694710603912564)); label("$R$", (-5.053354907372894,2.4694710603912564), dir(165) * labelscalefactor); dot((-3.143912404905382,-2.142970212141873)); label("$Z'$", (-3.143912404905382,-2.142970212141873), dir(170) * labelscalefactor); dot((-3.413789986031826,2.0243286531799747)); label("$Y'$", (-3.413789986031826,2.0243286531799747), NE * labelscalefactor); dot((-3.3284001481939356,0.7057864725120093)); label("$X$", (-3.3284001481939356,0.7057864725120093), dir(220) * labelscalefactor); dot((1.7922953932137468,0.6108747864253139)); label("$V$", (1.7922953932137468,0.6108747864253139), NE * labelscalefactor); dot((-5.8024625203461,-5)); label("$U$", (-5.8024625203461,-5), S * labelscalefactor); dot((-0.10264330299819162,1.125351256231488)); label("$T$", (-0.10264330299819162,1.125351256231488), dir(275) * labelscalefactor);
[]
45
In triangle $ABC$, points $P,Q,R$ lie on sides $BC,CA,AB$ respectively. Let $\omega_A$, $\omega_B$, $\omega_C$ denote the circumcircles of triangles $AQR$, $BRP$, $CPQ$, respectively. Given the fact that segment $AP$ intersects $\omega_A$, $\omega_B$, $\omega_C$ again at $X,Y,Z$ respectively, prove that $YX/XZ=BP/PC$.
2013 USAMO Problem 1
We begin again by noting that the three circumcircles intersect at point $M$ by Miquel's theorem. In addition, we state that the angle $\angle MQC = \alpha$, hence $\angle MPC = \angle MZC = 180 - \alpha$, as well as $\angle AQM$, from which follows that $\angle ARM = \alpha$, so $\angle BRM = 180 - \alpha$, and $\angle BPM = \alpha$. We shall prove that the triangles $\triangle MZC$ and $\triangle XMP$ and $\triangle YMB$ are similar, which will imply a rotational homotethy with angle $\angle APB$ about the point $M$, that takes $Y,X,Z$ to $B,P,C$, thus proving the problem. (In essence, just imagine we rotate $YMZX$ around M and lengthen things out and get $MCPB$ - the ratios will remain identical.) We do this by angle chasing. Denote angle $\angle ZMP = \beta$. From the angles labeled before, we now know $\angle ZPB = \alpha-\beta = \angle ZMC$. In addition, $\angle ZPM = \angle ZCM$. So the angles in triangle $\triangle ZMC$ are $\alpha-\beta$, $\beta$ and thus $180-\alpha$, with $\alpha-\beta$ at the point $M$. In addition, $\angle YRM = \angle YPM = \beta$, so $\angle ARY = \alpha-\beta$, so $\angle YMB = \alpha - \beta$. Since $\angle YBM = \angle YPM = \beta$, the triangle $\triangle YMB$ has angles $\alpha-\beta, \beta, 180-\alpha$ also, with $\alpha-\beta$ at $M$. Finally, In triangle $\triangle XPM$, we already know the angle $\angle XPM$ to be $\beta$; we also can find that $\angle AQM = 180-\alpha$, so $\angle AXM = \alpha$, so $\angle MXP = 180-\alpha$, so $\angle XMP = \alpha-\beta$. Thus, the three triangles are similar have a common point $M$, which proves that there is a rotational homotethy around $M$ that maps $Y, X, Z$ to $B, P, C$ as desired. Solution by SimilarTriangle.
// Block 1 /* DRAGON 0.0.9.6 */ import olympiad; import cse5; size(11cm); real lsf=0.8000; real lisf=2011.0; defaultpen(fontsize(10pt)); /* Initialize Objects */ pair A = (-1.0, 3.0); pair B = (-3.0, -3.0); pair C = (4.0, -3.0); pair P = (-0.6698198198198195, -3.0); pair Q = (1.1406465288818244, 0.43122416534181074); pair R = (-1.6269590345062048, 1.119122896481385); path w_A = circumcircle(A,Q,R); path w_B = circumcircle(B,P,R); path w_C = circumcircle(P,Q,C); pair O_A = midpoint(relpoint(w_A, 0)--relpoint(w_A, 0.5)); pair O_B = midpoint(relpoint(w_B, 0)--relpoint(w_B, 0.5)); pair O_C = midpoint(relpoint(w_C, 0)--relpoint(w_C, 0.5)); pair X = (2)*(foot(O_A,A,P))-A; pair Y = (2)*(foot(O_B,A,P))-P; pair Z = (2)*(foot(O_C,A,P))-P; pair M = 2*foot(P,relpoint(O_B--O_C,0.5-10/lisf),relpoint(O_B--O_C,0.5+10/lisf))-P; /* Draw objects */ draw(A--B, rgb(0.6,0.6,0.0)); draw(B--C, rgb(0.6,0.6,0.0)); draw(C--A, rgb(0.6,0.6,0.0)); draw(w_A, rgb(0.4,0.4,0.0)); draw(w_B, rgb(0.4,0.4,0.0)); draw(w_C, rgb(0.4,0.4,0.0)); draw(A--P, rgb(0.0,0.2,0.4)); draw(P--M, rgb(0.0,0.2,0.4)); draw(R--M, rgb(0.4,0.2,0.0)); draw(Q--M, rgb(0.4,0.2,0.0)); draw(B--M, rgb(0.0,0.2,0.4)); draw(C--M, rgb(0.0,0.2,0.4)); draw(Z--M, rgb(0.0,0.2,0.4)); draw(X--M, rgb(0.0,0.2,0.4)); draw(Y--M, rgb(0.0,0.2,0.4)); draw(C--Z, rgb(0.0,0.2,0.4)); draw(B--Y, rgb(0.0,0.2,0.4)); /* Place dots on each point */ dot(A); dot(B); dot(C); dot(P); dot(Q); dot(R); dot(X); dot(Y); dot(Z); dot(M); /* Label points */ label("$A$", A, lsf * dir(110)); label("$B$", B, lsf * unit(B-M)); label("$C$", C, lsf * unit(C-M)); label("$P$", P, lsf * unit(P-M) * 1.8); label("$Q$", Q, lsf * dir(90) * 1.6); label("$R$", R, lsf * unit(R-M) * 2); label("$X$", X, lsf * dir(-60) * 2); label("$Y$", Y, lsf * dir(45)); label("$Z$", Z, lsf * dir(5)); label("$M$", M, lsf * dir(M-P)*2); // Block 2 /* DRAGON 0.0.9.6 */ import olympiad; import cse5; size(11cm); real lsf=0.8000; real lisf=2011.0; defaultpen(fontsize(10pt)); /* Initialize Objects */ pair A = (-1.0, 3.0); pair B = (-3.0, -3.0); pair C = (4.0, -3.0); pair P = (-0.6698198198198195, -3.0); pair Q = (1.1406465288818244, 0.43122416534181074); pair R = (-1.6269590345062048, 1.119122896481385); path w_A = circumcircle(A,Q,R); path w_B = circumcircle(B,P,R); path w_C = circumcircle(P,Q,C); pair O_A = midpoint(relpoint(w_A, 0)--relpoint(w_A, 0.5)); pair O_B = midpoint(relpoint(w_B, 0)--relpoint(w_B, 0.5)); pair O_C = midpoint(relpoint(w_C, 0)--relpoint(w_C, 0.5)); pair X = (2)*(foot(O_A,A,P))-A; pair Y = (2)*(foot(O_B,A,P))-P; pair Z = (2)*(foot(O_C,A,P))-P; pair M = 2*foot(P,relpoint(O_B--O_C,0.5-10/lisf),relpoint(O_B--O_C,0.5+10/lisf))-P; /* Draw objects */ draw(A--B, rgb(0.6,0.6,0.0)); draw(B--C, rgb(0.6,0.6,0.0)); draw(C--A, rgb(0.6,0.6,0.0)); draw(w_A, rgb(0.4,0.4,0.0)); draw(w_B, rgb(0.4,0.4,0.0)); draw(w_C, rgb(0.4,0.4,0.0)); draw(A--P, rgb(0.0,0.2,0.4)); draw(P--M, rgb(0.0,0.2,0.4)); draw(R--M, rgb(0.4,0.2,0.0)); draw(Q--M, rgb(0.4,0.2,0.0)); draw(B--M, rgb(0.0,0.2,0.4)); draw(C--M, rgb(0.0,0.2,0.4)); draw(Z--M, rgb(0.0,0.2,0.4)); draw(X--M, rgb(0.0,0.2,0.4)); draw(Y--M, rgb(0.0,0.2,0.4)); draw(C--Z, rgb(0.0,0.2,0.4)); draw(B--Y, rgb(0.0,0.2,0.4)); /* Place dots on each point */ dot(A); dot(B); dot(C); dot(P); dot(Q); dot(R); dot(X); dot(Y); dot(Z); dot(M); /* Label points */ label("$A$", A, lsf * dir(110)); label("$B$", B, lsf * unit(B-M)); label("$C$", C, lsf * unit(C-M)); label("$P$", P, lsf * unit(P-M) * 1.8); label("$Q$", Q, lsf * dir(90) * 1.6); label("$R$", R, lsf * unit(R-M) * 2); label("$X$", X, lsf * dir(-60) * 2); label("$Y$", Y, lsf * dir(45)); label("$Z$", Z, lsf * dir(5)); label("$M$", M, lsf * dir(M-P)*2);
[]
46
For a positive integer $n\geq 3$ plot $n$ equally spaced points around a circle. Label one of them $A$, and place a marker at $A$. One may move the marker forward in a clockwise direction to either the next point or the point after that. Hence there are a total of $2n$ distinct moves available; two from each point. Let $a_n$ count the number of ways to advance around the circle exactly twice, beginning and ending at $A$, without repeating a move. Prove that $a_{n-1}+a_n=2^n$ for all $n\geq 4$.
2013 USAMO Problem 2
We label the points in clockwise order as $1,2,3,\ldots,n$, where point $A$ is the same as point $1$. We start and end at point $1$, and we must cross over it, either by visiting it again, or else by making the move from point $n$ to point $2$. We interpret each of these cases in terms of tiling. In each move, we either move one or two points clockwise, so we can think of each move as a $1\times 1$ or $1\times 2$ tile. If the point $1$ is visited in the middle, then the first cycle around the circle can be thought of as a tiling of a $1\times n$ board, and the second cycle around the circle can also be thought of as a $1\times n$ board. We place this second board directly below the first board. Therefore, in this first case, we wish to find the number of tilings of two $1\times n$ boards, and to guarantee that no move is repeated, we cannot have two tiles of the same type lying directly atop each other in the $2\times n$ board. Suppose there are $u_n$ such tilings. It can easily be computed that $u_3=2$ and $u_4=6$ as shown below. In the second case, where we pass by point $1$ by moving from point $n$ to point $2$, we can similarly think about it in terms of tiling two rows of $1\times n$ boards, but we remove the last square in the first row and the first square in the second row to make sure that we jump from point $n$ to point $2$. Suppose that we can tile such boards in $s_n$ ways. It can be easily computed that $s_3=3$ and $s_4=5$ as shown below. Since these are the only two possible cases, we see that \[a_n=u_n+s_n\tag{1}.\] For the sake of convenience in determining recurrence relations, we define another type of board with two $1\times n$ boards where a specific corner is removed (without loss of generality, we place this in the lower left hand corner). Let $t_n$ be the number of ways to tile such a board without placeing two of the same type of tile atop each other. Once again, we compute that $t_3=3$ and $t_4=5$ as shown below. We can determine reccurence relations for $s_n$, $t_n$, and $u_n$ in terms of each other. For $s_n$, note that a tiling can end in one of the three following ways such that the rest of the board can be tiled without restriction (the placed tiles are shaded). In the first, second, and third cases, we see that we can tile the rest of the board in $t_{n-1}$, $t_{n-2}$, and $s_{n-2}$ ways, respectively. Hence for $n\ge 5$, we see that \[s_n=t_{n-1}+t_{n-2}+s_{n-2}\tag{2}.\] For $t_n$, note that a tiling can end in one of the three following ways such that the rest of the board can be tiled without restriction. In the first, second, and third cases, we see that we can tile the rest of the board in $s_{n-1}$, $s_{n-2}$, and $t_{n-2}$ ways, respectively. Hence for $n\ge 5$, we see that \[t_n=s_{n-1}+s_{n-2}+t_{n-2}\tag{3}.\] For $u_n$, note that a tiling can end in one of the two following ways such that the rest of the board can be tiled without restriction. In either case, we are left with a board with a corner removed, hence we can tile the rest of the board in $t_{n-1}$ ways in each case. Hence for $n\ge 4$, we see that \[u_n=2t_{n-1}\tag{4}.\] Subtracting (3) from (2), we find that \[s_n-t_n=s_{n-1}-t_{n-1}.\] Therefore, if $s_{n-1}=t_{n-1}$, then $s_n=t_n$. Since $s_3=t_3$ and $s_4=t_4$, we see that $s_n=t_n$ for all $n\ge 3$. Therefore, (2) can be rewritten as \[s_n=s_{n-1}+2s_{n-2}\tag{5},\] and (4) can be rewritten as \[u_n=2s_{n-1}\tag{6}.\] Now by (1), we know that \[a_{n}+a_{n-1}=u_n+s_n+u_{n-1}+s_{n-1}.\tag{7}\] In particular, $a_4+a_3=6+5+2+3=2^4$, so the statement is true for $n=4$. Then by (7), and then substituting (5) and (6) (where these are valid for $n\ge 5$), we find \begin{align*} a_n+a_{n-1}&=u_n+s_n+u_{n-1}+s_{n-1}\\ &=2s_{n-1}+(s_{n-1}+2s_{n-2})+u_{n-1}+s_{n-1}\\ &=4s_{n-1}+2s_{n-2}+u_{n-1}.\tag{8} \end{align*} But then by (5), and then substituting $4s_{n-3}=2u_{n-2}$ and $2s_{n-2}=u_{n-1}$ (by (6), and these are valid for $n\ge 6$), we find \begin{align*} 2s_{n-1}&=2s_{n-2}+4s_{n-3}\\ &=u_{n-1}+2u_{n-2}. \end{align*} We substitute this into (8), finding that for $n\ge 6$, \begin{align*} a_{n}+a_{n-1}&=2s_{n-1}+2s_{n-2}+u_{n-1}+(u_{n-1}+2u_{n-2})\\ &=2(s_{n-1}+s_{n-2}+u_{n-1}+u_{n-2})\\ &=2(a_{n-1}+a_{n-2}).\tag{9} \end{align*} Therefore, if $a_{n-1}+a_{n-2}=2^{n-1}$, then $a_{n}+a_{n-1}=2^n$. We already know that $a_4+a_3=2^4$. Also, we can compute that \begin{align*} s_5&=s_4+2s_3=5+2\cdot 3=11\\ u_5&=2s_4=2\cdot 5=10. \end{align*} Hence $a_5=s_5+u_5=21$. So as $a_4=s_4+u_4=11$, we find that $a_5+a_4=2^5$. Then we can use (9) for $n\ge 6$ to find by induction that $a_{n}+a_{n-1}=2^n$ for all $n\ge 4$.
// Block 1 unitsize(10); draw((0,0)--(3,0)--(3,2)--(0,2)--cycle^^(0,1)--(3,1),linewidth(2)); draw((1,0)--(1,1)^^(2,1)--(2,2)); draw(shift((0,-2.5))*((0,0)--(3,0)--(3,2)--(0,2)--cycle^^(0,1)--(3,1)),linewidth(2)); draw(shift((0,-2.5))*((1,0)--(1,1)^^(2,1)--(2,2))); draw(shift((7,0))*((0,0)--(4,0)--(4,2)--(0,2)--cycle^^(0,1)--(4,1)),linewidth(2)); draw(shift((7,0))*((1,1)--(1,2)^^(2,0)--(2,2)^^(3,1)--(3,2))); draw(shift((7,-2.5))*((0,0)--(4,0)--(4,2)--(0,2)--cycle^^(0,1)--(4,1)),linewidth(2)); draw(shift((7,-2.5))*((1,0)--(1,1)^^(2,0)--(2,2)^^(3,1)--(3,2))); draw(shift((12,0))*((0,0)--(4,0)--(4,2)--(0,2)--cycle^^(0,1)--(4,1)),linewidth(2)); draw(shift((12,0))*((1,1)--(1,2)^^(2,0)--(2,1)^^(3,1)--(3,2))); draw(shift((12,-2.5))*((0,0)--(4,0)--(4,2)--(0,2)--cycle^^(0,1)--(4,1)),linewidth(2)); draw(shift((12,-2.5))*((1,1)--(1,2)^^(2,0)--(2,2)^^(3,0)--(3,1))); draw(shift((17,0))*((0,0)--(4,0)--(4,2)--(0,2)--cycle^^(0,1)--(4,1)),linewidth(2)); draw(shift((17,0))*((1,0)--(1,1)^^(2,1)--(2,2)^^(3,0)--(3,1))); draw(shift((17,-2.5))*((0,0)--(4,0)--(4,2)--(0,2)--cycle^^(0,1)--(4,1)),linewidth(2)); draw(shift((17,-2.5))*((1,0)--(1,1)^^(2,0)--(2,2)^^(3,0)--(3,1))); // Block 2 unitsize(10); draw((1,0)--(3,0)--(3,1)--(2,1)--(2,2)--(0,2)--(0,1)--(1,1)--cycle^^(1,1)--(2,1),linewidth(2)); draw(shift((0,-2.5))*((1,0)--(3,0)--(3,1)--(2,1)--(2,2)--(0,2)--(0,1)--(1,1)--cycle^^(1,1)--(2,1)),linewidth(2)); draw(shift((0,-2.5))*((2,0)--(2,1))); draw(shift((4,0))*((1,0)--(3,0)--(3,1)--(2,1)--(2,2)--(0,2)--(0,1)--(1,1)--cycle^^(1,1)--(2,1)),linewidth(2)); draw(shift((4,0))*((1,1)--(1,2))); draw(shift((11,0))*((1,0)--(4,0)--(4,1)--(3,1)--(3,2)--(0,2)--(0,1)--(1,1)--cycle^^(1,1)--(3,1)),linewidth(2)); draw(shift((11,0))*((1,1)--(1,2)^^(2,1)--(2,2)^^(3,0)--(3,1))); draw(shift((11,-2.5))*((1,0)--(4,0)--(4,1)--(3,1)--(3,2)--(0,2)--(0,1)--(1,1)--cycle^^(1,1)--(3,1)),linewidth(2)); draw(shift((11,-2.5))*((2,0)--(2,2))); draw(shift((16,0))*((1,0)--(4,0)--(4,1)--(3,1)--(3,2)--(0,2)--(0,1)--(1,1)--cycle^^(1,1)--(3,1)),linewidth(2)); draw(shift((16,0))*((2,1)--(2,2)^^(3,0)--(3,1))); draw(shift((16,-2.5))*((1,0)--(4,0)--(4,1)--(3,1)--(3,2)--(0,2)--(0,1)--(1,1)--cycle^^(1,1)--(3,1)),linewidth(2)); draw(shift((16,-2.5))*((1,1)--(1,2)^^(2,0)--(2,1)^^(3,0)--(3,1))); draw(shift((21,0))*((1,0)--(4,0)--(4,1)--(3,1)--(3,2)--(0,2)--(0,1)--(1,1)--cycle^^(1,1)--(3,1)),linewidth(2)); draw(shift((21,0))*((1,1)--(1,2)^^(2,0)--(2,1))); // Block 3 unitsize(10); draw((1,0)--(3,0)--(3,2)--(0,2)--(0,1)--(1,1)--cycle^^(1,1)--(3,1),linewidth(2)); draw((1,1)--(1,2)^^(2,0)--(2,1)); draw(shift((0,-2.5))*((1,0)--(3,0)--(3,2)--(0,2)--(0,1)--(1,1)--cycle^^(1,1)--(3,1)),linewidth(2)); draw(shift((0,-2.5))*((1,1)--(1,2)^^(2,1)--(2,2))); draw(shift((4,0))*((1,0)--(3,0)--(3,2)--(0,2)--(0,1)--(1,1)--cycle^^(1,1)--(3,1)),linewidth(2)); draw(shift((4,0))*((2,1)--(2,2))); draw(shift((11,0))*((1,0)--(4,0)--(4,2)--(0,2)--(0,1)--(1,1)--cycle^^(1,1)--(4,1)),linewidth(2)); draw(shift((11,0))*((1,1)--(1,2)^^(2,1)--(2,2)^^(3,0)--(3,1))); draw(shift((11,-2.5))*((1,0)--(4,0)--(4,2)--(0,2)--(0,1)--(1,1)--cycle^^(1,1)--(4,1)),linewidth(2)); draw(shift((11,-2.5))*((1,1)--(1,2)^^(2,0)--(2,1)^^(3,1)--(3,2))); draw(shift((16,0))*((1,0)--(4,0)--(4,2)--(0,2)--(0,1)--(1,1)--cycle^^(1,1)--(4,1)),linewidth(2)); draw(shift((16,0))*((2,0)--(2,2)^^(3,1)--(3,2))); draw(shift((16,-2.5))*((1,0)--(4,0)--(4,2)--(0,2)--(0,1)--(1,1)--cycle^^(1,1)--(4,1)),linewidth(2)); draw(shift((16,-2.5))*((2,1)--(2,2)^^(3,0)--(3,1))); draw(shift((21,0))*((1,0)--(4,0)--(4,2)--(0,2)--(0,1)--(1,1)--cycle^^(1,1)--(4,1)),linewidth(2)); draw(shift((21,0))*((2,0)--(2,2)^^(3,0)--(3,1))); // Block 4 path unitrect=(0,0)--(2,0)--(2,1)--(0,1)--cycle; unitsize(10); fill(shift((3,0))*unitsquare,mediumgray); draw(shift((0,0))*((0,0)--(4,0)--(4,1)--(0,1)^^(3,1)--(3,2)--(0,2)),linewidth(2)); draw(shift((0,0))*((3,0)--(3,1))); label("$\dots$",(-1,1)); fill(shift((10,1))*unitsquare,mediumgray); fill(shift((10,0))*unitrect,mediumgray); draw(shift((8,0))*((0,0)--(4,0)--(4,1)--(0,1)^^(3,1)--(3,2)--(0,2)),linewidth(2)); draw(shift((8,0))*((2,0)--(2,2))); label("$\dots$",(8-1,1)); fill(shift((18,0))*unitrect,mediumgray); fill(shift((17,1))*unitrect,mediumgray); draw(shift((16,0))*((0,0)--(4,0)--(4,1)--(0,1)^^(3,1)--(3,2)--(0,2)),linewidth(2)); draw(shift((16,0))*((2,0)--(2,1)^^(1,1)--(1,2))); label("$\dots$",(16-1,1)); // Block 5 path unitrect=(0,0)--(2,0)--(2,1)--(0,1)--cycle; unitsize(10); filldraw(shift((3,0))*unitsquare,mediumgray); filldraw(shift((2,1))*unitrect,mediumgray); draw(shift((0,0))*((0,0)--(4,0)--(4,1)--(0,1)^^(4,1)--(4,2)--(0,2)),linewidth(2)); label("$\dots$",(-1,1)); filldraw(shift((11,1))*unitsquare,mediumgray); filldraw(shift((10,0))*unitrect,mediumgray); filldraw(shift((9,1))*unitrect,mediumgray); draw(shift((8,0))*((0,0)--(4,0)--(4,1)--(0,1)^^(4,1)--(4,2)--(0,2)),linewidth(2)); label("$\dots$",(8-1,1)); filldraw(shift((19,1))*unitsquare,mediumgray); filldraw(shift((18,1))*unitsquare,mediumgray); filldraw(shift((18,0))*unitrect,mediumgray); draw(shift((16,0))*((0,0)--(4,0)--(4,1)--(0,1)^^(4,1)--(4,2)--(0,2)),linewidth(2)); label("$\dots$",(16-1,1)); // Block 6 path unitrect=(0,0)--(2,0)--(2,1)--(0,1)--cycle; unitsize(10); filldraw(shift((3,1))*unitsquare,mediumgray); filldraw(shift((2,0))*unitrect,mediumgray); draw(shift((0,0))*((0,0)--(4,0)--(4,1)--(0,1)^^(4,1)--(4,2)--(0,2)),linewidth(2)); label("$\dots$",(-1,1)); filldraw(shift((11,0))*unitsquare,mediumgray); filldraw(shift((10,1))*unitrect,mediumgray); draw(shift((8,0))*((0,0)--(4,0)--(4,1)--(0,1)^^(4,1)--(4,2)--(0,2)),linewidth(2)); label("$\dots$",(8-1,1)); // Block 7 unitsize(10); draw((0,0)--(3,0)--(3,2)--(0,2)--cycle^^(0,1)--(3,1),linewidth(2)); draw((1,0)--(1,1)^^(2,1)--(2,2)); draw(shift((0,-2.5))*((0,0)--(3,0)--(3,2)--(0,2)--cycle^^(0,1)--(3,1)),linewidth(2)); draw(shift((0,-2.5))*((1,0)--(1,1)^^(2,1)--(2,2))); draw(shift((7,0))*((0,0)--(4,0)--(4,2)--(0,2)--cycle^^(0,1)--(4,1)),linewidth(2)); draw(shift((7,0))*((1,1)--(1,2)^^(2,0)--(2,2)^^(3,1)--(3,2))); draw(shift((7,-2.5))*((0,0)--(4,0)--(4,2)--(0,2)--cycle^^(0,1)--(4,1)),linewidth(2)); draw(shift((7,-2.5))*((1,0)--(1,1)^^(2,0)--(2,2)^^(3,1)--(3,2))); draw(shift((12,0))*((0,0)--(4,0)--(4,2)--(0,2)--cycle^^(0,1)--(4,1)),linewidth(2)); draw(shift((12,0))*((1,1)--(1,2)^^(2,0)--(2,1)^^(3,1)--(3,2))); draw(shift((12,-2.5))*((0,0)--(4,0)--(4,2)--(0,2)--cycle^^(0,1)--(4,1)),linewidth(2)); draw(shift((12,-2.5))*((1,1)--(1,2)^^(2,0)--(2,2)^^(3,0)--(3,1))); draw(shift((17,0))*((0,0)--(4,0)--(4,2)--(0,2)--cycle^^(0,1)--(4,1)),linewidth(2)); draw(shift((17,0))*((1,0)--(1,1)^^(2,1)--(2,2)^^(3,0)--(3,1))); draw(shift((17,-2.5))*((0,0)--(4,0)--(4,2)--(0,2)--cycle^^(0,1)--(4,1)),linewidth(2)); draw(shift((17,-2.5))*((1,0)--(1,1)^^(2,0)--(2,2)^^(3,0)--(3,1))); // Block 8 unitsize(10); draw((1,0)--(3,0)--(3,1)--(2,1)--(2,2)--(0,2)--(0,1)--(1,1)--cycle^^(1,1)--(2,1),linewidth(2)); draw(shift((0,-2.5))*((1,0)--(3,0)--(3,1)--(2,1)--(2,2)--(0,2)--(0,1)--(1,1)--cycle^^(1,1)--(2,1)),linewidth(2)); draw(shift((0,-2.5))*((2,0)--(2,1))); draw(shift((4,0))*((1,0)--(3,0)--(3,1)--(2,1)--(2,2)--(0,2)--(0,1)--(1,1)--cycle^^(1,1)--(2,1)),linewidth(2)); draw(shift((4,0))*((1,1)--(1,2))); draw(shift((11,0))*((1,0)--(4,0)--(4,1)--(3,1)--(3,2)--(0,2)--(0,1)--(1,1)--cycle^^(1,1)--(3,1)),linewidth(2)); draw(shift((11,0))*((1,1)--(1,2)^^(2,1)--(2,2)^^(3,0)--(3,1))); draw(shift((11,-2.5))*((1,0)--(4,0)--(4,1)--(3,1)--(3,2)--(0,2)--(0,1)--(1,1)--cycle^^(1,1)--(3,1)),linewidth(2)); draw(shift((11,-2.5))*((2,0)--(2,2))); draw(shift((16,0))*((1,0)--(4,0)--(4,1)--(3,1)--(3,2)--(0,2)--(0,1)--(1,1)--cycle^^(1,1)--(3,1)),linewidth(2)); draw(shift((16,0))*((2,1)--(2,2)^^(3,0)--(3,1))); draw(shift((16,-2.5))*((1,0)--(4,0)--(4,1)--(3,1)--(3,2)--(0,2)--(0,1)--(1,1)--cycle^^(1,1)--(3,1)),linewidth(2)); draw(shift((16,-2.5))*((1,1)--(1,2)^^(2,0)--(2,1)^^(3,0)--(3,1))); draw(shift((21,0))*((1,0)--(4,0)--(4,1)--(3,1)--(3,2)--(0,2)--(0,1)--(1,1)--cycle^^(1,1)--(3,1)),linewidth(2)); draw(shift((21,0))*((1,1)--(1,2)^^(2,0)--(2,1))); // Block 9 unitsize(10); draw((1,0)--(3,0)--(3,2)--(0,2)--(0,1)--(1,1)--cycle^^(1,1)--(3,1),linewidth(2)); draw((1,1)--(1,2)^^(2,0)--(2,1)); draw(shift((0,-2.5))*((1,0)--(3,0)--(3,2)--(0,2)--(0,1)--(1,1)--cycle^^(1,1)--(3,1)),linewidth(2)); draw(shift((0,-2.5))*((1,1)--(1,2)^^(2,1)--(2,2))); draw(shift((4,0))*((1,0)--(3,0)--(3,2)--(0,2)--(0,1)--(1,1)--cycle^^(1,1)--(3,1)),linewidth(2)); draw(shift((4,0))*((2,1)--(2,2))); draw(shift((11,0))*((1,0)--(4,0)--(4,2)--(0,2)--(0,1)--(1,1)--cycle^^(1,1)--(4,1)),linewidth(2)); draw(shift((11,0))*((1,1)--(1,2)^^(2,1)--(2,2)^^(3,0)--(3,1))); draw(shift((11,-2.5))*((1,0)--(4,0)--(4,2)--(0,2)--(0,1)--(1,1)--cycle^^(1,1)--(4,1)),linewidth(2)); draw(shift((11,-2.5))*((1,1)--(1,2)^^(2,0)--(2,1)^^(3,1)--(3,2))); draw(shift((16,0))*((1,0)--(4,0)--(4,2)--(0,2)--(0,1)--(1,1)--cycle^^(1,1)--(4,1)),linewidth(2)); draw(shift((16,0))*((2,0)--(2,2)^^(3,1)--(3,2))); draw(shift((16,-2.5))*((1,0)--(4,0)--(4,2)--(0,2)--(0,1)--(1,1)--cycle^^(1,1)--(4,1)),linewidth(2)); draw(shift((16,-2.5))*((2,1)--(2,2)^^(3,0)--(3,1))); draw(shift((21,0))*((1,0)--(4,0)--(4,2)--(0,2)--(0,1)--(1,1)--cycle^^(1,1)--(4,1)),linewidth(2)); draw(shift((21,0))*((2,0)--(2,2)^^(3,0)--(3,1))); // Block 10 path unitrect=(0,0)--(2,0)--(2,1)--(0,1)--cycle; unitsize(10); fill(shift((3,0))*unitsquare,mediumgray); draw(shift((0,0))*((0,0)--(4,0)--(4,1)--(0,1)^^(3,1)--(3,2)--(0,2)),linewidth(2)); draw(shift((0,0))*((3,0)--(3,1))); label("$\dots$",(-1,1)); fill(shift((10,1))*unitsquare,mediumgray); fill(shift((10,0))*unitrect,mediumgray); draw(shift((8,0))*((0,0)--(4,0)--(4,1)--(0,1)^^(3,1)--(3,2)--(0,2)),linewidth(2)); draw(shift((8,0))*((2,0)--(2,2))); label("$\dots$",(8-1,1)); fill(shift((18,0))*unitrect,mediumgray); fill(shift((17,1))*unitrect,mediumgray); draw(shift((16,0))*((0,0)--(4,0)--(4,1)--(0,1)^^(3,1)--(3,2)--(0,2)),linewidth(2)); draw(shift((16,0))*((2,0)--(2,1)^^(1,1)--(1,2))); label("$\dots$",(16-1,1)); // Block 11 path unitrect=(0,0)--(2,0)--(2,1)--(0,1)--cycle; unitsize(10); filldraw(shift((3,0))*unitsquare,mediumgray); filldraw(shift((2,1))*unitrect,mediumgray); draw(shift((0,0))*((0,0)--(4,0)--(4,1)--(0,1)^^(4,1)--(4,2)--(0,2)),linewidth(2)); label("$\dots$",(-1,1)); filldraw(shift((11,1))*unitsquare,mediumgray); filldraw(shift((10,0))*unitrect,mediumgray); filldraw(shift((9,1))*unitrect,mediumgray); draw(shift((8,0))*((0,0)--(4,0)--(4,1)--(0,1)^^(4,1)--(4,2)--(0,2)),linewidth(2)); label("$\dots$",(8-1,1)); filldraw(shift((19,1))*unitsquare,mediumgray); filldraw(shift((18,1))*unitsquare,mediumgray); filldraw(shift((18,0))*unitrect,mediumgray); draw(shift((16,0))*((0,0)--(4,0)--(4,1)--(0,1)^^(4,1)--(4,2)--(0,2)),linewidth(2)); label("$\dots$",(16-1,1)); // Block 12 path unitrect=(0,0)--(2,0)--(2,1)--(0,1)--cycle; unitsize(10); filldraw(shift((3,1))*unitsquare,mediumgray); filldraw(shift((2,0))*unitrect,mediumgray); draw(shift((0,0))*((0,0)--(4,0)--(4,1)--(0,1)^^(4,1)--(4,2)--(0,2)),linewidth(2)); label("$\dots$",(-1,1)); filldraw(shift((11,0))*unitsquare,mediumgray); filldraw(shift((10,1))*unitrect,mediumgray); draw(shift((8,0))*((0,0)--(4,0)--(4,1)--(0,1)^^(4,1)--(4,2)--(0,2)),linewidth(2)); label("$\dots$",(8-1,1));
[]
47
In convex cyclic quadrilateral $ABCD,$ we know that lines $AC$ and $BD$ intersect at $E,$ lines $AB$ and $CD$ intersect at $F,$ and lines $BC$ and $DA$ intersect at $G.$ Suppose that the circumcircle of $\triangle ABE$ intersects line $CB$ at $B$ and $P$, and the circumcircle of $\triangle ADE$ intersects line $CD$ at $D$ and $Q$, where $C,B,P,G$ and $C,Q,D,F$ are collinear in that order. Prove that if lines $FP$ and $GQ$ intersect at $M$, then $\angle MAC = 90^{\circ}.$
2018 USAMO Problem 5
\begin{align*} &\mathrel{\phantom{=}}\angle DEQ+\angle AED+\angle AEP\\ &=\angle DAQ+\angle AQD+\angle AEP\\ &=180-\angle ADC+\angle AEP\\ &=180-\angle ADC+\angle ABP\\ &=\angle ABP+\angle ABC\\ &=180 \end{align*} so $P,E,Q$ are collinear. Furthermore, note that $DQBP$ is cyclic because: \[\angle EDQ = \angle BAE = BPE.\] Notice that since $A$ is the intersection of $(EDQ)$ and $(BPE)$, it is the Miquel point of $DQBP$. Now define $X$ as the intersection of $BQ$ and $DP$. From Pappus's theorem on $BFPDGQ$ that $A,M,X$ are collinear. It’s a well known property of Miquel points that $\angle EAX = 90$, so it follows that $MA \perp AE$, as desired. $\blacksquare$ ~AopsUser101
// Block 1 /* Geogebra to Asymptote conversion, documentation at artofproblemsolving.com/Wiki go to User:Azjps/geogebra */ import graph; size(13cm); real labelscalefactor = 0.5; /* changes label-to-point distance */ pen dps = linewidth(0.7) + fontsize(10); defaultpen(dps); /* default pen style */ pen dotstyle = black; /* point style */ real xmin = -14.573333333333343, xmax = 3.56, ymin = -4.74, ymax = 8.473333333333338; /* image dimensions */ pen sexdts = rgb(0.1803921568627451,0.49019607843137253,0.19607843137254902); pen cczzff = rgb(0.8,0.6,1); pen ccwwff = rgb(0.8,0.4,1); pen wvvxds = rgb(0.396078431372549,0.3411764705882353,0.8235294117647058); pen rvwvcq = rgb(0.08235294117647059,0.396078431372549,0.7529411764705882); pen wrwrwr = rgb(0.3803921568627451,0.3803921568627451,0.3803921568627451); /* draw figures */ draw(circle((-4.80390015600624,-0.5952574102964114), 2.6896620042551294), linewidth(1) + sexdts); draw((-5.58,1.98)--(-4.06,-3.18), linewidth(1) + cczzff); draw((-3.8846455730896308,1.9324397054436309)--(-7.42,-1.22), linewidth(1) + ccwwff); draw(circle((-7.256640463424001,0.8150682664688008), 2.0416143581437347), linewidth(1) + sexdts); draw(circle((-4.74356842508035,1.555353052957629), 0.9380526686465809), linewidth(1) + sexdts); draw((-13.275816730447621,2.195893092761112)--(-3.912501589632712,1.120300499610314), linewidth(1) + wvvxds); draw((-3.775365275873233,5.118495172394378)--(-8.947688716232484,-0.3288482488643849), linewidth(1) + wvvxds); draw((-5.58,1.98)--(-3.775365275873233,5.118495172394378), linewidth(1) + wvvxds); draw((-5.58,1.98)--(-7.42,-1.22), linewidth(1) + wvvxds); draw((-3.8846455730896308,1.9324397054436309)--(-4.06,-3.18), linewidth(1) + rvwvcq); draw((-3.8846455730896308,1.9324397054436309)--(-3.775365275873233,5.118495172394378), linewidth(1) + rvwvcq); draw((-13.275816730447621,2.195893092761112)--(-4.06,-3.18), linewidth(1) + rvwvcq); draw((-13.275816730447621,2.195893092761112)--(-3.775365275873233,5.118495172394378), linewidth(1) + rvwvcq); draw((-8.947688716232484,-0.3288482488643849)--(-0.2874232022466262,3.539053630345969), linewidth(1) + rvwvcq); draw((-7.42,-1.22)--(-0.2874232022466262,3.539053630345969), linewidth(1) + rvwvcq); draw((-0.2874232022466262,3.539053630345969)--(-4.06,-3.18), linewidth(1) + rvwvcq); draw(circle((-6.783982903277441,1.6253383695771872), 2.915556239332651), linewidth(1) + rvwvcq); draw((-5.58,1.98)--(-3.8846455730896308,1.9324397054436309), linewidth(1) + ccwwff); draw((-5.216225985226909,0.7450829498492438)--(-3.912501589632712,1.120300499610314), linewidth(1) + ccwwff); draw((-8.947688716232484,-0.3288482488643849)--(-5.58,1.98), linewidth(1) + ccwwff); draw((-8.947688716232484,-0.3288482488643849)--(-5.216225985226909,0.7450829498492438), linewidth(1) + ccwwff); draw((-5.58,1.98)--(-3.912501589632712,1.120300499610314), linewidth(1) + ccwwff); /* dots and labels */ dot((-5.58,1.98),dotstyle); label("$A$", (-5.52,2.113333333333337), N * labelscalefactor); dot((-7.42,-1.22),dotstyle); label("$B$", (-7.36,-1.0866666666666638), SW * labelscalefactor); dot((-4.06,-3.18),dotstyle); label("$C$", (-4,-3.046666666666664), NE * labelscalefactor); dot((-3.8846455730896308,1.9324397054436309),dotstyle); label("$D$", (-3.8266666666666733,2.06), NE * labelscalefactor); dot((-5.216225985226909,0.7450829498492438),linewidth(4pt) + dotstyle); label("$E$", (-5.16,0.8466666666666699), NE * labelscalefactor); dot((-3.775365275873233,5.118495172394378),linewidth(4pt) + dotstyle); label("$F$", (-3.72,5.22), NE * labelscalefactor); dot((-13.275816730447621,2.195893092761112),linewidth(4pt) + dotstyle); label("$G$", (-13.226666666666675,2.3), NE * labelscalefactor); dot((-8.947688716232484,-0.3288482488643849),linewidth(4pt) + dotstyle); label("$P$", (-8.893333333333342,-0.22), NE * labelscalefactor); dot((-3.912501589632712,1.120300499610314),linewidth(4pt) + dotstyle); label("$Q$", (-3.88,1.18), NE * labelscalefactor); dot((-0.2874232022466262,3.539053630345969),linewidth(4pt) + dotstyle); label("$X$", (-0.24,3.6466666666666705), NE * labelscalefactor); dot((-7.211833579631486,1.4993048370077748),linewidth(4pt) + dotstyle); label("$M$", (-7.16,1.60666666666667), NE * labelscalefactor); clip((xmin,ymin)--(xmin,ymax)--(xmax,ymax)--(xmax,ymin)--cycle); /* end of picture */ // Block 2 /* Geogebra to Asymptote conversion, documentation at artofproblemsolving.com/Wiki go to User:Azjps/geogebra */ import graph; size(13cm); real labelscalefactor = 0.5; /* changes label-to-point distance */ pen dps = linewidth(0.7) + fontsize(10); defaultpen(dps); /* default pen style */ pen dotstyle = black; /* point style */ real xmin = -14.573333333333343, xmax = 3.56, ymin = -4.74, ymax = 8.473333333333338; /* image dimensions */ pen sexdts = rgb(0.1803921568627451,0.49019607843137253,0.19607843137254902); pen cczzff = rgb(0.8,0.6,1); pen ccwwff = rgb(0.8,0.4,1); pen wvvxds = rgb(0.396078431372549,0.3411764705882353,0.8235294117647058); pen rvwvcq = rgb(0.08235294117647059,0.396078431372549,0.7529411764705882); pen wrwrwr = rgb(0.3803921568627451,0.3803921568627451,0.3803921568627451); /* draw figures */ draw(circle((-4.80390015600624,-0.5952574102964114), 2.6896620042551294), linewidth(1) + sexdts); draw((-5.58,1.98)--(-4.06,-3.18), linewidth(1) + cczzff); draw((-3.8846455730896308,1.9324397054436309)--(-7.42,-1.22), linewidth(1) + ccwwff); draw(circle((-7.256640463424001,0.8150682664688008), 2.0416143581437347), linewidth(1) + sexdts); draw(circle((-4.74356842508035,1.555353052957629), 0.9380526686465809), linewidth(1) + sexdts); draw((-13.275816730447621,2.195893092761112)--(-3.912501589632712,1.120300499610314), linewidth(1) + wvvxds); draw((-3.775365275873233,5.118495172394378)--(-8.947688716232484,-0.3288482488643849), linewidth(1) + wvvxds); draw((-5.58,1.98)--(-3.775365275873233,5.118495172394378), linewidth(1) + wvvxds); draw((-5.58,1.98)--(-7.42,-1.22), linewidth(1) + wvvxds); draw((-3.8846455730896308,1.9324397054436309)--(-4.06,-3.18), linewidth(1) + rvwvcq); draw((-3.8846455730896308,1.9324397054436309)--(-3.775365275873233,5.118495172394378), linewidth(1) + rvwvcq); draw((-13.275816730447621,2.195893092761112)--(-4.06,-3.18), linewidth(1) + rvwvcq); draw((-13.275816730447621,2.195893092761112)--(-3.775365275873233,5.118495172394378), linewidth(1) + rvwvcq); draw((-8.947688716232484,-0.3288482488643849)--(-0.2874232022466262,3.539053630345969), linewidth(1) + rvwvcq); draw((-7.42,-1.22)--(-0.2874232022466262,3.539053630345969), linewidth(1) + rvwvcq); draw((-0.2874232022466262,3.539053630345969)--(-4.06,-3.18), linewidth(1) + rvwvcq); draw(circle((-6.783982903277441,1.6253383695771872), 2.915556239332651), linewidth(1) + rvwvcq); draw((-5.58,1.98)--(-3.8846455730896308,1.9324397054436309), linewidth(1) + ccwwff); draw((-5.216225985226909,0.7450829498492438)--(-3.912501589632712,1.120300499610314), linewidth(1) + ccwwff); draw((-8.947688716232484,-0.3288482488643849)--(-5.58,1.98), linewidth(1) + ccwwff); draw((-8.947688716232484,-0.3288482488643849)--(-5.216225985226909,0.7450829498492438), linewidth(1) + ccwwff); draw((-5.58,1.98)--(-3.912501589632712,1.120300499610314), linewidth(1) + ccwwff); /* dots and labels */ dot((-5.58,1.98),dotstyle); label("$A$", (-5.52,2.113333333333337), N * labelscalefactor); dot((-7.42,-1.22),dotstyle); label("$B$", (-7.36,-1.0866666666666638), SW * labelscalefactor); dot((-4.06,-3.18),dotstyle); label("$C$", (-4,-3.046666666666664), NE * labelscalefactor); dot((-3.8846455730896308,1.9324397054436309),dotstyle); label("$D$", (-3.8266666666666733,2.06), NE * labelscalefactor); dot((-5.216225985226909,0.7450829498492438),linewidth(4pt) + dotstyle); label("$E$", (-5.16,0.8466666666666699), NE * labelscalefactor); dot((-3.775365275873233,5.118495172394378),linewidth(4pt) + dotstyle); label("$F$", (-3.72,5.22), NE * labelscalefactor); dot((-13.275816730447621,2.195893092761112),linewidth(4pt) + dotstyle); label("$G$", (-13.226666666666675,2.3), NE * labelscalefactor); dot((-8.947688716232484,-0.3288482488643849),linewidth(4pt) + dotstyle); label("$P$", (-8.893333333333342,-0.22), NE * labelscalefactor); dot((-3.912501589632712,1.120300499610314),linewidth(4pt) + dotstyle); label("$Q$", (-3.88,1.18), NE * labelscalefactor); dot((-0.2874232022466262,3.539053630345969),linewidth(4pt) + dotstyle); label("$X$", (-0.24,3.6466666666666705), NE * labelscalefactor); dot((-7.211833579631486,1.4993048370077748),linewidth(4pt) + dotstyle); label("$M$", (-7.16,1.60666666666667), NE * labelscalefactor); clip((xmin,ymin)--(xmin,ymax)--(xmax,ymax)--(xmax,ymin)--cycle); /* end of picture */
[]
48
Let ABC be a triangle with incenter $I$ and excenters $I_a$, $I_b$, $I_c$ opposite $A$, $B$, and $C$, respectively. Given an arbitrary point $D$ on the circumcircle of $\triangle ABC$ that does not lie on any of the lines $II_{a}$, $I_{b}I_{c}$, or $BC$, suppose the circumcircles of $\triangle DIIa$ and $\triangle DI_bI_c$ intersect at two distinct points $D$ and $F$. If $E$ is the intersection of lines $DF$ and $BC$, prove that $\angle BAD = \angle EAC$.
2023 USAMO Problem 6
Consider points $G,H,J,K,P,$ and $Q$ such that the intersections of the circumcircle of $\triangle{}ABC$ with the circumcircle of $\triangle{}DII_A$ are $D$ and $G$, the intersections of the circumcircle of $\triangle{}ABC$ with the circumcircle of $\triangle{}DI_BI_C$ are $D$ and $H$, the intersections of the circumcircle of $\triangle{}ABC$ with line $\overline{II_A}$ are $A$ and $J$, the intersections of the circumcircle of $\triangle{}ABC$ with line $\overline{I_BI_C}$ are $A$ and $K$, the intersection of lines $\overline{II_A}$ and $\overline{BC}$ is $P$, and the intersection of lines $\overline{I_BI_C}$ and $\overline{BC}$ is $Q$. Since $IBI_AC$ is cyclic, the pairwise radical axes of the circumcircles of $\triangle{}DII_A,\triangle{}ABC,$ and $IBI_AC$ concur. The pairwise radical axes of these circles are $\overline{GD},\overline{II_A},$ and $\overline{BC}$, so $G,P,$ and $D$ are collinear. Similarly, since $BCI_BI_C$ is cyclic, the pairwise radical axes of the cirucmcircles of $\triangle{}DI_BI_C,\triangle{}ABC,$ and $BCI_BI_C$ concur. The pairwise radical axes of these circles are $\overline{HD},\overline{I_BI_C},$ and $\overline{BC}$, so $H,Q,$ and $D$ are collinear. This means that $-1=(Q,P;B,C)\stackrel{D}{=}(H,G;B,C)$, so the tangents to the circumcircle of $\triangle{}ABC$ at $G$ and $H$ intersect on $\overline{BC}$. Let this intersection be $X$. Also, let the intersection of the tangents to the circumcircle of $\triangle{}ABC$ at $K$ and $J$ be a point at infinity on $\overline{BC}$ called $Y$ and let the intersection of lines $\overline{KG}$ and $\overline{}HJ$ be $Z$. Then, let the intersection of lines $\overline{GJ}$ and $\overline{HK}$ be $E'$. By Pascal's Theorem on $GGJHHK$ and $GJJHKK$, we get that $X,E',$ and $Z$ are collinear and that $E',Y,$ and $Z$ are collinear, so $E',X,$ and $Y$ are collinear, meaning that $E'$ lies on $\overline{BC}$ since both $X$ and $Y$ lie on $\overline{BC}$. Consider the transformation which is the composition of an inversion centered at $A$ and a reflection over the angle bisector of $\angle{}CAB$ that sends $B$ to $C$ and $C$ to $B$. We claim that this sends $D$ to $E'$ and $E'$ to $D$. It is sufficient to prove that if the transformation sends $G$ to $G'$, then $AE'JG'$ is cyclic. Notice that $\triangle{}AGB\sim\triangle{}ACG'$ since $\angle{}GAB=\angle{}G'AC$ and $\tfrac{AG'}{AC}=\tfrac{\frac{AB\cdot{}AC}{AG}}{AC}=\tfrac{AB}{AG}$. Therefore, we get that $\angle{}AG'E'=\angle{}ABG=\angle{}AJE'$, so $AE'JG'$ is cyclic, proving the claim. This means that $\angle{}BAE'=\angle{}CAD$. We claim that $\angle{}I_BE'I_C+\angle{}I_BDI_C=180^\circ$. Construct $D'$ to be the intersection of line $\overline{AE'}$ and the circumcircle of $\triangle{}E'I_BI_C$ and let $B'$ and $C'$ be the intersections of lines $\overline{AC}$ and $\overline{AB}$ with the circumcircle of $\triangle{}BI_BI_C$. Since $B'$ and $C'$ are the reflections of $B$ and $C$ over $\overline{I_BI_C}$, it is sufficient to prove that $A,B',C',D'$ are concyclic. Since $\overline{B'C},\overline{D'E'},$ and $\overline{I_BI_C}$ concur and $D',E',I_B,I_C$ and $I_B,I_C,B',C$ are concyclic, we have that $B',C,D',E'$ are concyclic, so $\angle{}B'D'A=\angle{}ACE'=\angle{}AC'B'$, so $A,B',C',D'$ are concyclic, proving the claim. We can similarly get that $\angle{}IE'I_A=\angle{}IDI_A$. Let line $\overline{E'J}$ intersect the circumcircle of $\triangle{}DII_A$ at $G$ and $J'$. Notice that $J$ is the midpoint of $\overline{II_A}$ and $\angle{}IE'I_A=\angle{}IDI_A=\angle{}IJ'I_A$, so $IE'I_AJ'$ is a parallelogram with center $J$, so $\tfrac{EJ}{EJ'}=\tfrac{1}{2}$. Similarly, we get that if line $\overline{E'K}$ intersects the circumcircle of $\triangle{}DI_BI_C$ at $H$ and $K'$, we have that $\tfrac{EK}{EK'}=\tfrac{1}{2}$, so $\overline{KJ}\parallel\overline{K'J'}$, so $\angle{}HGJ'=\angle{}HGJ=\angle{}HKJ=\angle{}HK'J'$, so $G,H,J',K'$ are concyclic. Then, the pairwise radical axes of the circumcircles of $\triangle{}DII_A,\triangle{}DI_BI_C,$ and $GHJ'K'$ are $\overline{DF},\overline{HK'},$ and $\overline{GJ'}$, so $\overline{DF},\overline{HK'},$ and $\overline{GJ'}$ concur, so $\overline{DF},\overline{HK},$ and $\overline{GJ}$ concur, so $E=E'$. We are then done since $\angle{}BAE'=\angle{}CAD$. ~Zhaom
// Block 1 size(500); pair A,B,C,D,E,F,G,H,I,J,K,IA,IB,IC,P,Q; B=(0,0); C=(8,0); A=intersectionpoint(Circle(B,6),Circle(C,9)); I=incenter(A,B,C); path c=circumcircle(A,B,C); J=intersectionpoint(I--(4*I-3*A),c); IA=2*J-I; IB=2*intersectionpoint(I--(4*I-3*B),c)-I; IC=2*intersectionpoint(I--(4*I-3*C),c)-I; K=intersectionpoint(IB--IC,c); D=intersectionpoint(I--(I+(10,-12)),c); path c1=circumcircle(D,I,IA),c2=circumcircle(D,IB,IC); F=intersectionpoints(c1,c2)[1]; E=extension(B,C,D,F); G=intersectionpoint(c1,c); H=intersectionpoint(c2,c); P=extension(A,I,B,C); Q=extension(IB,IC,B,C); draw(A--B--C--A); draw(c); draw(A--J); draw(circumcircle(D,I,IA)); draw(circumcircle(D,IB,IC)); draw(D--F); draw(B--Q--IB); draw(G--J,dashed); draw(H--K,dashed); dot("$A$",A,dir(A-circumcenter(A,B,C))); dot("$B$",B,1/2*dir(B-dir(circumcenter(A,B,C))*dir(90)+dir(B-C))); dot("$C$",C,dir(C-circumcenter(A,B,C))*dir(15)); dot("$D$",D,dir(dir(90)*dir(circumcenter(D,I,IA)-D)+dir(90)*dir(D-circumcenter(D,IB,IC)))); dot("$E$",E,dir(dir(H-K)+dir(B-C))); dot("$F$",F,dir(dir(90)*dir(F-circumcenter(D,I,IA))+dir(90)*dir(circumcenter(D,IB,IC)-F))); dot("$G$",G,dir(dir(90)*dir(G-circumcenter(D,I,IA))+dir(90)*dir(circumcenter(A,B,C)-G))); dot("$H$",H,dir(dir(90)*dir(circumcenter(D,IB,IC)-H)+dir(90)*dir(H-circumcenter(A,B,C)))); dot("$I$",I,dir(dir(90)*dir(circumcenter(D,I,IA)-I)+dir(A-I))); dot("$J$",J,dir(J-circumcenter(A,B,C))); dot("$K$",K,dir(K-circumcenter(A,B,C))); dot("$I_A$",IA,dir(IA-circumcenter(D,I,IA))); dot("$I_B$",IB,dir(dir(IB-IC)+dir(IB-IA))); dot("$I_C$",IC,dir(dir(90)*dir(circumcenter(D,IB,IC)-IC)+dir(IC-IB))); dot("$P$",P,dir(dir(A-I)+dir(C-B))); dot("$Q$",Q,dir(dir(IC-IB)+dir(B-C))); // Block 2 size(500); pair A,B,C,D,E,F,G,H,I,J,K,IA,IB,IC,P,Q,GP; B=(0,0); C=(8,0); A=intersectionpoint(Circle(B,6),Circle(C,9)); I=incenter(A,B,C); path c=circumcircle(A,B,C); J=intersectionpoint(I--(4*I-3*A),c); IA=2*J-I; IB=2*intersectionpoint(I--(4*I-3*B),c)-I; IC=2*intersectionpoint(I--(4*I-3*C),c)-I; K=intersectionpoint(IB--IC,c); D=intersectionpoint(I--(I+(10,-12)),c); path c1=circumcircle(D,I,IA),c2=circumcircle(D,IB,IC); F=intersectionpoints(c1,c2)[1]; E=extension(B,C,D,F); G=intersectionpoint(c1,c); H=intersectionpoint(c2,c); P=extension(A,I,B,C); Q=extension(IB,IC,B,C); GP=extension(A,2*foot(G,A,I)-G,B,C); draw(A--B--C--A); draw(c); draw(A--J--G--D); draw(C--GP); draw(circumcircle(A,E,J),dashed); dot("$A$",A,dir(A-circumcenter(A,B,C))); dot("$B$",B,dir(B-circumcenter(A,B,C))); dot("$C$",C,dir(dir(90)*dir(circumcenter(A,B,C)-C)+dir(C-B))); dot("$D$",D,dir(dir(90)*dir(circumcenter(D,I,IA)-D)+dir(90)*dir(D-circumcenter(D,IB,IC)))); dot("$E'$",E,dir(dir(J-G)+dir(B-C))); dot("$G$",G,dir(dir(90)*dir(G-circumcenter(D,I,IA))+dir(90)*dir(circumcenter(A,B,C)-G))); dot("$I$",I,dir(dir(90)*dir(circumcenter(D,I,IA)-I)+dir(A-I))); dot("$J$",J,dir(J-circumcenter(A,B,C))); dot("$P$",P,dir(dir(A-I)+dir(C-B))); dot("$G'$",GP,dir(GP-B)); // Block 3 size(500); pair A,B,C,D,E,F,G,H,I,J,K,IA,IB,IC,P,Q,GP,BP,CP,DP; B=(0,0); C=(8,0); A=intersectionpoint(Circle(B,6),Circle(C,9)); I=incenter(A,B,C); path c=circumcircle(A,B,C); J=intersectionpoint(I--(4*I-3*A),c); IA=2*J-I; IB=2*intersectionpoint(I--(4*I-3*B),c)-I; IC=2*intersectionpoint(I--(4*I-3*C),c)-I; K=intersectionpoint(IB--IC,c); D=intersectionpoint(I--(I+(10,-12)),c); path c1=circumcircle(D,I,IA),c2=circumcircle(D,IB,IC); F=intersectionpoints(c1,c2)[1]; E=extension(B,C,D,F); G=intersectionpoint(c1,c); H=intersectionpoint(c2,c); P=extension(A,I,B,C); Q=extension(IB,IC,B,C); BP=2*foot(B,IB,IC)-B; CP=2*foot(C,IB,IC)-C; DP=2*foot(D,IB,IC)-D; draw(A--B--C--A); draw(E--DP); draw(BP--A--CP); draw(IB--IC); draw(c); draw(circumcircle(B,IB,IC)); draw(circumcircle(E,IB,IC)); dot("$A$",A,2*dir(dir(IB-A)+dir(C-A))); dot("$B$",B,dir(B-circumcenter(A,B,C))); dot("$C$",C,dir(dir(90)*dir(circumcenter(A,B,C)-C)+dir(C-B))); dot("$D$",D,dir(dir(90)*dir(circumcenter(D,I,IA)-D)+dir(90)*dir(D-circumcenter(D,IB,IC)))); dot("$E'$",E,dir(B-C)*dir(90)); dot("$I_B$",IB,dir(dir(IB-IC)+dir(IB-IA))); dot("$I_C$",IC,dir(dir(90)*dir(circumcenter(D,IB,IC)-IC)+dir(IC-IB))); dot("$B'$",BP,dir(BP-circumcenter(B,IB,IC))); dot("$C'$",CP,dir(CP-circumcenter(B,IB,IC))); dot("$D'$",DP,dir(DP-E)); // Block 4 size(500); pair A,B,C,D,E,F,G,H,I,J,K,IA,IB,IC,P,Q,JP,KP; B=(0,0); C=(8,0); A=intersectionpoint(Circle(B,6),Circle(C,9)); I=incenter(A,B,C); path c=circumcircle(A,B,C); J=intersectionpoint(I--(4*I-3*A),c); IA=2*J-I; IB=2*intersectionpoint(I--(4*I-3*B),c)-I; IC=2*intersectionpoint(I--(4*I-3*C),c)-I; K=intersectionpoint(IB--IC,c); D=intersectionpoint(I--(I+(10,-12)),c); path c1=circumcircle(D,I,IA),c2=circumcircle(D,IB,IC); F=intersectionpoints(c1,c2)[1]; E=extension(B,C,D,F); G=intersectionpoint(c1,c); H=intersectionpoint(c2,c); P=extension(A,I,B,C); Q=extension(IB,IC,B,C); JP=2*J-E; KP=2*K-E; draw(A--B--C--A); draw(c); draw(A--J); draw(circumcircle(D,I,IA)); draw(circumcircle(D,IB,IC)); draw(D--F,dashed); draw(B--Q--IB); draw(G--JP); draw(H--KP); dot("$A$",A,dir(A-circumcenter(A,B,C))); dot("$B$",B,1/2*dir(B-dir(circumcenter(A,B,C))*dir(90)+dir(B-C))); dot("$C$",C,dir(C-circumcenter(A,B,C))*dir(15)); dot("$D$",D,dir(dir(90)*dir(circumcenter(D,I,IA)-D)+dir(90)*dir(D-circumcenter(D,IB,IC)))); dot("$E'$",E,dir(dir(H-K)+dir(B-C))); dot("$F$",F,dir(dir(90)*dir(F-circumcenter(D,I,IA))+dir(90)*dir(circumcenter(D,IB,IC)-F))); dot("$G$",G,dir(dir(90)*dir(G-circumcenter(D,I,IA))+dir(90)*dir(circumcenter(A,B,C)-G))); dot("$H$",H,dir(dir(90)*dir(circumcenter(D,IB,IC)-H)+dir(90)*dir(H-circumcenter(A,B,C)))); dot("$I$",I,dir(dir(90)*dir(circumcenter(D,I,IA)-I)+dir(A-I))); dot("$J$",J,dir(dir(circumcenter(A,B,C)-J)*dir(90)+dir(J-G))); dot("$K$",K,dir(dir(K-circumcenter(A,B,C))*dir(90)+dir(K-H))); dot("$I_A$",IA,dir(IA-circumcenter(D,I,IA))); dot("$I_B$",IB,dir(dir(IB-IC)+dir(IB-IA))); dot("$I_C$",IC,dir(dir(90)*dir(circumcenter(D,IB,IC)-IC)+dir(IC-IB))); dot("$P$",P,dir(dir(A-I)+dir(C-B))); dot("$Q$",Q,dir(dir(IC-IB)+dir(B-C))); dot("$J'$",JP,dir(JP-circumcenter(D,I,IA))); dot("$K'$",KP,dir(KP-circumcenter(D,IB,IC))); // Block 5 size(500); pair A,B,C,D,E,F,G,H,I,J,K,IA,IB,IC,P,Q; B=(0,0); C=(8,0); A=intersectionpoint(Circle(B,6),Circle(C,9)); I=incenter(A,B,C); path c=circumcircle(A,B,C); J=intersectionpoint(I--(4*I-3*A),c); IA=2*J-I; IB=2*intersectionpoint(I--(4*I-3*B),c)-I; IC=2*intersectionpoint(I--(4*I-3*C),c)-I; K=intersectionpoint(IB--IC,c); D=intersectionpoint(I--(I+(10,-12)),c); path c1=circumcircle(D,I,IA),c2=circumcircle(D,IB,IC); F=intersectionpoints(c1,c2)[1]; E=extension(B,C,D,F); G=intersectionpoint(c1,c); H=intersectionpoint(c2,c); P=extension(A,I,B,C); Q=extension(IB,IC,B,C); draw(A--B--C--A); draw(c); draw(A--J); draw(circumcircle(D,I,IA)); draw(circumcircle(D,IB,IC)); draw(D--F); draw(B--Q--IB); draw(G--J,dashed); draw(H--K,dashed); dot("$A$",A,dir(A-circumcenter(A,B,C))); dot("$B$",B,1/2*dir(B-dir(circumcenter(A,B,C))*dir(90)+dir(B-C))); dot("$C$",C,dir(C-circumcenter(A,B,C))*dir(15)); dot("$D$",D,dir(dir(90)*dir(circumcenter(D,I,IA)-D)+dir(90)*dir(D-circumcenter(D,IB,IC)))); dot("$E$",E,dir(dir(H-K)+dir(B-C))); dot("$F$",F,dir(dir(90)*dir(F-circumcenter(D,I,IA))+dir(90)*dir(circumcenter(D,IB,IC)-F))); dot("$G$",G,dir(dir(90)*dir(G-circumcenter(D,I,IA))+dir(90)*dir(circumcenter(A,B,C)-G))); dot("$H$",H,dir(dir(90)*dir(circumcenter(D,IB,IC)-H)+dir(90)*dir(H-circumcenter(A,B,C)))); dot("$I$",I,dir(dir(90)*dir(circumcenter(D,I,IA)-I)+dir(A-I))); dot("$J$",J,dir(J-circumcenter(A,B,C))); dot("$K$",K,dir(K-circumcenter(A,B,C))); dot("$I_A$",IA,dir(IA-circumcenter(D,I,IA))); dot("$I_B$",IB,dir(dir(IB-IC)+dir(IB-IA))); dot("$I_C$",IC,dir(dir(90)*dir(circumcenter(D,IB,IC)-IC)+dir(IC-IB))); dot("$P$",P,dir(dir(A-I)+dir(C-B))); dot("$Q$",Q,dir(dir(IC-IB)+dir(B-C))); // Block 6 size(500); pair A,B,C,D,E,F,G,H,I,J,K,IA,IB,IC,P,Q,GP; B=(0,0); C=(8,0); A=intersectionpoint(Circle(B,6),Circle(C,9)); I=incenter(A,B,C); path c=circumcircle(A,B,C); J=intersectionpoint(I--(4*I-3*A),c); IA=2*J-I; IB=2*intersectionpoint(I--(4*I-3*B),c)-I; IC=2*intersectionpoint(I--(4*I-3*C),c)-I; K=intersectionpoint(IB--IC,c); D=intersectionpoint(I--(I+(10,-12)),c); path c1=circumcircle(D,I,IA),c2=circumcircle(D,IB,IC); F=intersectionpoints(c1,c2)[1]; E=extension(B,C,D,F); G=intersectionpoint(c1,c); H=intersectionpoint(c2,c); P=extension(A,I,B,C); Q=extension(IB,IC,B,C); GP=extension(A,2*foot(G,A,I)-G,B,C); draw(A--B--C--A); draw(c); draw(A--J--G--D); draw(C--GP); draw(circumcircle(A,E,J),dashed); dot("$A$",A,dir(A-circumcenter(A,B,C))); dot("$B$",B,dir(B-circumcenter(A,B,C))); dot("$C$",C,dir(dir(90)*dir(circumcenter(A,B,C)-C)+dir(C-B))); dot("$D$",D,dir(dir(90)*dir(circumcenter(D,I,IA)-D)+dir(90)*dir(D-circumcenter(D,IB,IC)))); dot("$E'$",E,dir(dir(J-G)+dir(B-C))); dot("$G$",G,dir(dir(90)*dir(G-circumcenter(D,I,IA))+dir(90)*dir(circumcenter(A,B,C)-G))); dot("$I$",I,dir(dir(90)*dir(circumcenter(D,I,IA)-I)+dir(A-I))); dot("$J$",J,dir(J-circumcenter(A,B,C))); dot("$P$",P,dir(dir(A-I)+dir(C-B))); dot("$G'$",GP,dir(GP-B)); // Block 7 size(500); pair A,B,C,D,E,F,G,H,I,J,K,IA,IB,IC,P,Q,GP,BP,CP,DP; B=(0,0); C=(8,0); A=intersectionpoint(Circle(B,6),Circle(C,9)); I=incenter(A,B,C); path c=circumcircle(A,B,C); J=intersectionpoint(I--(4*I-3*A),c); IA=2*J-I; IB=2*intersectionpoint(I--(4*I-3*B),c)-I; IC=2*intersectionpoint(I--(4*I-3*C),c)-I; K=intersectionpoint(IB--IC,c); D=intersectionpoint(I--(I+(10,-12)),c); path c1=circumcircle(D,I,IA),c2=circumcircle(D,IB,IC); F=intersectionpoints(c1,c2)[1]; E=extension(B,C,D,F); G=intersectionpoint(c1,c); H=intersectionpoint(c2,c); P=extension(A,I,B,C); Q=extension(IB,IC,B,C); BP=2*foot(B,IB,IC)-B; CP=2*foot(C,IB,IC)-C; DP=2*foot(D,IB,IC)-D; draw(A--B--C--A); draw(E--DP); draw(BP--A--CP); draw(IB--IC); draw(c); draw(circumcircle(B,IB,IC)); draw(circumcircle(E,IB,IC)); dot("$A$",A,2*dir(dir(IB-A)+dir(C-A))); dot("$B$",B,dir(B-circumcenter(A,B,C))); dot("$C$",C,dir(dir(90)*dir(circumcenter(A,B,C)-C)+dir(C-B))); dot("$D$",D,dir(dir(90)*dir(circumcenter(D,I,IA)-D)+dir(90)*dir(D-circumcenter(D,IB,IC)))); dot("$E'$",E,dir(B-C)*dir(90)); dot("$I_B$",IB,dir(dir(IB-IC)+dir(IB-IA))); dot("$I_C$",IC,dir(dir(90)*dir(circumcenter(D,IB,IC)-IC)+dir(IC-IB))); dot("$B'$",BP,dir(BP-circumcenter(B,IB,IC))); dot("$C'$",CP,dir(CP-circumcenter(B,IB,IC))); dot("$D'$",DP,dir(DP-E)); // Block 8 size(500); pair A,B,C,D,E,F,G,H,I,J,K,IA,IB,IC,P,Q,JP,KP; B=(0,0); C=(8,0); A=intersectionpoint(Circle(B,6),Circle(C,9)); I=incenter(A,B,C); path c=circumcircle(A,B,C); J=intersectionpoint(I--(4*I-3*A),c); IA=2*J-I; IB=2*intersectionpoint(I--(4*I-3*B),c)-I; IC=2*intersectionpoint(I--(4*I-3*C),c)-I; K=intersectionpoint(IB--IC,c); D=intersectionpoint(I--(I+(10,-12)),c); path c1=circumcircle(D,I,IA),c2=circumcircle(D,IB,IC); F=intersectionpoints(c1,c2)[1]; E=extension(B,C,D,F); G=intersectionpoint(c1,c); H=intersectionpoint(c2,c); P=extension(A,I,B,C); Q=extension(IB,IC,B,C); JP=2*J-E; KP=2*K-E; draw(A--B--C--A); draw(c); draw(A--J); draw(circumcircle(D,I,IA)); draw(circumcircle(D,IB,IC)); draw(D--F,dashed); draw(B--Q--IB); draw(G--JP); draw(H--KP); dot("$A$",A,dir(A-circumcenter(A,B,C))); dot("$B$",B,1/2*dir(B-dir(circumcenter(A,B,C))*dir(90)+dir(B-C))); dot("$C$",C,dir(C-circumcenter(A,B,C))*dir(15)); dot("$D$",D,dir(dir(90)*dir(circumcenter(D,I,IA)-D)+dir(90)*dir(D-circumcenter(D,IB,IC)))); dot("$E'$",E,dir(dir(H-K)+dir(B-C))); dot("$F$",F,dir(dir(90)*dir(F-circumcenter(D,I,IA))+dir(90)*dir(circumcenter(D,IB,IC)-F))); dot("$G$",G,dir(dir(90)*dir(G-circumcenter(D,I,IA))+dir(90)*dir(circumcenter(A,B,C)-G))); dot("$H$",H,dir(dir(90)*dir(circumcenter(D,IB,IC)-H)+dir(90)*dir(H-circumcenter(A,B,C)))); dot("$I$",I,dir(dir(90)*dir(circumcenter(D,I,IA)-I)+dir(A-I))); dot("$J$",J,dir(dir(circumcenter(A,B,C)-J)*dir(90)+dir(J-G))); dot("$K$",K,dir(dir(K-circumcenter(A,B,C))*dir(90)+dir(K-H))); dot("$I_A$",IA,dir(IA-circumcenter(D,I,IA))); dot("$I_B$",IB,dir(dir(IB-IC)+dir(IB-IA))); dot("$I_C$",IC,dir(dir(90)*dir(circumcenter(D,IB,IC)-IC)+dir(IC-IB))); dot("$P$",P,dir(dir(A-I)+dir(C-B))); dot("$Q$",Q,dir(dir(IC-IB)+dir(B-C))); dot("$J'$",JP,dir(JP-circumcenter(D,I,IA))); dot("$K'$",KP,dir(KP-circumcenter(D,IB,IC)));
[]
49
Alice the architect and Bob the builder play a game. First, Alice chooses two points $P$ and $Q$ in the plane and a subset $\mathcal{S}$ of the plane, which are announced to Bob. Next, Bob marks infinitely many points in the plane, designating each a city. He may not place two cities within distance at most one unit of each other, and no three cities he places may be collinear. Finally, roads are constructed between the cities as follows: for each pair $A,\,B$ of cities, they are connected with a road along the line segment $AB$ if and only if the following condition holds: For every city $C$ distinct from $A$ and $B$, there exists $R\in\mathcal{S}$ such that $\triangle PQR$ is directly similar to either $\triangle ABC$ or $\triangle BAC$. Alice wins the game if (i) the resulting roads allow for travel between any pair of cities via a finite sequence of roads and (ii) no two roads cross. Otherwise, Bob wins. Determine, with proof, which player has a winning strategy. Note: $\triangle UVW$ is directly similar to $\triangle XYZ$ if there exists a sequence of rotations, translations, and dilations sending $U$ to $X$, $V$ to $Y$, and $W$ to $Z$.
2025 USAMO Problem 3
Alice has a winning strategy: Choose $\mathcal S$ to be the set of of points strictly outside the disk with diameter $PQ$. Then two cities $A$ and $B$ have a road between them if and only if every other city is outside the closed disk with diameter $AB$. Note that this condition is equivalent to the angle $\angle ACB$ being acute for every other city $C$. We need to prove that no matter how Bob chooses cities, No roads cross, and All cities are connected. We first prove (1). Suppose for the sake of contradiction that there are roads between $A$ and $C$ and between $B$ and $D$, and that these roads cross. Then $ABCD$ is a convex quadrilateral, because its diagonals intersect. Now, recall our condition for the existence of roads between $A$ and $C$ and between $B$ and $D$: We must have that the angles $\angle ABC$, $\angle BCD$, $\angle CDA$, and $\angle DAB$ are all acute. Because $ABCD$ is a convex quadrilateral, these angles are the interior angles. Then the sum of the interior angles of $ABCD$ is less than $360^\circ$, a contradiction with the fact that the sum of the interior angles of a quadrilateral is always $360^\circ$. $\rightarrow \leftarrow$ We next prove (2). We use induction on the Euclidean distance between cities. Our base case is that two cities are less than $1$ away from each other. If this is the case, then they are the same city, and so the empty path connects them. Now, suppose for the sake of induction that any two cities less than $\sqrt n$ away from each other have a finite path between them. We will show the same is true for $\sqrt{n + 1}$. Consider any two distinct cities $A$ and $B$ less than $\sqrt{n + 1}$ away from each other. If there is a road between them, we are done. Otherwise, there must be some third city $C$ for which $\angle ACB \geq 90^\circ$. By the Law of Cosines, we get that \[\overline{AB}^2 \geq \overline{AC}^2 + \overline{CB}^2.\] Because no two cities are closer than $1$ away from each other, both $\overline{AC}$ and $\overline{CB}$ are at least $1$. So, \[\overline{AC}^2 \leq \overline{AB}^2 - \overline{CB}^2 < (n + 1) - 1 = n.\] Hence, by the inductive hypothesis, there is a finite path from $A$ to $C$. Likewise, there is a finite path from $C$ to $B$. Joining these paths together, we get a finite path from $A$ to $B$, as desired. Hence, any two cities, no matter their distance apart, have a finite path connecting them. $\square$ Note: The graph of roads constructed by Alice's choice of $\mathcal S$ is called the Gabriel graph.
// Block 1 import markers; size(12cm); pair A = (-1,0); pair B = (1,0); pair O = (0,0); // Point C in the upper-left of the disk pair C = dir(120) * 0.8; draw(circle(O,1)); draw(A--B, dashed); draw(A--C); draw(C--B); label("less than $\sqrt{n+1}$", A--B, S); markangle(radius=10, A, C, B); dot(A); dot(B); dot(C); label("$A$", A, W); label("$B$", B, E); label("$C$", C, N); // Block 2 import markers; size(12cm); pair A = (-1,0); pair B = (1,0); pair O = (0,0); // Point C in the upper-left of the disk pair C = dir(120) * 0.8; draw(circle(O,1)); draw(A--B, dashed); draw(A--C); draw(C--B); label("less than $\sqrt{n+1}$", A--B, S); markangle(radius=10, A, C, B); dot(A); dot(B); dot(C); label("$A$", A, W); label("$B$", B, E); label("$C$", C, N);
[]
50
A machine-shop cutting tool has the shape of a notched circle, as shown. The radius of the circle is $\sqrt{50}$ cm, the length of $AB$ is $6$ cm and that of $BC$ is $2$ cm. The angle $ABC$ is a right angle. Find the square of the distance (in centimeters) from $B$ to the center of the circle.
1983 AIME Problem 4
Because we are given a right angle, we look for ways to apply the Pythagorean Theorem. Let the foot of the perpendicular from $O$ to $AB$ be $D$ and let the foot of the perpendicular from $O$ to the line $BC$ be $E$. Let $OE=x$ and $OD=y$. We're trying to find $x^2+y^2$. Applying the Pythagorean Theorem, $OA^2 = OD^2 + AD^2$ and $OC^2 = EC^2 + EO^2$. Thus, $\left(\sqrt{50}\right)^2 = y^2 + (6-x)^2$, and $\left(\sqrt{50}\right)^2 = x^2 + (y+2)^2$. We solve this system to get $x = 1$ and $y = 5$, such that the answer is $1^2 + 5^2 = \boxed{026}$.
// Block 1 size(150); defaultpen(linewidth(0.6)+fontsize(11)); real r=10; pair O=(0,0),A=r*dir(45),B=(A.x,A.y-r); pair D=(A.x,0),F=(0,B.y); path P=circle(O,r); pair C=intersectionpoint(B--(B.x+r,B.y),P); draw(P); draw(C--B--O--A--B); draw(D--O--F--B,dashed); dot(O); dot(A); dot(B); dot(C); label("$O$",O,SW); label("$A$",A,NE); label("$B$",B,S); label("$C$",C,SE); label("$D$",D,NE); label("$E$",F,SW); // Block 2 size(150); defaultpen(linewidth(0.6)+fontsize(11)); real r=10; pair O=(0,0),A=r*dir(45),B=(A.x,A.y-r); pair D=(A.x,0),F=(0,B.y); path P=circle(O,r); pair C=intersectionpoint(B--(B.x+r,B.y),P); draw(P); draw(C--B--O--A--B); draw(D--O--F--B,dashed); dot(O); dot(A); dot(B); dot(C); label("$O$",O,SW); label("$A$",A,NE); label("$B$",B,S); label("$C$",C,SE); label("$D$",D,NE); label("$E$",F,SW);
[]
50
A machine-shop cutting tool has the shape of a notched circle, as shown. The radius of the circle is $\sqrt{50}$ cm, the length of $AB$ is $6$ cm and that of $BC$ is $2$ cm. The angle $ABC$ is a right angle. Find the square of the distance (in centimeters) from $B$ to the center of the circle.
1983 AIME Problem 4
We'll use the law of cosines. Let $O$ be the center of the circle; we wish to find $OB$. We know how long $OA$ and $AB$ are, so if we can find $\cos \angle OAB$, we'll be in good shape. We can find $\cos \angle OAB$ using angles $OAC$ and $BAC$. First we note that by Pythagoras, \[AC = \sqrt{AB^2 + BC^2} = \sqrt{36 + 4} = \sqrt{40} = 2 \sqrt{10}.\] If we let $M$ be the midpoint of $AC$, that mean that $AM = \sqrt{10}$. Since $\triangle OAC$ is isosceles ($OA = OC$ from the definition of a circle), $M$ is also the foot of the altitude from $O$ to $AC.$ It follows that $OM = \sqrt{40} = 2 \sqrt{10}$. Therefore \begin{align*} \cos \angle OAC = \frac{\sqrt{10}}{\sqrt{50}} &= \frac{1}{\sqrt{5}}, \\ \sin \angle OAC = \frac{2 \sqrt{10}}{\sqrt{50}} &= \frac{2}{\sqrt{5}}. \end{align*} Meanwhile, from right triangle $ABC,$ we have \begin{align*} \cos \angle BAC = \frac{6}{\sqrt{40}} &= \frac{3}{\sqrt{10}}, \\ \sin \angle BAC = \frac{2}{\sqrt{40}} &= \frac{1}{\sqrt{10}}. \end{align*} This means that by the angle subtraction formulas, \begin{align*} \cos \angle OAB &= \cos (\angle OAC - \angle BAC) \\ &= \cos \angle OAC \cos \angle BAC + \sin \angle OAC \sin \angle BAC \\ &= \frac{1}{\sqrt{5}} \cdot \frac{3}{\sqrt{10}} + \frac{2}{\sqrt{5}} \cdot \frac{1}{\sqrt{10}} \\ &= \frac{5}{5 \sqrt{2}} = \frac{1}{\sqrt{2}}. \end{align*} Now we have all we need to use the law of cosines on $\triangle OAB.$ This tells us that \begin{align*} OB^2 &= AO^2 + AB^2 - 2 AO \cdot AB \cdot \cos \angle OAB \\ &= 50 + 36 - 2 \cdot 5 \sqrt{2} \cdot 6 \cdot \frac{1}{\sqrt{2}} \\ &= 86 - 2 \cdot 5 \cdot 6 \\ &= 26. \end{align*}
// Block 1 size(150); defaultpen(linewidth(0.6)+fontsize(11)); real r=10; pair O=(0,0),A=r*dir(45),B=(A.x,A.y-r); pair D=(A.x,0),F=(0,B.y); path P=circle(O,r); pair C=intersectionpoint(B--(B.x+r,B.y),P); draw(P); draw(C--B--O--A--B); draw(O--B); draw(A--C); dot(O); dot(A); dot(B); dot(C); label("$O$",O,SW); label("$A$",A,NE); label("$B$",B,S); label("$C$",C,SE); // Block 2 size(150); defaultpen(linewidth(0.6)+fontsize(11)); real r=10; pair O=(0,0),A=r*dir(45),B=(A.x,A.y-r); pair D=(A.x,0); path P=circle(O,r); pair C=intersectionpoint(B--(B.x+r,B.y),P); pair M = (A+C)/2; draw(P); draw(O--C--A--cycle); draw(O--M, dashed); draw(rightanglemark(O,M,A,25)); dot(O); dot(A); dot(C); label("$O$",O,SW); label("$A$",A,NE); label("$M$",M,SSW); label("$C$",C,SE); label("$\sqrt{50}$", (O+A)/2, NW); label("$\sqrt{10}$", (A+M)/2, E); // Block 3 size(150); defaultpen(linewidth(0.6)+fontsize(11)); real r=10; pair O=(0,0),A=r*dir(45),B=(A.x,A.y-r); pair D=(A.x,0),F=(0,B.y); path P=circle(O,r); pair C=intersectionpoint(B--(B.x+r,B.y),P); draw(P); draw(C--B--O--A--B); draw(O--B); draw(A--C); dot(O); dot(A); dot(B); dot(C); label("$O$",O,SW); label("$A$",A,NE); label("$B$",B,S); label("$C$",C,SE); // Block 4 size(150); defaultpen(linewidth(0.6)+fontsize(11)); real r=10; pair O=(0,0),A=r*dir(45),B=(A.x,A.y-r); pair D=(A.x,0); path P=circle(O,r); pair C=intersectionpoint(B--(B.x+r,B.y),P); pair M = (A+C)/2; draw(P); draw(O--C--A--cycle); draw(O--M, dashed); draw(rightanglemark(O,M,A,25)); dot(O); dot(A); dot(C); label("$O$",O,SW); label("$A$",A,NE); label("$M$",M,SSW); label("$C$",C,SE); label("$\sqrt{50}$", (O+A)/2, NW); label("$\sqrt{10}$", (A+M)/2, E);
[]
50
A machine-shop cutting tool has the shape of a notched circle, as shown. The radius of the circle is $\sqrt{50}$ cm, the length of $AB$ is $6$ cm and that of $BC$ is $2$ cm. The angle $ABC$ is a right angle. Find the square of the distance (in centimeters) from $B$ to the center of the circle.
1983 AIME Problem 4
Mark the midpoint $M$ of $AC$. Then, drop perpendiculars from $O$ to $AB$ (with foot $T_1$), $M$ to $OT_1$ (with foot $T_2$), and $M$ to $AB$ (with foot $T_3$). First notice that by computation, $OAC$ is a $\sqrt {50} - \sqrt {40} - \sqrt {50}$ isosceles triangle, so $AC = MO$. Then, notice that $\angle MOT_2 = \angle T_3MO = \angle BAC$. Therefore, the two blue triangles are congruent, from which we deduce $MT_2 = 2$ and $OT_2 = 6$. As $T_3B = 3$ and $MT_3 = 1$, we subtract and get $OT_1 = 5,T_1B = 1$. Then the Pythagorean Theorem tells us that $OB^2 = \boxed{026}$.
// Block 1 size(200); pair dl(string name, pair loc, pair offset) { dot(loc); label(name,loc,offset); return loc; }; pair a[] = {(0,0),(0,5),(1,5),(1,7),(-2,6),(-5,5),(-2,5),(-2,6),(0,6)}; string n[] = {"O","$T_1$","B","C","M","A","$T_3$","M","$T_2$"}; for(int i=0;i<a.length;++i) { dl(n[i],a[i],dir(degrees(a[i],false) ) ); draw(a[(i-1)%a.length]--a[i]); }; dot(a); draw(a[5]--a[1]); draw(a[0]--a[3]); draw(a[0]--a[4]); draw(a[0]--a[2]); draw(a[0]--a[5]); draw(a[5]--a[2]--a[3]--cycle,blue+linewidth(0.7)); draw(a[0]--a[8]--a[7]--cycle,blue+linewidth(0.7)); // Block 2 size(200); pair dl(string name, pair loc, pair offset) { dot(loc); label(name,loc,offset); return loc; }; pair a[] = {(0,0),(0,5),(1,5),(1,7),(-2,6),(-5,5),(-2,5),(-2,6),(0,6)}; string n[] = {"O","$T_1$","B","C","M","A","$T_3$","M","$T_2$"}; for(int i=0;i<a.length;++i) { dl(n[i],a[i],dir(degrees(a[i],false) ) ); draw(a[(i-1)%a.length]--a[i]); }; dot(a); draw(a[5]--a[1]); draw(a[0]--a[3]); draw(a[0]--a[4]); draw(a[0]--a[2]); draw(a[0]--a[5]); draw(a[5]--a[2]--a[3]--cycle,blue+linewidth(0.7)); draw(a[0]--a[8]--a[7]--cycle,blue+linewidth(0.7));
[]
50
A machine-shop cutting tool has the shape of a notched circle, as shown. The radius of the circle is $\sqrt{50}$ cm, the length of $AB$ is $6$ cm and that of $BC$ is $2$ cm. The angle $ABC$ is a right angle. Find the square of the distance (in centimeters) from $B$ to the center of the circle.
1983 AIME Problem 4
I will use the law of cosines in triangle $\triangle OAC$ and $\triangle OBC$. $AC = \sqrt{AB^2 + BC^2} = \sqrt{6^2 + 2^2} = 2 \sqrt{10}$ $\cos \angle ACB = \frac{2}{2\sqrt{10}} = \frac{1}{\sqrt{10}}$ $\cos \angle ACO = \frac{AC^2+OC^2-OA^2}{2 \cdot AC \cdot OC} = \frac{(2\sqrt{10})^2+(\sqrt{50})^2-(\sqrt{50})^2}{2 \cdot 2\sqrt{10} \cdot \sqrt{50}} = \frac{1}{\sqrt{5}}$ $\sin \angle ACB = \sqrt{1-\cos^2 \angle ACB} = \sqrt{1-(\frac{1}{\sqrt{10}})^2} = \frac{3}{\sqrt{10}}$ $\sin \angle ACO = \sqrt{1-\cos^2 \angle ACO} = \sqrt{1-(\frac{1}{\sqrt{5}})^2} = \frac{2}{\sqrt{5}}$ $\cos \angle OCB = \cos (\angle ACB - \angle ACO) = \cos \angle ACB \cdot \cos \angle ACO + \sin \angle ACB \cdot \sin \angle ACO = \frac{1}{\sqrt{10}} \cdot \frac{1}{\sqrt{5}} + \frac{3}{\sqrt{10}} \cdot \frac{2}{\sqrt{5}} = \frac{7}{5\sqrt{2}}$ $OB^2 = OC^2 + BC^2 - 2 \cdot OC \cdot BC \cdot \cos \angle OCB = (\sqrt{50})^2 + 2^2 - 2 \cdot \sqrt{50} \cdot 2 \cdot \frac{7}{5\sqrt{2}} = 50 + 4 - 28 = \boxed{026}$ ~isabelchen
// Block 1 size(150); defaultpen(linewidth(0.6)+fontsize(11)); real r=10; pair O=(0,0),A=r*dir(45),B=(A.x,A.y-r); pair D=(A.x,0),F=(0,B.y); path P=circle(O,r); pair C=intersectionpoint(B--(B.x+r,B.y),P); draw(P); draw(C--B--O--A--B); draw(O--B); draw(A--C); draw(O--C); dot(O); dot(A); dot(B); dot(C); label("$O$",O,SW); label("$A$",A,NE); label("$B$",B,S); label("$C$",C,SE); // Block 2 size(150); defaultpen(linewidth(0.6)+fontsize(11)); real r=10; pair O=(0,0),A=r*dir(45),B=(A.x,A.y-r); pair D=(A.x,0),F=(0,B.y); path P=circle(O,r); pair C=intersectionpoint(B--(B.x+r,B.y),P); draw(P); draw(C--B--O--A--B); draw(O--B); draw(A--C); draw(O--C); dot(O); dot(A); dot(B); dot(C); label("$O$",O,SW); label("$A$",A,NE); label("$B$",B,S); label("$C$",C,SE);
[]
51
The solid shown has a square base of side length $s$. The upper edge is parallel to the base and has length $2s$. All other edges have length $s$. Given that $s=6\sqrt{2}$, what is the volume of the solid?
1983 AIME Problem 11
Solution 1 First, we find the height of the solid by dropping a perpendicular from the midpoint of $AD$ to $EF$. The hypotenuse of the triangle formed is the median of equilateral triangle $ADE$, and one of the legs is $3\sqrt{2}$. We apply the Pythagorean Theorem to deduce that the height is $6$. Next, we complete the figure into a triangular prism, and find its volume, which is $\frac{6\sqrt{2}\cdot 12\sqrt{2}\cdot 6}{2}=432$. Now, we subtract off the two extra pyramids that we included, whose combined volume is $2\cdot \left( \frac{6\sqrt{2}\cdot 3\sqrt{2} \cdot 6}{3} \right)=144$. Thus, our answer is $432-144=\boxed{288}$. Solution 2 Extend $EA$ and $FB$ to meet at $G$, and $ED$ and $FC$ to meet at $H$. Now, we have a regular tetrahedron $EFGH$, which by symmetry has twice the volume of our original solid. This tetrahedron has side length $2s = 12\sqrt{2}$. Using the formula for the volume of a regular tetrahedron, which is $V = \frac{\sqrt{2}S^3}{12}$, where S is the side length of the tetrahedron, the volume of our original solid is: $V = \frac{1}{2} \cdot \frac{\sqrt{2} \cdot (12\sqrt{2})^3}{12} = \boxed{288}$. Solution 3 We can also find the volume by considering horizontal cross-sections of the solid and using calculus. As in Solution 1, we can find that the height of the solid is $6$; thus, we will integrate with respect to height from $0$ to $6$, noting that each cross section of height $dh$ is a rectangle. The volume is then $\int_0^h(wl) \ \text{d}h$, where $w$ is the width of the rectangle and $l$ is the length. We can express $w$ in terms of $h$ as $w=6\sqrt{2}-\sqrt{2}h$ since it decreases linearly with respect to $h$, and $l=6\sqrt{2}+\sqrt{2}h$ since it similarly increases linearly with respect to $h$. Now we solve:\[\int_0^6(6\sqrt{2}-\sqrt{2}h)(6\sqrt{2}+\sqrt{2}h)\ \text{d}h =\int_0^6(72-2h^2)\ \text{d}h=72(6)-2\left(\frac{1}{3}\right)\left(6^3\right)=\boxed{288}\]. Solution 4 Draw an altitude from a vertex of the square base to the top edge. By using $30,60, 90$ triangle ratios, we obtain that the altitude has a length of $3 \sqrt{6}$, and that little portion that hangs out has a length of $3\sqrt2$. This is a triangular pyramid with a base of $3\sqrt6, 3\sqrt6, 3\sqrt2$, and a height of $3\sqrt{2}$. Since there are two of these, we can compute the sum of the volumes of these two to be $72$. Now we are left with a triangular prism with a base of dimensions $3\sqrt6, 3\sqrt6, 3\sqrt2$ and a height of $6\sqrt2$. We can compute the volume of this to be 216, and thus our answer is $\boxed{288}$. pi_is_3.141 Solution 5 From solution 1, the height of the solid is $6$. Construct a triangular prism with base ABCD, and with the height of the solid. The volume of this triangular prism is $( 6\sqrt{2} )^2 \cdot 6 \cdot 1/2 = 216$ Notice that the solid is symetrical, and if you remove the triangular prism described earlier and combine the two halves on each side of it, you will get a regular tetrahedron. This tetrahedron has sidelength of $6\sqrt{2}$ and since the formula for the volume of a regular tetrahedron is $\frac{s^3}{6\sqrt{2}}$ the volume of this tetrahedron is $72$. $216 + 72 = \boxed{288}$. ~skibidi solver
// Block 1 size(180); import three; pathpen = black+linewidth(0.65); pointpen = black; pen d = linewidth(0.65); pen l = linewidth(0.5); currentprojection = perspective(30,-20,10); real s = 6 * 2^.5; triple A=(0,0,0),B=(s,0,0),C=(s,s,0),D=(0,s,0),E=(-s/2,s/2,6),F=(3*s/2,s/2,6); triple Aa=(E.x,0,0),Ba=(F.x,0,0),Ca=(F.x,s,0),Da=(E.x,s,0); draw(A--B--C--D--A--E--D); draw(B--F--C); draw(E--F); draw(B--Ba--Ca--C,dashed+d); draw(A--Aa--Da--D,dashed+d); draw(E--(E.x,E.y,0),dashed+l); draw(F--(F.x,F.y,0),dashed+l); draw(Aa--E--Da,dashed+d); draw(Ba--F--Ca,dashed+d); label("A",A,S); label("B",B,S); label("C",C,S); label("D",D,NE); label("E",E,N); label("F",F,N); label("$12\sqrt{2}$",(E+F)/2,N); label("$6\sqrt{2}$",(A+B)/2,S); label("6",(3*s/2,s/2,3),ENE); // Block 2 size(180); import three; pathpen = black+linewidth(0.65); pointpen = black; currentprojection = perspective(30,-20,10); real s = 6 * 2^.5; triple A=(0,0,0),B=(s,0,0),C=(s,s,0),D=(0,s,0),E=(-s/2,s/2,6),F=(3*s/2,s/2,6),G=(s/2,-s/2,-6),H=(s/2,3*s/2,-6); draw(A--B--C--D--A--E--D); draw(B--F--C); draw(E--F); draw(A--G--B,dashed);draw(G--H,dashed);draw(C--H--D,dashed); label("A",A,(-1,-1,0)); label("B",B,( 2,-1,0)); label("C",C,( 1, 1,0)); label("D",D,(-1, 1,0)); label("E",E,(0,0,1)); label("F",F,(0,0,1)); label("G",G,(0,0,-1)); label("H",H,(0,0,-1));
[]
52
The adjoining figure shows two intersecting chords in a circle, with $B$ on minor arc $AD$. Suppose that the radius of the circle is $5$, that $BC=6$, and that $AD$ is bisected by $BC$. Suppose further that $AD$ is the only chord starting at $A$ which is bisected by $BC$. It follows that the sine of the central angle of minor arc $AB$ is a rational number. If this number is expressed as a fraction $\frac{m}{n}$ in lowest terms, what is the product $mn$?
1983 AIME Problem 15
Solution 1 As with some of the other solutions, we analyze this with a locus—but a different one. We'll consider: given a point $P$ and a line $\ell,$ what is the set of points $X$ such that the midpoint of $PX$ lies on line $\ell$? The answer to this question is: a line $m$ parallel to $\ell$, such that $m$ and $P$ are (1) on opposite sides of $\ell$. and (2) at the same distance from $\ell$. Applied to this problem, this means that $D$ is the only point that lies on both (1) the given circle, and (2) the line through $D$ parallel to $BC$. This means that $BC$ is parallel to the tangent to the given circle at $D$. If we take $O$ to be the center of the given circle, then this means that $OD$ is perpendicular to $BC$. Let $M$ be the midpoint of chord $BC,$ and let $N$ be the intersection of $OD$ with the line through $A$ parallel to $BC$. Since $BC = 6,$ we know that $BM = 3$; since $OB$ (a radius of the circle) is 5, we can conclude that $\triangle BMO$ is a 3-4-5 right triangle. Since $D$ and line $AN$ are equidistant from line $BC,$ we know that $MN = 1$, and thus $ON = 3$. This makes $\triangle ANO$ also a 3-4-5 right triangle. We're looking for $\sin \angle AOB$, and we can find that using the angle subtraction formula for sine. We have \begin{align*} \sin \angle AOB &= \sin(\angle AOM - \angle BOM) \\ &= \sin \angle AOM \cos \angle BOM - \cos \angle AOM \sin \angle BOM \\ &= \frac{4}{5} \cdot \frac{4}{5} - \frac{3}{5} \cdot \frac{3}{5} \\ &= \frac{16 - 9}{25} = \frac{7}{25}. \end{align*} This is in lowest terms, so our answer is $mn = 7 \cdot 25 = 175$. Solution 2 -Credit to Adamz for diagram- Let $A$ be any fixed point on circle $O$, and let $AD$ be a chord of circle $O$. The locus of midpoints $N$ of the chord $AD$ is a circle $P$, with diameter $AO$. Generally, the circle $P$ can intersect the chord $BC$ at two points, one point, or they may not have a point of intersection. By the problem condition, however, the circle $P$ is tangent to $BC$ at point $N$. Let $M$ be the midpoint of the chord $BC$. From right triangle $OMB$, we have $OM = \sqrt{OB^2 - BM^2} =4$. This gives $\tan \angle BOM = \frac{BM}{OM} = \frac 3 4$. Notice that the distance $OM$ equals $PN + PO \cos \angle AOM = r(1 + \cos \angle AOM)$, where $r$ is the radius of circle $P$. Hence \[\cos \angle AOM = \frac{OM}{r} - 1 = \frac{2OM}{R} - 1 = \frac 8 5 - 1 = \frac 3 5\] (where $R$ represents the radius, $5$, of the large circle given in the question). Therefore, since $\angle AOM$ is clearly acute, we see that \[\tan \angle AOM =\frac{\sqrt{1 - \cos^2 \angle AOM}}{\cos \angle AOM} = \frac{\sqrt{5^2 - 3^2}}{3} = \frac 4 3\] Next, notice that $\angle AOB = \angle AOM - \angle BOM$. We can therefore apply the subtraction formula for $\tan$ to obtain \[\tan \angle AOB =\frac{\tan \angle AOM - \tan \angle BOM}{1 + \tan \angle AOM \cdot \tan \angle BOM} =\frac{\frac 4 3 - \frac 3 4}{1 + \frac 4 3 \cdot \frac 3 4} = \frac{7}{24}\] It follows that $\sin \angle AOB =\frac{7}{\sqrt{7^2+24^2}} = \frac{7}{25}$, such that the answer is $7 \cdot 25=\boxed{175}$. Solution 3 This solution, while similar to Solution 2, is arguably more motivated and less contrived. Firstly, we note the statement in the problem that "$AD$ is the only chord starting at $A$ and bisected by $BC$" – what is its significance? What is the criterion for this statement to be true? We consider the locus of midpoints of the chords from $A$. It is well-known that this is the circle with diameter $AO$, where $O$ is the center of the circle. The proof is simple: every midpoint of a chord is a dilation of the endpoint with scale factor $\frac{1}{2}$ and center $A$. Thus, the locus is the result of the dilation with scale factor $\frac{1}{2}$ and centre $A$ of circle $O$. Let the center of this circle be $P$. Now, $AD$ is bisected by $BC$ if they cross at some point $N$ on the circle. Moreover, since $AD$ is the only chord, $BC$ must be tangent to the circle $P$. The rest of this problem is straightforward. Our goal is to find $\sin \angle AOB = \sin{\left(\angle AOM - \angle BOM\right)}$, where $M$ is the midpoint of $BC$. We have $BM=3$ and $OM=4$. Let $R$ be the projection of $A$ onto $OM$, and similarly let $Q$ be the projection of $P$ onto $OM$. Then it remains to find $AR$ so that we can use the addition formula for $\sin$. As $PN$ is a radius of circle $P$, $PN=2.5$, and similarly, $PO=2.5$. Since $OM=4$, we have $OQ=OM-QM=OM-PN=4-2.5=1.5$. Thus $PQ=\sqrt{2.5^2-1.5^2}=2$. Further, we see that $\triangle OAR$ is a dilation of $\triangle OPQ$ about center $O$ with scale factor $2$, so $AR=2PQ=4$. Lastly, we apply the formula: \[\sin{\left(\angle AOM - \angle BOM\right)} = \sin \angle AOM \cos \angle BOM - \sin \angle BOM \cos \angle AOM = \left(\frac{4}{5}\right)\left(\frac{4}{5}\right)-\left(\frac{3}{5}\right)\left(\frac{3}{5}\right)=\frac{7}{25}\] Thus the answer is $7\cdot25=\boxed{175}$. Solution 4 (coordinate geometry) [Image: images/aime/1983_AIME_Problem_15_0.png] Let the circle have equation $x^2 + y^2 = 25$, with centre $O(0,0)$. Since $BC=6$, we can calculate (by the Pythagorean Theorem) that the distance from $O$ to the line $BC$ is $4$. Therefore, we can let $B=(3,4)$ and $C=(-3,4)$. Now, assume that $A$ is any point on the major arc BC, and $D$ any point on the minor arc BC. We can write $A=(5 \cos \alpha, 5 \sin \alpha)$, where $\alpha$ is the angle measured from the positive $x$ axis to the ray $OA$. It will also be convenient to define $\angle XOB = \alpha_0$. Firstly, since $B$ must lie in the minor arc $AD$, we see that $\alpha \in \left(-\frac{\pi}{2}-\alpha_0,\alpha_0\right)$. However, since the midpoint of $AD$ must lie on $BC$, and the highest possible $y$-coordinate of $D$ is $5$, we see that the $y$-coordinate cannot be lower than $3$, that is, $\alpha \in \left[\sin^{-1}\frac{3}{5},\alpha_0\right)$. Secondly, there is a theorem that says that, in a circle, if a chord is bisected by a radius, then they must be perpendicular. Therefore, suppose that $P$ is the intersection point of $AD$ and $BC$, so that by the theorem, $OP$ is perpendicular to $AD$. So, if $AD$ is the only chord starting at $A$ which is bisected by $BC$, this means that $P$ is the only point on the chord $BC$ such that $OP$ is perpendicular to $AD$. Now suppose that $P=(p,4)$, where $p \in (-3,3)$. The fact that $OP$ must be perpendicular to $AD$ is equivalent to the following equation: \[-1 = \left(\text{slope of } OP\right)\left(\text{slope of } AP\right)\] which becomes \[-1 = \frac{4}{p} \cdot \frac{5\sin \alpha - 4}{5\cos \alpha - p}\] This rearranges to \[p^2 - (5\cos \alpha)p + 16 - 20 \sin \alpha = 0\] Given that this equation must have only one real root $p\in (-3,3)$, we study the following function: \[f(x) = x^2 - (5\cos \alpha)x + 16 - 20 \sin \alpha\] First, by the fact that the equation $f(x)=0$ has real solutions, its discriminant $\Delta$ must be non-negative, so we calculate \[\begin{split}\Delta & = (5\cos \alpha)^2 - 4(16-20\sin \alpha) \\ & = 25 (1- \sin^2 \alpha) - 64 + 80 \sin \alpha \\ & = -25 \sin^2 \alpha + 80\sin \alpha - 39 \\ & = (13 - 5\sin \alpha)(5\sin \alpha - 3)\end{split}\] It is obvious that this is in fact non-negative. If it is actually zero, then $\sin \alpha = \frac{3}{5}$, and $\cos \alpha = \frac{4}{5}$. In this case, $p = \frac{5\cos \alpha}{2} = 2 \in (-3,3)$, so we have found a possible solution. We thus calculate $\sin(\text{central angle of minor arc } AB) = \sin (\alpha_0 - \alpha) = \frac{4}{5}\cdot \frac{4}{5} - \frac{3}{5} \cdot \frac{3}{5} = \frac{7}{25}$ by the subtraction formula for $\sin$. This means that the answer is $7 \cdot 25 = 175$. Addendum to Solution 4 Since this is an AIME problem, we can assume that we are done since we have found one possible case. However, in a full-solution contest, we could not assume that the answer is unique, but would need to prove that this is the unique solution. This can be proven as follows. Suppose that $\Delta > 0$, which would mean that there could be two real roots of $f(x)$, one lying in the interval $(-3,3)$, and another outside of it. We also see, by Vieta's Formulas, that the average of the two roots is $\frac{5\cos \alpha}{2}$, which is non-negative, so the root outside of $(-3,3)$ must be no less than $3$. By considering the graph of $y=f(x)$, which is a "U-shaped" parabola, it is now evident that $f(-3) > 0$ and $f(3)\leq 0$. We can just use the second inequality: \[0 \geq f(3) = 25 - 15\cos \alpha - 20 \sin \alpha\] so \[3\cos \alpha + 4 \sin \alpha \geq 5\] The only way for this inequality to be satisfied is when $A=B$ (by applying the Cauchy-Schwarz inequality, or just plotting the line $3x+4y=5$ to see that point $A$ can't be above this line), which does not make sense in the original problem statement. (For it would mean that the point $A$ lies in the half-plane above the line $3x+4y=5$, inclusive, and the half-plane below the line $-3x+4y=5$, exclusive. This can be seen to be impossible by drawing the lines and observing that the intersection of the two half-planes does not share any point with the circle.) Solution 5 Let the center of the circle be $O$. Fix $B,C,$ and $A$. Then, as $D$ moves around the circle, the locus of the midpoints of $AD$ is clearly a circle. Since the problems gives that $AD$ is the only chord starting at $A$ bisected by $BC$, it follows that the circle with diameter $DO$ and $AO$ is tangent to $BC$. Now, let the intersection of $BC$ and $AD$ be $E$ and let the midpoint of $AO$ (the center of the circle tangent to $BC$ that we described beforehand) be $F$. Drop the altitude from $O$ to $BC$ and call its intersection with $BC$ $K$. Drop the perpendicular from $F$ to $KO$ and call its intersection with $KO$ $L$. Clearly, $KO = \sqrt{OC^2-KC^2} = \sqrt{5^2-3^2} = 4$ and since $EF$ is radius, it equals $\frac{5}{2}$. The same applies for $FO$, which also equals $\frac{5}{2}$. By the Pythagorean theorem, we deduce that $FL = 2$, so $EK = 2$. This is very important information! Now we know that $BE = 1$, so by Power of a Point, $AE = ED = \sqrt{5}$. We’re almost there! Since by the Pythagorean theorem, $ED^2 + EO^2 = 25$, we deduce that $EO = 2\sqrt{5}$. $EC=OC=5$, so $\sin (CEO) = \frac{2\sqrt{5}}{5}$. Furthermore, since $\sin (CEO) = \cos(DEC)$, we know that $\cos (DEC) = \frac{2\sqrt{5}}{5}$. By the law of cosines, \[DC^2 = (\sqrt{5})^2 + 5^2 -10\sqrt{5} \cdot \frac{2\sqrt{5}}{5} = 10\]Therefore, $DC = \sqrt{10} \Longleftrightarrow BA = \sqrt{2}$. Now, drop the altitude from $O$ to $BA$ and call its intersection with $BA$ $Z$. Then, by the Pythagorean theorem, $OZ = \frac{7\sqrt{2}}{2}$. Thus, $\sin (BOZ) = \frac{\sqrt{2}}{10}$ and $\cos (BOZ) = \frac{7\sqrt{2}}{10}$. As a result, $\sin (BOA) = \sin (2 BOZ) = 2\sin(BOZ)\cos(BOZ) = \frac{7}{25}$. $7 \cdot 25 = \boxed{175}$. Solution 6 [Image: images/aime/1983_AIME_Problem_15_1.png] Let I be the intersection of AD and BC. Lemma: $AI = ID$ if and only if $\angle AIO = 90$. Proof: If AI = ID, we get AO = OD, and thus IO is a perpendicular bisector of AD. If $\angle AIO = 90$, We can get $\triangle AIO \cong \triangle OID$ Let be this the circle with diameter AO. Thus, we get $\angle AIO = 90$, implying I must lie on $\omega$. I also must lie on BC. If both of these conditions are satisfied, The extension of AI intersecting with circle O will create a point D such that AI = ID. Thus, since AD is the only chord starting at A, there must be only 1 possible I, implying the circle with diameter AO is tangent to BC. Now, create a coordinate system such that the origin is O and the y-axis is perpendicular to BC. The positive x direction is from B to C. Let Z be (0,5). Let Y be (-5,0). Let X be the center of $\omega$. Since $\omega$'s radius is $\frac{5}{2}$, the altitude from X to OY is 1.5, since the altitude from I to OY is 4. XO is 2.5, so $sin(XOY) = sin(AOY) = \frac{3}{5}$. $sin(BOZ) = \frac{3}{5}$. If we let $sin(\theta) = \frac{3}{5}$, we can find that what we are looking for is $sin(90 - 2\theta)$, which we can evaluate and get $\frac{7}{25} \implies \boxed{175}$ -Alexlikemath Solution 7 (No Trig) Let $O$ be the center of the circle. The locus of midpoints of chords with $A$ as a endpoint is a circle with diameter $\overline{AO}$. Additionally, this circle must be tangent to $\overline{BC}$. Let the center of this circle be $P$. Let $M$ be the midpoint of $BC$, $N$ be the foot of the perpendicular from $P$ to $\overline{BM}$, and $K$ be the foot of the perpendicular from $B$ to $\overline{AP}$. Let $x=BK$. From right triangle $BKO$, we get $KO = \sqrt{25-x^2}$. Thus, $KP = \sqrt{25-x^2}-\frac52$. Since $BO = 5$, $BM = 3$, and $\angle BMO$ is right, $MO=4$. From quadrilateral $MNPO$, we get $MN = \sqrt{PO^2 - (MO - NP)^2} = \sqrt{(5/2)^2 - (4 - 5/2)^2} = \sqrt{(5/2)^2 - (3/2)^2} = 2$. Thus, $BN = 1$. Since angles $BNP$ and $BKP$ are right, we get \[BK^2+KP^2 = BN^2 + NP^2 \implies x^2 + \left(\sqrt{25-x^2}-\frac52\right)^2 = \left(\frac52\right)^2 + 1\] \[25 - 5\sqrt{25-x^2} = 1\] \[5\sqrt{25-x^2} = 24\] \[25(25-x^2) = 24^2\] \[25x^2 = 25^2 - 24^2 = 49\] \[x = \frac75\] Thus, $\sin \angle AOB = \frac{x}{5} = \frac{7}{25}\implies \boxed{175}$. ~rayfish Solution 8 (Similar to 1, but with coordinates) Let the center of the circle be O. O is at (0,0). Rotate the circle so that the line BC has slope 0, and so that C is in the 1st quadrant. Since BC = 6, and B can be reflected across the y axis to become C, we can say that B is on x=-3, and C is on x=3. Since it must lie on the circle $x^2+y^2=25$, B = (-3,4) and C = (3,4). So BC is on the line y=4. Let A be at $(x,\sqrt{25-x^2})$. Let D be at $(z,\sqrt{25-z^2})$. Notice that the midpoint of AD lies on BC. Since BC is on the line y=4, using the midpoint formula we can say, $\sqrt{25-x^2} + \sqrt{25-z^2} = 8$. We treat x like a constant, since it is determined by where A lies on the circle. Notice that if the above equation is true for z=p, it is also true for z=-p. But this is impossible because the problem states that AD is the only chord starting at A which is bisected by BC. This problem is solved if z=-z=0. Thus, z=0, and D=(0,5). plugging in z=0 into $\sqrt{25-x^2} + \sqrt{25-z^2} = 8$, we find x=+-4. Since AB is a minor arc, we assume x=-4. A is therefore on (-4,3) and B on (-3,4). We can use complex numbers to find the angle between A and B, because arguments subtract when you divide complex numbers. $\frac{-4+3i}{-3+4i} = \frac{24+7i}{25}$ Which gives us $\frac{7}{25}$. $7 \cdot 25 = \boxed{175}$ ~skibidi solver
// Block 1 size(170); pair P = (0,0), L1 = (-3, 0), L2 = (1.5, 1.5), M1 = (-3, 1), M2 = (1.5, 2.5); pair X = .6*M1 + .4*M2, M = (P+X)/2; draw(L1--L2); draw(M1--M2); draw(P--X, dotted); dot(M); dot("$P$", P, S); dot("$X$", X, N); label("$\ell$", L2, E); label("$m$", M2, E); // Block 2 size(170); pair O = (0,0), D = (0, 5), B = (-3, 4), C = (3, 4), A = (-4, 3), EE = (4, 3); pair M = (B+C)/2, NN = (A+EE)/2; draw(circle(O, 5)); draw(O--D); draw(B--C); draw(A--EE); draw(B--O--A); dot("$O$", O, SE); label("$D$", D, N); label("$B$", B, WNW); label("$A$", A, WNW); label("$C$", C, ENE); label("$M$", M, NE); label("$N$", NN, SE); // Block 3 size(10cm); import olympiad; pair O = (0,0);dot(O);label("$O$",O,SW); pair M = (4,0);dot(M);label("$M$",M,SE); pair N = (4,2);dot(N);label("$N$",N,NE); draw(circle(O,5)); pair B = (4,3);dot(B);label("$B$",B,NE); pair C = (4,-3);dot(C);label("$C$",C,SE); draw(B--C);draw(O--M); pair P = (1.5,2);dot(P);label("$P$",P,W); draw(circle(P,2.5)); pair A=(3,4);dot(A);label("$A$",A,NE); draw(O--A); draw(O--B); pair Q = (1.5,0); dot(Q); label("$Q$",Q,S); pair R = (3,0); dot(R); label("$R$",R,S); draw(P--Q,dotted); draw(A--R,dotted); pair D=(5,0); dot(D); label("$D$",D,E); draw(A--D);
["https://artofproblemsolving.com/wiki/images/thumb/b/b7/Aime1983p15s2.png/500px-Aime1983p15s2.png", "https://artofproblemsolving.com/wiki/images/thumb/3/3c/Dgram.png/800px-Dgram.png"]
53
In tetrahedron $ABCD$, edge $AB$ has length 3 cm. The area of face $ABC$ is $15\mbox{cm}^2$ and the area of face $ABD$ is $12 \mbox { cm}^2$. These two faces meet each other at a $30^\circ$ angle. Find the volume of the tetrahedron in $\mbox{cm}^3$.
1984 AIME Problem 9
Position face $ABC$ on the bottom. Since $[\triangle ABD] = 12 = \frac{1}{2} \cdot AB \cdot h_{ABD}$, we find that $h_{ABD} = 8$. Because the problem does not specify, we may assume both $ABC$ and $ABD$ to be isosceles triangles. Thus, the height of $ABD$ forms a $30-60-90$ with the height of the tetrahedron. So, $h = \frac{1}{2} (8) = 4$. The volume of the tetrahedron is thus $\frac{1}{3}Bh = \frac{1}{3} \cdot15 \cdot 4 = \boxed{020}$.
// Block 1 /* modified version of olympiad modules */ import three; real markscalefactor = 0.03; path3 rightanglemark(triple A, triple B, triple C, real s=8) { triple P,Q,R; P=s*markscalefactor*unit(A-B)+B; R=s*markscalefactor*unit(C-B)+B; Q=P+R-B; return P--Q--R; } path3 anglemark(triple A, triple B, triple C, real t=8 ... real[] s) { triple M,N,P[],Q[]; path3 mark; int n=s.length; M=t*markscalefactor*unit(A-B)+B; N=t*markscalefactor*unit(C-B)+B; for (int i=0; i<n; ++i) { P[i]=s[i]*markscalefactor*unit(A-B)+B; Q[i]=s[i]*markscalefactor*unit(C-B)+B; } mark=arc(B,M,N); for (int i=0; i<n; ++i) { if (i%2==0) { mark=mark--reverse(arc(B,P[i],Q[i])); } else { mark=mark--arc(B,P[i],Q[i]); } } if (n%2==0 && n!=0) mark=(mark--B--P[n-1]); else if (n!=0) mark=(mark--B--Q[n-1]); else mark=(mark--B--cycle); return mark; } size(200); import three; defaultpen(black+linewidth(0.7)); pen small = fontsize(10); triple A=(0,0,0),B=(3,0,0),C=(1.8,10,0),D=(1.5,4,4),Da=(D.x,D.y,0),Db=(D.x,0,0); currentprojection=perspective(16,-10,8); draw(surface(A--B--C--cycle),rgb(0.6,0.7,0.6),nolight); draw(surface(A--B--D--cycle),rgb(0.7,0.6,0.6),nolight); /* draw pyramid - other lines + angles */ draw(A--B--C--A--D--B--D--C); draw(D--Da--Db--cycle); draw(rightanglemark(D,Da,Db));draw(rightanglemark(A,Db,D));draw(anglemark(Da,Db,D,15)); /* labeling points */ label("$A$",A,SW);label("$B$",B,S);label("$C$",C,S);label("$D$",D,N);label("$30^{\circ}$",Db+(0,.35,0.08),(1.5,1.2),small); label("$3$",(A+B)/2,S); label("$15\mathrm{cm}^2$",(Db+C)/2+(0,-0.5,-0.1),NE,small); label("$12\mathrm{cm}^2$",(A+D)/2,NW,small); // Block 2 /* modified version of olympiad modules */ import three; real markscalefactor = 0.03; path3 rightanglemark(triple A, triple B, triple C, real s=8) { triple P,Q,R; P=s*markscalefactor*unit(A-B)+B; R=s*markscalefactor*unit(C-B)+B; Q=P+R-B; return P--Q--R; } path3 anglemark(triple A, triple B, triple C, real t=8 ... real[] s) { triple M,N,P[],Q[]; path3 mark; int n=s.length; M=t*markscalefactor*unit(A-B)+B; N=t*markscalefactor*unit(C-B)+B; for (int i=0; i<n; ++i) { P[i]=s[i]*markscalefactor*unit(A-B)+B; Q[i]=s[i]*markscalefactor*unit(C-B)+B; } mark=arc(B,M,N); for (int i=0; i<n; ++i) { if (i%2==0) { mark=mark--reverse(arc(B,P[i],Q[i])); } else { mark=mark--arc(B,P[i],Q[i]); } } if (n%2==0 && n!=0) mark=(mark--B--P[n-1]); else if (n!=0) mark=(mark--B--Q[n-1]); else mark=(mark--B--cycle); return mark; } size(200); import three; defaultpen(black+linewidth(0.7)); pen small = fontsize(10); triple A=(0,0,0),B=(3,0,0),C=(1.8,10,0),D=(1.5,4,4),Da=(D.x,D.y,0),Db=(D.x,0,0); currentprojection=perspective(16,-10,8); draw(surface(A--B--C--cycle),rgb(0.6,0.7,0.6),nolight); draw(surface(A--B--D--cycle),rgb(0.7,0.6,0.6),nolight); /* draw pyramid - other lines + angles */ draw(A--B--C--A--D--B--D--C); draw(D--Da--Db--cycle); draw(rightanglemark(D,Da,Db));draw(rightanglemark(A,Db,D));draw(anglemark(Da,Db,D,15)); /* labeling points */ label("$A$",A,SW);label("$B$",B,S);label("$C$",C,S);label("$D$",D,N);label("$30^{\circ}$",Db+(0,.35,0.08),(1.5,1.2),small); label("$3$",(A+B)/2,S); label("$15\mathrm{cm}^2$",(Db+C)/2+(0,-0.5,-0.1),NE,small); label("$12\mathrm{cm}^2$",(A+D)/2,NW,small);
[]
54
In a circle, parallel chords of lengths 2, 3, and 4 determine central angles of $\alpha$, $\beta$, and $\alpha + \beta$ radians, respectively, where $\alpha + \beta < \pi$. If $\cos \alpha$, which is a positive rational number, is expressed as a fraction in lowest terms, what is the sum of its numerator and denominator?
1985 AIME Problem 9
All chords of a given length in a given circle subtend the same arc and therefore the same central angle. Thus, by the given, we can re-arrange our chords into a triangle with the circle as its circumcircle. This triangle has semiperimeter $\frac{2 + 3 + 4}{2}$ so by Heron's formula it has area $K = \sqrt{\frac92 \cdot \frac52 \cdot \frac32 \cdot \frac12} = \frac{3}{4}\sqrt{15}$. The area of a given triangle with sides of length $a, b, c$ and circumradius of length $R$ is also given by the formula $K = \frac{abc}{4R}$, so $\frac6R = \frac{3}{4}\sqrt{15}$ and $R = \frac8{\sqrt{15}}$. Now, consider the triangle formed by two radii and the chord of length 2. This isosceles triangle has vertex angle $\alpha$, so by the Law of Cosines, \[2^2 = R^2 + R^2 - 2R^2\cos \alpha \Longrightarrow \cos \alpha = \frac{2R^2 - 4}{2R^2} = \frac{17}{32}\] and the answer is $17 + 32 = \boxed{049}$.
// Block 1 size(200); pointpen = black; pathpen = black + linewidth(0.8); real r = 8/15^0.5, a = 57.91, b = 93.135; pair O = (0,0), A = r*expi(pi/3); D(CR(O,r)); D(O--rotate(a/2)*A--rotate(-a/2)*A--cycle); D(O--rotate(b/2)*A--rotate(-b/2)*A--cycle); D(O--rotate((a+b)/2)*A--rotate(-(a+b)/2)*A--cycle); MP("2",(rotate(a/2)*A+rotate(-a/2)*A)/2,NE); MP("3",(rotate(b/2)*A+rotate(-b/2)*A)/2,NE); MP("4",(rotate((a+b)/2)*A+rotate(-(a+b)/2)*A)/2,NE); D(anglemark(rotate(-(a+b)/2)*A,O,rotate((a+b)/2)*A,5)); label("\(\alpha+\beta\)",(0.08,0.08),NE,fontsize(8)); // Block 2 size(200); pointpen = black; pathpen = black + linewidth(0.8); real r = 8/15^0.5, a = 57.91, b = 93.135; pair O = (0,0), A = r*expi(pi/3), A1 = rotate(a/2)*A, A2 = rotate(-a/2)*A, A3 = rotate(-a/2-b)*A; D(CR(O,r)); D(O--A1--A2--cycle); D(O--A2--A3--cycle); D(O--A1--A3--cycle); MP("2",(A1+A2)/2,NE); MP("3",(A2+A3)/2,E); MP("4",(A1+A3)/2,E); D(anglemark(A2,O,A1,5)); D(anglemark(A3,O,A2,5)); label("\(\alpha\)",(0.07,0.16),NE,fontsize(8)); label("\(\beta\)",(0.12,-0.16),NE,fontsize(8));
[]
54
In a circle, parallel chords of lengths 2, 3, and 4 determine central angles of $\alpha$, $\beta$, and $\alpha + \beta$ radians, respectively, where $\alpha + \beta < \pi$. If $\cos \alpha$, which is a positive rational number, is expressed as a fraction in lowest terms, what is the sum of its numerator and denominator?
1985 AIME Problem 9
It’s easy to see in triangle which lengths 2, 3, and 4, that the angle opposite the side 2 is $\frac{\alpha}{2}$, and using the Law of Cosines, we get: \[2^2 = 3^2 + 4^2 - 2\cdot3\cdot4\cos\frac{\alpha}{2}\] Which, rearranges to: \[21 = 24\cos\frac{\alpha}{2}\] And, that gets us: \[\cos\frac{\alpha}{2} = 7/8\] Using $\cos 2\theta = 2\cos^2 \theta - 1$, we get that: \[\cos\alpha = 17/32\] Which gives an answer of $\boxed{049}$ - AlexLikeMath
// Block 1 size(200); pointpen = black; pathpen = black + linewidth(0.8); real r = 8/15^0.5, a = 57.91, b = 93.135; pair O = (0,0), A = r*expi(pi/3), A1 = rotate(a/2)*A, A2 = rotate(-a/2)*A, A3 = rotate(-a/2-b)*A; D(CR(O,r)); D(O--A1--A2--cycle); D(O--A2--A3--cycle); D(O--A1--A3--cycle); MP("2",(A1+A2)/2,NE); MP("3",(A2+A3)/2,E); MP("4",(A1+A3)/2,E); D(anglemark(A2,O,A1,5)); D(anglemark(A3,O,A2,5)); D(anglemark(A2,A3,A1,18)); label("\(\alpha\)",(0.07,0.16),NE,fontsize(8)); label("\(\beta\)",(0.12,-0.16),NE,fontsize(8)); label("\(\alpha\)/2",(0.82,-1.25),NE,fontsize(8)); // Block 2 size(200); pointpen = black; pathpen = black + linewidth(0.8); real r = 8/15^0.5, a = 57.91, b = 93.135; pair O = (0,0), A = r*expi(pi/3), A1 = rotate(a/2)*A, A2 = rotate(-a/2)*A, A3 = rotate(-a/2-b)*A; D(CR(O,r)); D(O--A1--A2--cycle); D(O--A2--A3--cycle); D(O--A1--A3--cycle); MP("2",(A1+A2)/2,NE); MP("3",(A2+A3)/2,E); MP("4",(A1+A3)/2,E); D(anglemark(A2,O,A1,5)); D(anglemark(A3,O,A2,5)); D(anglemark(A2,A3,A1,18)); label("\(\alpha\)",(0.07,0.16),NE,fontsize(8)); label("\(\beta\)",(0.12,-0.16),NE,fontsize(8)); label("\(\alpha\)/2",(0.82,-1.25),NE,fontsize(8));
[]
55
An ellipse has foci at $(9,20)$ and $(49,55)$ in the $xy$-plane and is tangent to the $x$-axis. What is the length of its major axis?
1985 AIME Problem 11
An ellipse is defined to be the locus of points $P$ such that the sum of the distances between $P$ and the two foci is constant. Let $F_1 = (9, 20)$, $F_2 = (49, 55)$ and $X = (x, 0)$ be the point of tangency of the ellipse with the $x$-axis. Then $X$ must be the point on the axis such that the sum $F_1X + F_2X$ is minimal. (The last claim begs justification: Let $F'_2$ be the reflection of $F_2$ across the $x$-axis. Let $Y$ be where the line through $F_1$ and $F’_2$ intersects the ellipse. We will show that $X=Y$. Note that $X F_2 = X F’_2$ since $X$ is on the $x$-axis. Also, since the entire ellipse is on or above the $x$-axis and the line through $F_2$ and $F’_2$ is perpendicular to the $x$-axis, we must have $F_2 Y \leq F’_2 Y$ with equality if and only if $Y$ is on the $x$-axis. Now, we have \[F_1 X + F'_2 X = F_1 X + F_2 X = F_1 Y + F_2 Y \leq F_1 Y + F’_2 Y\] But the right most sum is the straight-line distance from $F_1$ to $F’_2$ and the left is the distance of some path from $F_1$ to $F_2$., so this is only possible if we have equality and thus $X = Y$). Finding the optimal location for $X$ is a classic problem: for any path from $F_1$ to $X$ and then back to $F_2$, we can reflect (as above) the second leg of this path (from $X$ to $F_2$) across the $x$-axis. Then our path connects $F_1$ to the reflection $F_2'$ of $F_2$ via some point on the $x$-axis, and this path will have shortest length exactly when our original path has shortest length. This occurs exactly when we have a straight-line path, and by the above argument, this path passes through the point of tangency of the ellipse with the $x-$axis. The sum of the two distances $F_1 X$ and $F_2X$ is therefore equal to the length of the segment $F_1F_2'$, which by the distance formula is just $d = \sqrt{(9 - 49)^2 + (20 + 55)^2} = \sqrt{40^2 + 75^2} = 5\sqrt{8^2 + 15^2} = 5\cdot 17 = 85$. Finally, let $A$ and $B$ be the two endpoints of the major axis of the ellipse. Then by symmetry $AF_1 = F_2B$ so $AB = AF_1 + F_1B = F_2B + F_1B = d$ (because $B$ is on the ellipse), so the answer is $\boxed{085}$.
// Block 1 size(200); pointpen=black;pathpen=black+linewidth(0.6);pen f = fontsize(10); pair F1=(9,20),F2=(49,55); D(shift((F1+F2)/2)*rotate(41.186)*scale(85/2,10*11^.5)*unitcircle); D((-20,0)--(80,0)--(0,0)--(0,80)--(0,-60)); path p = F1--(49,-55); pair X = IP(p,(0,0)--(80,0)); D(p,dashed);D(F1--X--F2);D(F1);D(F2);D((49,-55)); MP("X",X,SW,f); MP("F_1",F1,NW,f); MP("F_2",F2,NW,f); MP("F_2'",(49,-55),NE,f); // Block 2 size(200); pointpen=black;pathpen=black+linewidth(0.6);pen f = fontsize(10); pair F1=(9,20),F2=(49,55); D(shift((F1+F2)/2)*rotate(41.186)*scale(85/2,10*11^.5)*unitcircle); D((-20,0)--(80,0)--(0,0)--(0,80)--(0,-60)); path p = F1--(49,-55); pair X = IP(p,(0,0)--(80,0)); D(p,dashed);D(F1--X--F2);D(F1);D(F2);D((49,-55)); MP("X",X,SW,f); MP("F_1",F1,NW,f); MP("F_2",F2,NW,f); MP("F_2'",(49,-55),NE,f);
[]
56
In $\triangle ABC$, $AB= 425$, $BC=450$, and $AC=510$. An interior point $P$ is then drawn, and segments are drawn through $P$ parallel to the sides of the triangle. If these three segments are of an equal length $d$, find $d$.
1986 AIME Problem 9
Solution 1 Let the points at which the segments hit the triangle be called $D, D', E, E', F, F'$ as shown above. As a result of the lines being parallel, all three smaller triangles and the larger triangle are similar ($\triangle ABC \sim \triangle DPD' \sim \triangle PEE' \sim \triangle F'PF$). The remaining three sections are parallelograms. By similar triangles, $BE'=\frac{d}{510}\cdot450=\frac{15}{17}d$ and $EC=\frac{d}{425}\cdot450=\frac{18}{17}d$. Since $FD'=BC-EE'$, we have $900-\frac{33}{17}d=d$, so $d=\boxed{306}$. Solution 2 Construct cevians $AX$, $BY$ and $CZ$ through $P$. Place masses of $x,y,z$ on $A$, $B$ and $C$ respectively; then $P$ has mass $x+y+z$. Notice that $Z$ has mass $x+y$. On the other hand, by similar triangles, $\frac{CP}{CZ} = \frac{d}{AB}$. Hence by mass points we find that \[\frac{x+y}{x+y+z} = \frac{d}{AB}\] Similarly, we obtain \[\frac{y+z}{x+y+z} = \frac{d}{BC} \qquad \text{and} \qquad \frac{z+x}{x+y+z} = \frac{d}{CA}\] Summing these three equations yields \[\frac{d}{AB} + \frac{d}{BC} + \frac{d}{CA} = \frac{x+y}{x+y+z} + \frac{y+z}{x+y+z} + \frac{z+x}{x+y+z} = \frac{2x+2y+2z}{x+y+z} = 2\] Hence, $d = \frac{2}{\frac{1}{AB} + \frac{1}{BC} + \frac{1}{CA}} = \frac{2}{\frac{1}{510} + \frac{1}{450} + \frac{1}{425}} = \frac{10}{\frac{1}{85}+\frac{1}{90}+\frac{1}{102}}$$= \frac{10}{\frac{1}{5}\left(\frac{1}{17}+\frac{1}{18}\right)+\frac{1}{102}}=\frac{10}{\frac{1}{5}\cdot\frac{35}{306}+\frac{3}{306}}=\frac{10}{\frac{10}{306}} = \boxed{306}$ Solution 3 Let the points at which the segments hit the triangle be called $D, D', E, E', F, F'$ as shown above. As a result of the lines being parallel, all three smaller triangles and the larger triangle are similar ($\triangle ABC \sim \triangle DD'P \sim \triangle PEE' \sim \triangle F'PF$). The remaining three sections are parallelograms. Since $PDAF'$ is a parallelogram, we find $PF' = AD$, and similarly $PE = BD'$. So $d = PF' + PE = AD + BD' = 425 - DD'$. Thus $DD' = 425 - d$. By the same logic, $EE' = 450 - d$. Since $\triangle DPD' \sim \triangle ABC$, we have the proportion: $\frac{425-d}{425} = \frac{PD}{510} \Longrightarrow PD = 510 - \frac{510}{425}d = 510 - \frac{6}{5}d$ Doing the same with $\triangle PEE'$, we find that $PE' =510 - \frac{17}{15}d$. Now, $d = PD + PE' = 510 - \frac{6}{5}d + 510 - \frac{17}{15}d \Longrightarrow d\left(\frac{50}{15}\right) = 1020 \Longrightarrow d = \boxed{306}$. Solution 4 Define the points the same as above. Let $[CE'PF] = a$, $[E'EP] = b$, $[BEPD'] = c$, $[D'PD] = d$, $[DAF'P] = e$ and $[F'D'P] = f$ The key theorem we apply here is that the ratio of the areas of 2 similar triangles is the ratio of a pair of corresponding sides squared. Let the length of the segment be $x$ and the area of the triangle be $A$, using the theorem, we get: $\frac {d + e + f}{A} = \left(\frac {x}{BC}\right)^2$, $\frac {b + c + d}{A}= \left(\frac {x}{AC}\right)^2$, $\frac {a + b + f}{A} = \left(\frac {x}{AB}\right)^2$. Adding all these together and using $a + b + c + d + e + f = A$ we get $\frac {f + d + b}{A} + 1 = x^2 \cdot \left(\frac {1}{BC^2} + \frac {1}{AC^2} + \frac {1}{AB^2}\right)$ Using corresponding angles from parallel lines, it is easy to show that $\triangle ABC \sim \triangle F'PF$; since $ADPF'$ and $CFPE'$ are parallelograms, it is easy to show that $FF' = AC - x$ Now we have the side length ratio, so we have the area ratio $\frac {f}{A} = \left(\frac {AC - x}{AC}\right)^2 = \left(1 - \frac {x}{AC}\right)^2$. By symmetry, we have $\frac {d}{A} = \left(1 - \frac {x}{AB}\right)^2$ and $\frac {b}{A} = \left(1 - \frac {x}{BC}\right)^2$ Substituting these into our initial equation, we have $1 + \sum_{cyc}\left(1 - \frac {x}{AB}\right) - \frac {x^2}{AB^2} = 0$ $\implies 1 + \sum_{cyc}1 - 2 \cdot \frac {x}{AB} = 0$ $\implies \frac {2}{\frac {1}{AB} + \frac {1}{BC} + \frac {1}{CA}} = x$ and the answer follows after some hideous computation. Solution 5 Refer to the diagram in solution 2; let $a^2=[E'EP]$, $b^2=[D'DP]$, and $c^2=[F'FP]$. Now, note that $[E'BD]$, $[D'DP]$, and $[E'EP]$ are similar, so through some similarities we find that $\frac{E'P}{PD}=\frac{a}{b}\implies\frac{E'D}{PD}=\frac{a+b}{b}\implies[E'BD]=b^2\left(\frac{a+b}{b}\right)^2=(a+b)^2$. Similarly, we find that $[D'AF]=(b+c)^2$ and $[F'CE]=(c+a)^2$, so $[ABC]=(a+b+c)^2$. Now, again from similarity, it follows that $\frac{d}{510}=\frac{a+b}{a+b+c}$, $\frac{d}{450}=\frac{b+c}{a+b+c}$, and $\frac{d}{425}=\frac{c+a}{a+b+c}$, so adding these together, simplifying, and solving gives $d=\frac{2}{\frac{1}{425}+\frac{1}{450}+\frac{1}{510}}=\frac{10}{\frac{1}{85}+\frac{1}{90}+\frac{1}{102}}=\frac{10}{\frac{1}{5}\left(\frac{1}{17}+\frac{1}{18}\right)+\frac{1}{102}}=\frac{10}{\frac{1}{5}\cdot\frac{35}{306}+\frac{3}{306}}$ $=\frac{10}{\frac{10}{306}}=\boxed{306}$. Solution 6 Refer to the diagram above. Notice that because $CE'PF$, $AF'PD$, and $BD'PE$ are parallelograms, $\overline{DD'} = 425-d$, $\overline{EE'} = 450-d$, and $\overline{FF'} = 510-d$. Let $F'P = x$. Then, because $\triangle ABC \sim \triangle F'PF$, $\frac{AB}{AC}=\frac{F'P}{F'F}$, so $\frac{425}{510}=\frac{x}{510-d}$. Simplifying the LHS and cross-multiplying, we have $6x=2550-5d$. From the same triangles, we can find that $FP=\frac{18}{17}x$. $\triangle PEE'$ is also similar to $\triangle F'PF$. Since $EF'=d$, $EP=d-x$. We now have $\frac{PE}{EE'}=\frac{F'P}{FP}$, and $\frac{d-x}{450-d}=\frac{17}{18}$. Cross multiplying, we have $18d-18x=450 \cdot 17-17d$. Using the previous equation to substitute for $x$, we have: \[18d-3\cdot2550+15d=450\cdot17-17d\] This is a linear equation in one variable, and we can solve to get $d=\boxed{306}$ I did not show the multiplication in the last equation because most of it cancels out when solving. (Note: I chose $F'P$ to be $x$ only because that is what I had written when originally solving. The solution would work with other choices for $x$.)
// Block 1 size(200); pathpen = black; pointpen = black +linewidth(0.6); pen s = fontsize(10); pair C=(0,0),A=(510,0),B=IP(circle(C,450),circle(A,425)); /* construct remaining points */ pair Da=IP(Circle(A,289),A--B),E=IP(Circle(C,324),B--C),Ea=IP(Circle(B,270),B--C); pair D=IP(Ea--(Ea+A-C),A--B),F=IP(Da--(Da+C-B),A--C),Fa=IP(E--(E+A-B),A--C); D(MP("A",A,s)--MP("B",B,N,s)--MP("C",C,s)--cycle); dot(MP("D",D,NE,s));dot(MP("E",E,NW,s));dot(MP("F",F,s));dot(MP("D'",Da,NE,s));dot(MP("E'",Ea,NW,s));dot(MP("F'",Fa,s)); D(D--Ea);D(Da--F);D(Fa--E); MP("450",(B+C)/2,NW);MP("425",(A+B)/2,NE);MP("510",(A+C)/2); /*P copied from above solution*/ pair P = IP(D--Ea,E--Fa); dot(MP("P",P,N)); // Block 2 size(200); pathpen = black; pointpen = black +linewidth(0.6); pen s = fontsize(10); pair C=(0,0),A=(510,0),B=IP(circle(C,450),circle(A,425)); /* construct remaining points */ pair Da=IP(Circle(A,289),A--B),E=IP(Circle(C,324),B--C),Ea=IP(Circle(B,270),B--C); pair D=IP(Ea--(Ea+A-C),A--B),F=IP(Da--(Da+C-B),A--C),Fa=IP(E--(E+A-B),A--C); /* Construct P */ pair P = IP(D--Ea,E--Fa); dot(MP("P",P,NE)); pair X = IP(L(A,P,4), B--C); dot(MP("X",X,NW)); pair Y = IP(L(B,P,4), C--A); dot(MP("Y",Y,NE)); pair Z = IP(L(C,P,4), A--B); dot(MP("Z",Z,N)); D(A--X); D(B--Y); D(C--Z); D(MP("A",A,s)--MP("B",B,N,s)--MP("C",C,s)--cycle); MP("450",(B+C)/2,NW);MP("425",(A+B)/2,NE);MP("510",(A+C)/2); // Block 3 size(200); pathpen = black; pointpen = black + linewidth(0.6); pen s = fontsize(10); // Define points pair C = (0,0), A = (510,0); pair B = IP(circle(C,450),circle(A,425)); // Construct remaining points pair Da = IP(circle(A,289),A--B); pair E = IP(circle(C,324),B--C); pair Ea = IP(circle(B,270),B--C); pair D = IP(Ea--(Ea+A-C),A--B); pair F = IP(Da--(Da+C-B),A--C); pair Fa = IP(E--(E+A-B),A--C); // Draw the main triangle draw(A--B--C--cycle); dot(MP("A",A,s)); dot(MP("B",B,N,s)); dot(MP("C",C,s)); // Mark and draw the other points dot(MP("D",D,NE,s)); dot(MP("E",E,NW,s)); dot(MP("F",F,s)); dot(MP("D'",Da,NE,s)); dot(MP("E'",Ea,NW,s)); dot(MP("F'",Fa,s)); // Draw connecting lines draw(D--Ea); draw(Da--F); draw(Fa--E); // Label distances label("450", (B+C)/2, NW); label("425", (A+B)/2, NE); label("510", (A+C)/2, S); // Additional point P pair P = IP(D--Ea, E--Fa); dot(MP("P",P,N)); // Block 4 size(200); pathpen = black; pointpen = black +linewidth(0.6); pen s = fontsize(10); pair C=(0,0),A=(510,0),B=IP(circle(C,450),circle(A,425)); /* construct remaining points */ pair Da=IP(Circle(A,289),A--B),E=IP(Circle(C,324),B--C),Ea=IP(Circle(B,270),B--C); pair D=IP(Ea--(Ea+A-C),A--B),F=IP(Da--(Da+C-B),A--C),Fa=IP(E--(E+A-B),A--C); D(MP("A",A,s)--MP("B",B,N,s)--MP("C",C,s)--cycle); dot(MP("D",D,NE,s));dot(MP("E",E,NW,s));dot(MP("F",F,s));dot(MP("D'",Da,NE,s));dot(MP("E'",Ea,NW,s));dot(MP("F'",Fa,s)); D(D--Ea);D(Da--F);D(Fa--E); MP("450",(B+C)/2,NW);MP("425",(A+B)/2,NE);MP("510",(A+C)/2); /*P copied from above solution*/ pair P = IP(D--Ea,E--Fa); dot(MP("P",P,N));
[]
57
Let triangle $ABC$ be a right triangle in the xy-plane with a right angle at $C_{}$. Given that the length of the hypotenuse $AB$ is $60$, and that the medians through $A$ and $B$ lie along the lines $y=x+3$ and $y=2x+4$ respectively, find the area of triangle $ABC$.
1986 AIME Problem 15
Let $\theta_1$ be the angle that the median through $A$ makes with the positive $y$-axis, and let $\theta_2$ be the angle that the median through $B$ makes with the positive $x$-axis. The tangents of these two angles are the slopes of the respective medians; in other words, $\tan \theta_1 = 1$, and $\tan \theta_2 =2$. Let $\theta$ be the angle between the medians through $A$ and $B$. Then by the tangent angle subtraction formula, \[\tan \theta = \tan (\theta_2 - \theta_1) = \frac{\tan \theta_2 - \tan \theta_1}{1 + \tan \theta_1 \tan \theta_2} = \frac{2-1}{1 + 2 \cdot 1 } = \frac{1}{3}.\] Let $M$ be the midpoint of $BC,$ let $N$ be the midpoint of $AC,$ and let $G$ be the intersection of these two medians. Let $BC = a,$ and let $AC = b$; let $\alpha = \angle MAC$, and let $\beta = \angle BNC$. With this setup, $\theta = \beta - \alpha$. The reason is that $\beta$ is an exterior angle of $\triangle AGN$, and thus $\beta = \alpha + \angle AGN = \alpha + \theta$. We also know that $\tan \alpha = \dfrac{(1/2) a}{b} = \dfrac{a}{2b}$, and $\tan \beta = \dfrac{a}{(1/2)b} = \dfrac{2a}{b}$. Then \begin{align*} \frac{1}{3} &= \tan \theta \\ &= \tan (\beta - \alpha) \\ &= \frac{\tan \beta - \tan \alpha}{1 + \tan \beta \tan \alpha} \\ &= \frac{2 \frac{a}{b} - \frac{1}{2} \cdot \frac{a}{b}}{1 + (a/b)^2} \\ &= \frac{(3/2) \cdot (a/b)}{1 + (a/b)^2} . \end{align*} Multiplying numerator and denominator by $b^2,$ we learn that \[\frac{1}{3} = \frac{(3/2) ab}{a^2 + b^2} = \frac{(3/2) ab}{60^2},\] since the hypotenuse of $\triangle ABC$ has length 60. Solving for $\frac{1}{2}ab$, we find that \[\frac{1}{2} ab = \frac{1}{9} \cdot 60^2 = (60/3)^2 = 20^2 = 400.\] ~minor edits by EaZ_Shadow
// Block 1 size(170); pair A = (0,0), B = (3, 2), C = (3, 0); pair M = (B+C)/2, NN = (A+C)/2, G = (A+B+C)/3; draw(A--B--C--cycle); draw(A--M); draw(B--NN); label("$A$", A, S); label("$C$", C, S); label("$B$", B, N); label("$M$", M, NW); label("$N$", NN, NW); label("$a$", M, E); label("$b$", NN, S); label("$G$", G, NW); label("$\theta$", G, 4*dir(40)); label("$\alpha$", A, 5*dir(.5*degrees(M))); label("$\beta$", NN, 2*dir(.5*degrees(B-NN))); // Block 2 size(170); pair A = (0,0), B = (3, 2), C = (3, 0); pair M = (B+C)/2, NN = (A+C)/2, G = (A+B+C)/3; draw(A--B--C--cycle); draw(A--M); draw(B--NN); label("$A$", A, S); label("$C$", C, S); label("$B$", B, N); label("$M$", M, NW); label("$N$", NN, NW); label("$a$", M, E); label("$b$", NN, S); label("$G$", G, NW); label("$\theta$", G, 4*dir(40)); label("$\alpha$", A, 5*dir(.5*degrees(M))); label("$\beta$", NN, 2*dir(.5*degrees(B-NN)));
[]
57
Let triangle $ABC$ be a right triangle in the xy-plane with a right angle at $C_{}$. Given that the length of the hypotenuse $AB$ is $60$, and that the medians through $A$ and $B$ lie along the lines $y=x+3$ and $y=2x+4$ respectively, find the area of triangle $ABC$.
1986 AIME Problem 15
We first seek to find the angle between the lines $y = x + 3$ and $y = 2x + 4$. Let the acute angle the red line makes with the $x-$ axis be $\alpha$ and the acute angle the blue line makes with the $x-$ axis be $\beta$. Then, we know that $\tan \alpha = 1$ and $\tan \beta = 2$. Note that the acute angle between the red and blue lines is clearly $\beta - \alpha$. Therefore, we have that: \[\tan (\beta - \alpha) = \frac{2 - 1}{1 + 2} = \frac{1}{3}\]It follows that $\cos (\beta - \alpha) = \frac{1}{\sqrt{10}}$ and $\sin (\beta - \alpha) = \frac{3}{\sqrt{10}}$. From now on, refer to $\theta = \beta - \alpha$ Suppose $ABC$ is our desired triangle. Let $E$ be the midpoint of $CA$ and $D$ be the midpoint of $AB$ such that $CE = EA = m$ and $AD = DB = n$. Let $G$ be the centroid of the triangle (in other words, the intersection of $EB$ and $CD$). It follows that if $CG = 2x$, $GD = x$ and if $GB = 2y$, $GE = y$. By the Law of Cosines on $\triangle GEB$, we get that: \[GE^2 + GC^2 - 2GE \cdot GC \cdot \cos \theta = CE^2 \Longleftrightarrow\]\[(2x)^2 + y^2 - (2x)(y)(2)\cos \theta = m^2\]By the Law of Cosines on $\triangle GDB$, we get that: \[DG^2 + GB^2 -2 DG \cdot GB \cdot \cos \theta = DB^2 \Longleftrightarrow\]\[(2y)^2+x^2-(2y)(x)(2)\cos \theta = n^2\]Adding yields that: \[5x^2+5y^2 - 8xy\cos \theta = m^2 + n^2\]However, note that $(2m)^2 + (2n)^2 = 60^2 \Longleftrightarrow m^2+n^2 = 30^2$. Therefore, \[5x^2+5y^2 - 8xy\cos \theta = 30^2\]We also know that by the Law of Cosines on $\triangle CGB$, \[CG^2 + GB^2 - 2CG \cdot GB \cdot \cos (180 - \theta) = CB^2 \Longleftrightarrow\]\[(2x)^2 + (2y)^2 + 2(2x)(2y) \cos \theta = 60^2 \Longleftrightarrow\]\[x^2+y^2+2xy \cos \theta = 30^2 \Longleftrightarrow\]\[5x^2+5y^2 + 10xy \cos \theta = 30^2 \cdot 5\]Subtracting this from the $5x^2+5y^2 - 8xy\cos \theta = 30^2$ we got earlier yields that: \[xy \cos \theta = 200\]but recall that $\cos \theta = \frac{3}{\sqrt{10}}$ to get that: \[xy = \frac{200 \sqrt{10}}{3}\]Plugging this into the $x^2 + y^2 + 2xy \cos \theta = 30^2$, we get that: \[x^2 + y^2 = 500\]Aha! How convenient. Recall that $(2x)^2 + y^2 - (2x)(y)(2)\cos \theta = m^2$ and $(2y)^2+x^2-(2y)(x)(2)\cos \theta = n^2$. Then, we clearly have that: \[m^2n^2 = ((2x)^2 + y^2 - (2x)(y)(2)\cos \theta)((2y)^2+x^2-(2y)(x)(2)\cos \theta = n^2) \Longleftrightarrow\]\[m^2n^2 = 17x^2y^2 - 4xy \cos \theta (5x^2 + 5y^2) + 16x^2y^2 \cos ^2 \theta + 4x^4 + 4y^4 \Longleftrightarrow\]\[m^2n^2 = 17 \cdot \frac{200^2 \cdot 10}{9} - 800(5 \cdot 500) + 16 \cdot 200^2 + 4 \left( (x^2+y^2)^2-2x^2y^2\right) \Longleftrightarrow\]\[\frac{m^2n^2}{100^2} = \frac{680}{9} - 8 \cdot 5 \cdot 5 + 16 \cdot 2^2 + 4 \left( 5^2 - 2 \cdot \frac{2^2 \cdot 10}{9}\right) \Longleftrightarrow\]\[\frac{m^2n^2}{100^2} = 4\]But note that the area of our triangle is $2m \cdot 2n \cdot \frac {1}{2} = 2mn$. As $mn = 200$, we get a final answer of $\boxed{400}$. ~AopsUser101
// Block 1 import graph; size(150); Label f; f.p=fontsize(6); xaxis(-8,8,Ticks(f, 2.0)); yaxis(-8,8,Ticks(f, 2.0)); real f(real x) { return (x + 3); } real g( real x){ return (2x + 4); } draw(graph(f,-8,5),red+linewidth(1)); draw(graph(g,-6,2),blue+linewidth(1)); // Block 2 import graph; size(4cm); real labelscalefactor = 0.5; /* changes label-to-point distance */ pen dps = linewidth(0.7) + fontsize(10); defaultpen(dps); /* default pen style */ pen dotstyle = black; /* point style */ real xmin = -5.96, xmax = 24.22, ymin = -10.06, ymax = 14.62; /* image dimensions */ pen wrwrwr = rgb(0.3803921568627451,0.3803921568627451,0.3803921568627451); draw(arc((2,2.6666666666666665),0.6,290.55604521958344,326.3099324740202)--(2,2.6666666666666665)--cycle, linewidth(1)); draw((0,8)--(0,0), linewidth(1) + wrwrwr); draw((0,0)--(6,0), linewidth(1) + wrwrwr); draw((6,0)--(0,8), linewidth(1) + wrwrwr); draw((0,8)--(3,0), linewidth(1) + wrwrwr); draw((0,4)--(6,0), linewidth(1) + wrwrwr); dot((0,0),dotstyle); label("$A$", (0.08,0.2), NE * labelscalefactor); dot((6,0),dotstyle); label("$B$", (6.08,0.2), NE * labelscalefactor); dot((0,8),dotstyle); label("$C$", (0.08,8.2), NE * labelscalefactor); dot((3,0),linewidth(4pt) + dotstyle); label("$D$", (3.08,0.16), NE * labelscalefactor); dot((0,4),linewidth(4pt) + dotstyle); label("$E$", (0.08,4.16), NE * labelscalefactor); label("theta ", (2.14,2.3), NE * labelscalefactor); clip((xmin,ymin)--(xmin,ymax)--(xmax,ymax)--(xmax,ymin)--cycle); // Block 3 import graph; size(150); Label f; f.p=fontsize(6); xaxis(-8,8,Ticks(f, 2.0)); yaxis(-8,8,Ticks(f, 2.0)); real f(real x) { return (x + 3); } real g( real x){ return (2x + 4); } draw(graph(f,-8,5),red+linewidth(1)); draw(graph(g,-6,2),blue+linewidth(1)); // Block 4 import graph; size(4cm); real labelscalefactor = 0.5; /* changes label-to-point distance */ pen dps = linewidth(0.7) + fontsize(10); defaultpen(dps); /* default pen style */ pen dotstyle = black; /* point style */ real xmin = -5.96, xmax = 24.22, ymin = -10.06, ymax = 14.62; /* image dimensions */ pen wrwrwr = rgb(0.3803921568627451,0.3803921568627451,0.3803921568627451); draw(arc((2,2.6666666666666665),0.6,290.55604521958344,326.3099324740202)--(2,2.6666666666666665)--cycle, linewidth(1)); draw((0,8)--(0,0), linewidth(1) + wrwrwr); draw((0,0)--(6,0), linewidth(1) + wrwrwr); draw((6,0)--(0,8), linewidth(1) + wrwrwr); draw((0,8)--(3,0), linewidth(1) + wrwrwr); draw((0,4)--(6,0), linewidth(1) + wrwrwr); dot((0,0),dotstyle); label("$A$", (0.08,0.2), NE * labelscalefactor); dot((6,0),dotstyle); label("$B$", (6.08,0.2), NE * labelscalefactor); dot((0,8),dotstyle); label("$C$", (0.08,8.2), NE * labelscalefactor); dot((3,0),linewidth(4pt) + dotstyle); label("$D$", (3.08,0.16), NE * labelscalefactor); dot((0,4),linewidth(4pt) + dotstyle); label("$E$", (0.08,4.16), NE * labelscalefactor); label("theta ", (2.14,2.3), NE * labelscalefactor); clip((xmin,ymin)--(xmin,ymax)--(xmax,ymax)--(xmax,ymin)--cycle);
[]
58
Two skaters, Allie and Billie, are at points $A$ and $B$, respectively, on a flat, frozen lake. The distance between $A$ and $B$ is $100$ meters. Allie leaves $A$ and skates at a speed of $8$ meters per second on a straight line that makes a $60^\circ$ angle with $AB$. At the same time Allie leaves $A$, Billie leaves $B$ at a speed of $7$ meters per second and follows the straight path that produces the earliest possible meeting of the two skaters, given their speeds. How many meters does Allie skate before meeting Billie?
1989 AIME Problem 6
Label the point of intersection as $C$. Since $d = rt$, $AC = 8t$ and $BC = 7t$. According to the law of cosines, \begin{align*}(7t)^2 &= (8t)^2 + 100^2 - 2 \cdot 8t \cdot 100 \cdot \cos 60^\circ\\ 0 &= 15t^2 - 800t + 10000 = 3t^2 - 160t + 2000\\ t &= \frac{160 \pm \sqrt{160^2 - 4\cdot 3 \cdot 2000}}{6} = 20, \frac{100}{3}.\end{align*} Since we are looking for the earliest possible intersection, $20$ seconds are needed. Thus, $8 \cdot 20 = \boxed{160}$ meters is the solution. Alternatively, we can drop an altitude from $C$ and arrive at the same answer.
// Block 1 pointpen=black; pathpen=black+linewidth(0.7); pair A=(0,0),B=(10,0),C=16*expi(pi/3); D(B--A); D(A--C); D(B--C,dashed); MP("A",A,SW);MP("B",B,SE);MP("C",C,N);MP("60^{\circ}",A+(0.3,0),NE);MP("100",(A+B)/2);MP("8t",(A+C)/2,NW);MP("7t",(B+C)/2,NE); // Block 2 pointpen=black; pathpen=black+linewidth(0.7); pair A=(0,0),B=(10,0),C=16*expi(pi/3); D(B--A); D(A--C); D(B--C,dashed); MP("A",A,SW);MP("B",B,SE);MP("C",C,N);MP("60^{\circ}",A+(0.3,0),NE);MP("100",(A+B)/2);MP("8t",(A+C)/2,NW);MP("7t",(B+C)/2,NE);
[]
58
Two skaters, Allie and Billie, are at points $A$ and $B$, respectively, on a flat, frozen lake. The distance between $A$ and $B$ is $100$ meters. Allie leaves $A$ and skates at a speed of $8$ meters per second on a straight line that makes a $60^\circ$ angle with $AB$. At the same time Allie leaves $A$, Billie leaves $B$ at a speed of $7$ meters per second and follows the straight path that produces the earliest possible meeting of the two skaters, given their speeds. How many meters does Allie skate before meeting Billie?
1989 AIME Problem 6
Let $P$ be the point of intersection between the skaters, Allie and Billie. We can draw a line that goes through $P$ and is parallel to $\overline{AB}$. Letting this line be the $x$-axis, we can reflect $B$ over the $x$-axis to get $B'$. As reflections preserve length, $B'X = XB$. We then draw lines $BB'$ and $PB'$. We can let the foot of the perpendicular from $P$ to $BB'$ be $X$, and we can let the foot of the perpendicular from $P$ to $AB$ be $Y$. In doing so, we have constructed rectangle $PXBY$. By $d=rt$, we have $AP = 8t$ and $PB = PB' = 7t$, where $t$ is the number of seconds it takes the skaters to meet. Furthermore, we have $30-60-90$ triangle $PAY$, so $AY = 4t$, and $PY = 4t\sqrt{3}$. Since we have $PY = XB = B'X$, $B'X = 4t\sqrt{3}$. By Pythagoras, $PX = t$. As $PXBY$ is a rectangle, $PX = YB$. Thus $AY + YB = AB \Rightarrow AY + PX = AB$, so we get $4t + t = 100$. Solving for $t$, we find $t = 20$. Our answer, $AP$, is equivalent to $8t$. Thus, $AP = 8 \cdot 20 = \boxed{160}$.
// Block 1 draw((0,0)--(11,0)--(7,14)--cycle); draw((7,14)--(11,28)); draw((11,28)--(11,0)); label("$A$",(-1,-1),N); label("$B$",(12,-1),N); label("$P$",(6,15),N); label("$B'$",(12,29),N); draw((-10,14)--(20,14)); label("$X$",(12.5,15),N); draw((7,0)--(7,14),dashed); label("$Y$",(7,-4),N); draw((6,0)--(6,1)); draw((6,1)--(7,1)); draw((11,13)--(10,13)); draw((10,13)--(10,14)); label("$60^{\circ}$",(4,0.5),N); // Block 2 draw((0,0)--(11,0)--(7,14)--cycle); draw((7,14)--(11,28)); draw((11,28)--(11,0)); label("$A$",(-1,-1),N); label("$B$",(12,-1),N); label("$P$",(6,15),N); label("$B'$",(12,29),N); draw((-10,14)--(20,14)); label("$X$",(12.5,15),N); draw((7,0)--(7,14),dashed); label("$Y$",(7,-4),N); draw((6,0)--(6,1)); draw((6,1)--(7,1)); draw((11,13)--(10,13)); draw((10,13)--(10,14)); label("$60^{\circ}$",(4,0.5),N);
[]
58
Two skaters, Allie and Billie, are at points $A$ and $B$, respectively, on a flat, frozen lake. The distance between $A$ and $B$ is $100$ meters. Allie leaves $A$ and skates at a speed of $8$ meters per second on a straight line that makes a $60^\circ$ angle with $AB$. At the same time Allie leaves $A$, Billie leaves $B$ at a speed of $7$ meters per second and follows the straight path that produces the earliest possible meeting of the two skaters, given their speeds. How many meters does Allie skate before meeting Billie?
1989 AIME Problem 6
We can define $x$ to be the time elapsed since both Allie and Billie moved away from points $A$ and $B$ respectfully. Also, set the point of intersection to be $M$. Then we can produce the following diagram: Now, if we drop an altitude from point$M$, we get : We know this from the $30-60-90$ triangle that is formed. From this we get that: \[(7x)^2 = (4 \sqrt{3} x)^2 + (100-4x)^2\] \[\Longrightarrow 49x^2 - 48x^2 = x^2 = (100-4x)^2\] \[\Longrightarrow 0=(100-4x)^2 - x^2 = (100-3x)(100-5x)\]. Therefore, we get that $x = \frac{100}{3}$ or $x = 20$. Since $20< \frac{100}{3}$, we have that $x=20$ (since the problem asks for the quickest possible meeting point), so the distance Allie travels before meeting Billie would be $8 \cdot x = 8 \cdot 20 = \boxed{160}$ meters. ~qwertysri987
// Block 1 draw((0,0)--(100,0)--(80,139)--cycle); label("8x",(0,0)--(80,139),NW); label("7x",(100,0)--(80,139),NE); label("100",(0,0)--(100,0),S); dot((0,0)); label("A",(0,0),S); dot((100,0)); label("B",(100,0),S); dot((80,139)); label("M",(80,139),N); // Block 2 size(300); draw((0,0)--(100,0)--(80,139)--cycle); label("8x",(0,0)--(80,139),NW); label("7x",(100,0)--(80,139),NE); dot((0,0)); label("A",(0,0),S); dot((100,0)); label("B",(100,0),SE); dot((80,139)); label("M",(80,139),N); draw((80,139)--(80,0),dashed); label("4x",(0,0)--(80,0),S); label("100-4x",(80,0)--(100,0),S); label("$4x \sqrt{3}$",(80,139)--(80,0),W); label("$60^{\circ}$", (3,1), NE); // Block 3 draw((0,0)--(100,0)--(80,139)--cycle); label("8x",(0,0)--(80,139),NW); label("7x",(100,0)--(80,139),NE); label("100",(0,0)--(100,0),S); dot((0,0)); label("A",(0,0),S); dot((100,0)); label("B",(100,0),S); dot((80,139)); label("M",(80,139),N); // Block 4 size(300); draw((0,0)--(100,0)--(80,139)--cycle); label("8x",(0,0)--(80,139),NW); label("7x",(100,0)--(80,139),NE); dot((0,0)); label("A",(0,0),S); dot((100,0)); label("B",(100,0),SE); dot((80,139)); label("M",(80,139),N); draw((80,139)--(80,0),dashed); label("4x",(0,0)--(80,0),S); label("100-4x",(80,0)--(100,0),S); label("$4x \sqrt{3}$",(80,139)--(80,0),W); label("$60^{\circ}$", (3,1), NE);
[]
58
Two skaters, Allie and Billie, are at points $A$ and $B$, respectively, on a flat, frozen lake. The distance between $A$ and $B$ is $100$ meters. Allie leaves $A$ and skates at a speed of $8$ meters per second on a straight line that makes a $60^\circ$ angle with $AB$. At the same time Allie leaves $A$, Billie leaves $B$ at a speed of $7$ meters per second and follows the straight path that produces the earliest possible meeting of the two skaters, given their speeds. How many meters does Allie skate before meeting Billie?
1989 AIME Problem 6
Drop the altitude from $M$ to $AB$, and call it $P$. $\triangle AMP$ is a $30-60-90$ triangle, so $AP = 4t$ and $MP = 4\sqrt{3}t$, and by the Pythagorean theorem on $\triangle MPB$, $PB = t$. $AP + BP = AB$, so $t=20$. Therefore, $8t = \boxed{160}$. ~~Disphenoid_lover
// Block 1 draw((0,0)--(100,0)--(80,139)--cycle); label("8x",(0,0)--(80,139),NW); label("7x",(100,0)--(80,139),NE); label("100",(0,0)--(100,0),S); dot((0,0)); label("A",(0,0),S); dot((100,0)); label("B",(100,0),S); dot((80,139)); label("M",(80,139),N); draw((80,139)--(80,0),dashed); // Altitude MP label("$P$",(80,0),S); // Label for point P draw(rightanglemark((80,0),(80,139),(100,0))); // Right angle mark // Block 2 draw((0,0)--(100,0)--(80,139)--cycle); label("8x",(0,0)--(80,139),NW); label("7x",(100,0)--(80,139),NE); label("100",(0,0)--(100,0),S); dot((0,0)); label("A",(0,0),S); dot((100,0)); label("B",(100,0),S); dot((80,139)); label("M",(80,139),N); draw((80,139)--(80,0),dashed); // Altitude MP label("$P$",(80,0),S); // Label for point P draw(rightanglemark((80,0),(80,139),(100,0))); // Right angle mark
[]
59
Assume that $x_1,x_2,\ldots,x_7$ are real numbers such that \begin{align*} x_1 + 4x_2 + 9x_3 + 16x_4 + 25x_5 + 36x_6 + 49x_7 &= 1, \\ 4x_1 + 9x_2 + 16x_3 + 25x_4 + 36x_5 + 49x_6 + 64x_7 &= 12, \\ 9x_1 + 16x_2 + 25x_3 + 36x_4 + 49x_5 + 64x_6 + 81x_7 &= 123. \end{align*} Find the value of $16x_1+25x_2+36x_3+49x_4+64x_5+81x_6+100x_7$.
1989 AIME Problem 8
Note that the second differences of all quadratic sequences must be constant (but nonzero). One example is the following sequence of perfect squares: Label equations $(1),(2),(3),$ and $(4)$ as Solution 2 does. Since the coefficients of $x_1,x_2,x_3,x_4,x_5,x_6,x_7,$ or $(1,4,9,16),(4,9,16,25),(9,16,25,36),(16,25,36,49),(25,36,49,64),(36,49,64,81),(49,64,81,100),$ respectively, all form quadratic sequences with second differences $2,$ we conclude that the second differences of equations $(1),(2),(3),(4)$ must be constant. It follows that the second differences of $(1,12,123,S)$ must be constant, as shown below: Finally, we have $d_2=100,$ from which \begin{align*} S&=123+d_1 \\ &=123+(111+d_2) \\ &=\boxed{334}. \end{align*} ~MRENTHUSIASM
// Block 1 /* Made by MRENTHUSIASM */ size(20cm); for (real i=1; i<=10; ++i) { label("\boldmath{$"+string(i^2)+"$}",(i-1,0)); } for (real i=1; i<=9; ++i) { label("$"+string(1+2*i)+"$",(i-0.5,-0.75)); } for (real i=1; i<=8; ++i) { label("$2$",(i,-1.5)); } for (real i=1; i<=9; ++i) { draw((0.1+(i-1),-0.15)--(0.4+(i-1),-0.6),red); } for (real i=1; i<=8; ++i) { draw((0.6+(i-1),-0.9)--(0.9+(i-1),-1.35),red); } for (real i=1; i<=9; ++i) { draw((0.6+(i-1),-0.6)--(0.9+(i-1),-0.15),red); } for (real i=1; i<=8; ++i) { draw((0.1+i,-1.35)--(0.4+i,-0.9),red); } label("\textbf{First Differences}",(-0.75,-0.75),align=W); label("\textbf{Second Differences}",(-0.75,-1.5),align=W); // Block 2 /* Made by MRENTHUSIASM */ size(10cm); label("\boldmath{$1$}",(0,0)); label("\boldmath{$12$}",(1,0)); label("\boldmath{$123$}",(2,0)); label("\boldmath{$S$}",(3,0)); label("$11$",(0.5,-0.75)); label("$111$",(1.5,-0.75)); label("$d_1$",(2.5,-0.75)); label("$100$",(1,-1.5)); label("$d_2$",(2,-1.5)); for (real i=1; i<=3; ++i) { draw((0.1+(i-1),-0.15)--(0.4+(i-1),-0.6),red); } for (real i=1; i<=2; ++i) { draw((0.6+(i-1),-0.9)--(0.9+(i-1),-1.35),red); } for (real i=1; i<=3; ++i) { draw((0.6+(i-1),-0.6)--(0.9+(i-1),-0.15),red); } for (real i=1; i<=2; ++i) { draw((0.1+i,-1.35)--(0.4+i,-0.9),red); } label("\textbf{First Differences}",(-0.75,-0.75),align=W); label("\textbf{Second Differences}",(-0.75,-1.5),align=W); // Block 3 /* Made by MRENTHUSIASM */ size(20cm); for (real i=1; i<=10; ++i) { label("\boldmath{$"+string(i^2)+"$}",(i-1,0)); } for (real i=1; i<=9; ++i) { label("$"+string(1+2*i)+"$",(i-0.5,-0.75)); } for (real i=1; i<=8; ++i) { label("$2$",(i,-1.5)); } for (real i=1; i<=9; ++i) { draw((0.1+(i-1),-0.15)--(0.4+(i-1),-0.6),red); } for (real i=1; i<=8; ++i) { draw((0.6+(i-1),-0.9)--(0.9+(i-1),-1.35),red); } for (real i=1; i<=9; ++i) { draw((0.6+(i-1),-0.6)--(0.9+(i-1),-0.15),red); } for (real i=1; i<=8; ++i) { draw((0.1+i,-1.35)--(0.4+i,-0.9),red); } label("\textbf{First Differences}",(-0.75,-0.75),align=W); label("\textbf{Second Differences}",(-0.75,-1.5),align=W); // Block 4 /* Made by MRENTHUSIASM */ size(10cm); label("\boldmath{$1$}",(0,0)); label("\boldmath{$12$}",(1,0)); label("\boldmath{$123$}",(2,0)); label("\boldmath{$S$}",(3,0)); label("$11$",(0.5,-0.75)); label("$111$",(1.5,-0.75)); label("$d_1$",(2.5,-0.75)); label("$100$",(1,-1.5)); label("$d_2$",(2,-1.5)); for (real i=1; i<=3; ++i) { draw((0.1+(i-1),-0.15)--(0.4+(i-1),-0.6),red); } for (real i=1; i<=2; ++i) { draw((0.6+(i-1),-0.9)--(0.9+(i-1),-1.35),red); } for (real i=1; i<=3; ++i) { draw((0.6+(i-1),-0.6)--(0.9+(i-1),-0.15),red); } for (real i=1; i<=2; ++i) { draw((0.1+i,-1.35)--(0.4+i,-0.9),red); } label("\textbf{First Differences}",(-0.75,-0.75),align=W); label("\textbf{Second Differences}",(-0.75,-1.5),align=W);
[]
60
Let $a$, $b$, $c$ be the three sides of a triangle, and let $\alpha$, $\beta$, $\gamma$, be the angles opposite them. If $a^2+b^2=1989c^2$, find $\frac{\cot \gamma}{\cot \alpha+\cot \beta}$ Contents 1 Problem 2 Solution 2.1 Solution 1 2.2 Solution 2 2.3 Solution 3 2.4 Solution 4 2.5 Solution 5 2.6 Solution 6 2.7 Solution 7 2.8 Solution 8 (Quick and Easy) 2.9 Solution 9 (Quick and Easy), similar idea to Solution 8 3 See also
1989 AIME Problem 10
Solution 1 We draw the altitude $h$ to $c$, to get two right triangles. Then $\cot{\alpha}+\cot{\beta}=\frac{c}{h}$, from the definition of the cotangent. Let $K$ be the area of $\triangle ABC.$ Then $h=\frac{2K}{c}$, so $\cot{\alpha}+\cot{\beta}=\frac{c^2}{2K}$. By identical logic, we can find similar expressions for the sums of the other two cotangents: \begin{align*} \cot \alpha + \cot \beta &= \frac{c^2}{2K} \\ \cot \beta + \cot \gamma &= \frac{a^2}{2K} \\ \cot \gamma + \cot \alpha &= \frac{b^2}{2K}. \end{align*} Adding the last two equations, subtracting the first, and dividing by 2, we get \[\cot \gamma = \frac{a^2 + b^2 - c^2}{4K}.\] Therefore \begin{align*} \frac{\cot \gamma}{\cot \alpha + \cot \beta} &= \frac{(a^2 + b^2 - c^2)/(4K)}{c^2/(2K)} \\ &= \frac{a^2 + b^2 - c^2}{2c^2} \\ &= \frac{1989 c^2 - c^2}{2c^2} \\ &= \frac{1988}{2} = \boxed{994}. \end{align*} Solution 2 By the law of cosines, \[\cos \gamma = \frac{a^2 + b^2 - c^2}{2ab}.\] So, by the extended law of sines, \[\cot \gamma = \frac{\cos \gamma}{\sin \gamma} = \frac{a^2 + b^2 - c^2}{2ab} \cdot \frac{2R}{c} = \frac{R}{abc} (a^2 + b^2 - c^2).\] Identical logic works for the other two angles in the triangle. So, the cotangent of any angle in the triangle is directly proportional to the sum of the squares of the two adjacent sides, minus the square of the opposite side. Therefore \[\frac{\cot \gamma}{\cot \alpha + \cot \beta} = \frac{a^2 + b^2 - c^2}{(-a^2 + b^2 + c^2) + (a^2 - b^2 + c^2)} = \frac{a^2 + b^2 - c^2}{2c^2}.\] We can then finish as in solution 1. Solution 3 We start as in solution 1, though we'll write $A$ instead of $K$ for the area. Now we evaluate the numerator: \[\cot{\gamma}=\frac{\cos{\gamma}}{\sin{\gamma}}\] From the Law of Cosines and the sine area formula, \begin{align*}\cos{\gamma}&=\frac{1988c^2}{2ab}\\ \sin{\gamma}&= \frac{2A}{ab}\\ \cot{\gamma}&= \frac{\cos \gamma}{\sin \gamma} = \frac{1988c^2}{4A} \end{align*} Then $\frac{\cot \gamma}{\cot \alpha+\cot \beta}=\frac{\frac{1988c^2}{4A}}{\frac{c^2}{2A}}=\frac{1988}{2}=\boxed{994}$. Solution 4 \begin{align*} \cot{\alpha} + \cot{\beta} &= \frac {\cos{\alpha}}{\sin{\alpha}} + \frac {\cos{\beta}}{\sin{\beta}} = \frac {\sin{\alpha}\cos{\beta} + \cos{\alpha}\sin{\beta}}{\sin{\alpha}\sin{\beta}}\\ &= \frac {\sin{(\alpha + \beta)}}{\sin{\alpha}\sin{\beta}} = \frac {\sin{\gamma}}{\sin{\alpha}\sin{\beta}} \end{align*} By the Law of Cosines, \[a^2 + b^2 - 2ab\cos{\gamma} = c^2 = 1989c^2 - 2ab\cos{\gamma} \implies ab\cos{\gamma} = 994c^2\] Now \begin{align*}\frac {\cot{\gamma}}{\cot{\alpha} + \cot{\beta}} &= \frac {\cot{\gamma}\sin{\alpha}\sin{\beta}}{\sin{\gamma}} = \frac {\cos{\gamma}\sin{\alpha}\sin{\beta}}{\sin^2{\gamma}} = \frac {ab}{c^2}\cos{\gamma} = \frac {ab}{c^2} \cdot \frac {994c^2}{ab}\\ &= \boxed{994}\end{align*} Solution 5 Use Law of cosines to give us $c^2=a^2+b^2-2ab\cos(\gamma)$ or therefore $\cos(\gamma)=\frac{994c^2}{ab}$. Next, we are going to put all the sin's in term of $\sin(a)$. We get $\sin(\gamma)=\frac{c\sin(a)}{a}$. Therefore, we get $\cot(\gamma)=\frac{994c}{b\sin a}$. Next, use Law of Cosines to give us $b^2=a^2+c^2-2ac\cos(\beta)$. Therefore, $\cos(\beta)=\frac{a^2-994c^2}{ac}$. Also, $\sin(\beta)=\frac{b\sin(a)}{a}$. Hence, $\cot(\beta)=\frac{a^2-994c^2}{bc\sin(a)}$. Lastly, $\cos(\alpha)=\frac{b^2-994c^2}{bc}$. Therefore, we get $\cot(\alpha)=\frac{b^2-994c^2}{bc\sin(a)}$. Now, $\frac{\cot(\gamma)}{\cot(\beta)+\cot(\alpha)}=\frac{\frac{994c}{b\sin a}}{\frac{a^2-994c^2+b^2-994c^2}{bc\sin(a)}}$. After using $a^2+b^2=1989c^2$, we get $\frac{994c*bc\sin a}{c^2b\sin a}=\boxed{994}$. Solution 6 Let $\gamma$ be $(180-\alpha-\beta)$ $\frac{\cot \gamma}{\cot \alpha+\cot \beta} = \frac{\frac{-\tan \alpha \tan \beta}{\tan(\alpha+\beta)}}{\tan \alpha + \tan \beta} = \frac{(\tan \alpha \tan \beta)^2-\tan \alpha \tan \beta}{\tan^2 \alpha + 2\tan \alpha \tan \beta +\tan^2 \beta}$ WLOG, assume that $a$ and $c$ are legs of right triangle $abc$ with $\beta = 90^o$ and $c=1$ By the Pythagorean theorem, we have $b^2=a^2+1$, and the given $a^2+b^2=1989$. Solving the equations gives us $a=\sqrt{994}$ and $b=\sqrt{995}$. We see that $\tan \beta = \infty$, and $\tan \alpha = \sqrt{994}$. Our derived equation equals $\tan^2 \alpha$ as $\tan \beta$ approaches infinity. Evaluating $\tan^2 \alpha$, we get $\boxed{994}$. Solution 7 As in Solution 1, drop an altitude $h$ to $c$. Let $h$ meet $c$ at $P$, and let $AP = x, BP = y$. Then, $\cot{\alpha} = \frac{1}{\tan{\alpha}} = \frac{x}{h}$, $\cot{\beta} = \frac{1}{\tan{\beta}} = \frac{y}{h}$. We can calculate $\cot{\gamma}$ using the tangent addition formula, after noticing that $\cot{\gamma} = \frac{1}{\tan{\gamma}}$. So, we find that \begin{align*} \cot{\gamma} &= \frac{1}{\tan{\gamma}} \\ &= \frac{1}{\frac{\frac{x}{h} + \frac{y}{h}}{1 - \frac{xy}{h^2}}} \\ &= \frac{1}{\frac{(x+y)h}{h^2 - xy}} \\ &= \frac{h^2 - xy}{(x+y)h}. \end{align*} So now we can simplify our original expression: \begin{align*} \frac{\cot{\gamma}}{\cot{\alpha} + \cot{\beta}} &= \frac{\frac{h^2 - xy}{(x+y)h}}{\frac{x + y}{h}} \\ &= \frac{h^2 - xy}{(x+y)^2}. \end{align*} But notice that $x+y = c$, so this becomes \[\frac{h^2 - xy}{c^2}.\] Now note that we can use the Pythagorean theorem to calculate $h^2$, we get that \[h^2 = \frac{a^2 - y^2 + b^2 - x^2}{2}.\] So our expression simplifies to \[\frac{1989c^2 - (x+y)^2}{2c^2}\] since $a^2 + b^2 = 1989c^2$ from the problem and that there is another $-\frac{2xy}{2}$ after the $h^2$ in our expression. Again note that $x+y = c$, so it again simplifies to $\frac{1988c^2}{2c^2}$, or $\boxed{994}$. ~Yiyj1 Solution 8 (Quick and Easy) Since no additional information is given, we can assume that triangle ABC is right with the right angle at B. We can use the Pythagorean theorem to say \[c^2+a^2=b^2\] We can now solve for $a$ in terms of $c$ \[c^2+a^2=1989c^2-a^2\] \[a^2=994c^2\] \[a=\sqrt{994}c\] Using the definition of cotangent \[cot(A)=\frac{c}{a}=\frac{1}{\sqrt{994}}\] \[cot(B)=cot(90)=0\] \[cot(C)=\frac{a}{c}=\sqrt{994}\] Plugging into our desired expression, we get $\boxed{994}$ ~ms0001 Solution 9 (Quick and Easy), similar idea to Solution 8 Assume the triangle is isosceles and $c=1$. Since $a=b$, $2a^2=1989$, $\rightarrow a=b=\sqrt{\frac{1989}{2}}$ Since this is an isosceles triangle, we can find $\cot(\alpha)$, $\cot(\beta)$, by just drawing the height. Via Pythagorean Theorem, the height is $\frac{\sqrt{3977}}{2}$. Therefore we find that $\tan(\alpha) = \tan(\beta) = \sqrt{3977}$. $\tan(\gamma) = \tan(180-(\alpha+\beta)) = -\tan(\alpha+\beta)$. Via tangent sum formula, $\tan(\alpha+\beta) = -\frac{\sqrt{3977}}{1988}$, so $\tan(\gamma) = \frac{\sqrt{3977}}{1988}$. Since $\cot(\theta) = \frac{1}{\tan(\theta)}$, $\cot(\alpha) = \frac{1}{\sqrt{3977}}$, $\cot(\beta) = \frac{1}{\sqrt{3977}}$, $\cot(\gamma) = \frac{1988}{\sqrt{3977}}$. Plugging this in, almost everything cancels and we get $\frac{1988}{2} = \boxed{994}$.
// Block 1 size(170); pair A = (0,0), B = (3, 0), C = (1, 4); pair P = .5*(C + reflect(A,B)*C); draw(A--B--C--cycle); draw(C--P, dotted); draw(rightanglemark(C,P, B, 4)); label("$A$", A, S); label("$B$", B, S); label("$C$", C, N); label("$a$", (B+C)/2, NE); label("$b$", (A+C)/2, NW); label("$c$", (A+B)/2, S); label("$h$", (C+P)/2, E); // Block 2 size(170); pair A = (0,0), B = (3,0), C = (1,4); pair P = .5*(C + reflect(A,B)*C); draw(A--B--C--cycle); draw(C--P, dotted); draw(rightanglemark(C,P, B , 4)); label("$A$", A, S); label("$B$", B, S); label("$C$", C, N); label("$P$", P, S); label("$x$", (A+P)/2, S); label("$y$", (B+P)/2, S); label("$a$", (B+C)/2, NE); label("$b$", (A+C)/2, NW); label("$c$", (A+B)/2, S); label("$h$", (C+P)/2, E);
[]
61
A triangle has vertices $P_{}^{}=(-8,5)$, $Q_{}^{}=(-15,-19)$, and $R_{}^{}=(1,-7)$. The equation of the bisector of $\angle P$ can be written in the form $ax+2y+c=0_{}^{}$. Find $a+c_{}^{}$. Contents 1 Problem 2 Solution 2.1 Solution 1 2.2 Solution 2 2.3 Solution 3 2.4 Solution 4 2.5 Solution 5 (Trigonometry) 3 See also
1990 AIME Problem 7
Use the distance formula to determine the lengths of each of the sides of the triangle. We find that it has lengths of side $15,\ 20,\ 25$, indicating that it is a $3-4-5$ right triangle. At this point, we just need to find another point that lies on the bisector of $\angle P$. Solution 1 Use the angle bisector theorem to find that the angle bisector of $\angle P$ divides $QR$ into segments of length $\frac{25}{x} = \frac{15}{20 -x} \Longrightarrow x = \frac{25}{2},\ \frac{15}{2}$. It follows that $\frac{QP'}{RP'} = \frac{5}{3}$, and so $P' = \left(\frac{5x_R + 3x_Q}{8},\frac{5y_R + 3y_Q}{8}\right) = (-5,-23/2)$. The desired answer is the equation of the line $PP'$. $PP'$ has slope $\frac{-11}{2}$, from which we find the equation to be $11x + 2y + 78 = 0$. Therefore, $a+c = \boxed{089}$. Solution 2 Extend $PR$ to a point $S$ such that $PS = 25$. This forms an isosceles triangle $PQS$. The coordinates of $S$, using the slope of $PR$ (which is $-4/3$), can be determined to be $(7,-15)$. Since the angle bisector of $\angle P$ must touch the midpoint of $QS \Rightarrow (-4,-17)$, we have found our two points. We reach the same answer of $11x + 2y + 78 = 0$. Solution 3 By the angle bisector theorem as in solution 1, we find that $QP' = 25/2$. If we draw the right triangle formed by $Q, P',$ and the point directly to the right of $Q$ and below $P'$, we get another $3-4-5 \triangle$ (since the slope of $QR$ is $3/4$). Using this, we find that the horizontal projection of $QP'$ is $10$ and the vertical projection of $QP'$ is $15/2$. Thus, the angle bisector touches $QR$ at the point $\left(-15 + 10, -19 + \frac{15}{2}\right) = \left(-5,-\frac{23}{2}\right)$, from where we continue with the first solution. Solution 4 This solution uses terminology from the other solutions. The incenter is a much easier point to find on the line $PP'$. Note that the inradius of $\triangle PQR$ is $5$. If you do not understand this, substitute values into the $[\triangle ABC] = rs$ equation. If lines are drawn from the incenter perpendicular to $PR$ and $QR$, then a square with side length $5$ will be created. Call the point opposite $R$ in this square $R'$. Since $R$ has coordinates $(1, -7)$, and the sides of the squares are on a $3-4-5$ ratio, the coordinates of $R'$ are $(-6, -6)$. This is because the x-coordinate is moving to the left $4+3=7$ units and the y-coordinate is moving up $-3+4=1$ units. The line through $(-8,5)$ and $(-6,-6)$ is $11x+2y+78=0$. Solution 5 (Trigonometry) Transform triangle $PQR$ so that $P$ is at the origin. Note that the slopes do not change when we transform the triangle. We know that the slope of $PQ$ is $\frac{24}{7}$ and the slope of $PR$ is $-\frac{4}{3}$. Thus, in the complex plane, they are equivalent to $\tan(\alpha)=\frac{24}{7}$ and $\tan(\beta)=-\frac{4}{3}$, respectively. Here $\alpha$ is the angle formed by the $x$-axis and $PQ$, and $\beta$ is the angle formed by the $x$-axis and $PR$. The equation of the angle bisector is $\tan\left(\frac{\alpha+\beta}{2}\right)$. As the tangents are in very neat Pythagorean triples, we can easily calculate $\cos(\alpha)$ and $\cos(\beta)$. Angle $\alpha$ is in the third quadrant, so $\cos(\alpha)$ is negative. Thus $\cos(\alpha)=-\frac{7}{25}$. Angle $\beta$ is in the fourth quadrant, so $\cos(\beta)$ is positive. Thus $\cos(\beta)=\frac{3}{5}$. By the Half-Angle Identities, $\tan\left(\frac{\alpha}{2}\right)=\pm\sqrt{\frac{1-\cos(\alpha)}{1+\cos(\alpha)}}=\pm\sqrt{\frac{\frac{32}{25}}{\frac{18}{25}}}=\pm\sqrt{\frac{16}{9}}=\pm\frac{4}{3}$ and $\tan\left(\frac{\beta}{2}\right)=\pm\sqrt{\frac{1-\cos(\beta)}{1+\cos(\beta)}}=\pm\sqrt{\frac{\frac{2}{5}}{\frac{8}{5}}}=\pm\sqrt{\frac{1}{4}}=\pm\frac{1}{2}$. Since $\frac{\alpha}{2}$ and $\frac{\beta}{2}$ must be in the second quadrant, their tangent values are both negative. Thus $\tan\left(\frac{\alpha}{2}\right)=-\frac{4}{3}$ and $\tan\left(\frac{\beta}{2}\right)=-\frac{1}{2}$. By the sum of tangents formula, $\tan\left(\frac{\alpha}{2}+\frac{\beta}{2}\right)=\frac{\tan\left(\frac{\alpha}{2}\right)+\tan\left(\frac{\beta}{2}\right)}{1-\tan\left(\frac{\alpha}{2}\right)\tan\left(\frac{\beta}{2}\right)}=\frac{-\frac{11}{6}}{\frac{1}{3}}=-\frac{11}{2}$, which is the slope of the angle bisector. Finally, the equation of the angle bisector is $y-5=-\frac{11}{2}(x+8)$ or $y=-\frac{11}{2}x-39$. Rearranging, we get $11x+2y+78=0$, so our sum is $a+c=11+78=\boxed{089}$. ~eevee9406
// Block 1 import graph; pointpen=black;pathpen=black+linewidth(0.7);pen f = fontsize(10); pair P=(-8,5),Q=(-15,-19),R=(1,-7),S=(7,-15),T=(-4,-17),U=IP(P--T,Q--R); MP("P",P,N,f);MP("Q",Q,W,f);MP("R",R,E,f);MP("P'",U,SE,f); D(P--Q--R--cycle);D(U);D(P--U); D((-17,0)--(4,0),Arrows(2mm));D((0,-21)--(0,7),Arrows(2mm)); // Block 2 import graph; pointpen=black;pathpen=black+linewidth(0.7);pen f = fontsize(10); pair P=(-8,5),Q=(-15,-19),R=(1,-7),S=(7,-15),T=(-4,-17); MP("P",P,N,f);MP("Q",Q,W,f);MP("R",R,NE,f);MP("S",S,E,f); D(P--Q--R--cycle);D(R--S--Q,dashed);D(T);D(P--T); D((-17,0)--(4,0),Arrows(2mm));D((0,-21)--(0,7),Arrows(2mm)); // Block 3 import graph; pointpen=black;pathpen=black+linewidth(0.7);pen f = fontsize(10); pair P=(-8,5),Q=(-15,-19),R=(1,-7),S=(7,-15),T=(-4,-17),U=IP(P--T,Q--R); MP("P",P,N,f);MP("Q",Q,W,f);MP("R",R,E,f);MP("P'",U,SE,f); D(P--Q--R--cycle);D(U);D(P--U); D((-17,0)--(4,0),Arrows(2mm));D((0,-21)--(0,7),Arrows(2mm)); D(Q--(U.x,Q.y)--U,dashed);D(rightanglemark(Q,(U.x,Q.y),U,20),dashed); // Block 4 import graph; pointpen=black;pathpen=black+linewidth(0.7);pen f = fontsize(10); pair P=(0,0),Q=(-7,-24),R=(9,-12),S=(15,-20),T=(4,-22); MP("Q",Q,W,f);MP("R",R,E,f); D(P--Q--R--cycle);D(P--T,EndArrow(2mm)); D((-8,0)--(13,0),Arrows(2mm));D((0,-21)--(0,7),Arrows(2mm));
[]
62
The rectangle $ABCD^{}_{}$ below has dimensions $AB^{}_{} = 12 \sqrt{3}$ and $BC^{}_{} = 13 \sqrt{3}$. Diagonals $\overline{AC}$ and $\overline{BD}$ intersect at $P^{}_{}$. If triangle $ABP^{}_{}$ is cut out and removed, edges $\overline{AP}$ and $\overline{BP}$ are joined, and the figure is then creased along segments $\overline{CP}$ and $\overline{DP}$, we obtain a triangular pyramid, all four of whose faces are isosceles triangles. Find the volume of this pyramid. Contents 1 Problem 2 Solution 2.1 Solution 1(Synthetic) 2.2 Solution 2 2.3 Solution 3 (Law of Cosines) 3 See also
1990 AIME Problem 14
Solution 1(Synthetic) Our triangular pyramid has base $12\sqrt{3} - 13\sqrt{3} - 13\sqrt{3} \triangle$. The area of this isosceles triangle is easy to find by $[ACD] = \frac{1}{2}bh$, where we can find $h_{ACD}$ to be $\sqrt{399}$ by the Pythagorean Theorem. Thus $A = \frac 12(12\sqrt{3})\sqrt{399} = 18\sqrt{133}$. To find the volume, we want to use the equation $\frac 13Bh = 6\sqrt{133}h$, so we need to find the height of the tetrahedron. By the Pythagorean Theorem, $AP = CP = DP = \frac{\sqrt{939}}{2}$. If we let $P$ be the center of a sphere with radius $\frac{\sqrt{939}}{2}$, then $A,C,D$ lie on the sphere. The cross section of the sphere that contains $A,C,D$ is a circle, and the center of that circle is the foot of the perpendicular from the center of the sphere. Hence the foot of the height we want to find occurs at the circumcenter of $\triangle ACD$. From here we just need to perform some brutish calculations. Using the formula $A = 18\sqrt{133} = \frac{abc}{4R}$ (where $R$ is the circumradius), we find $R = \frac{12\sqrt{3} \cdot (13\sqrt{3})^2}{4\cdot 18\sqrt{133}} = \frac{13^2\sqrt{3}}{2\sqrt{133}}$ (there are slightly simpler ways to calculate $R$ since we have an isosceles triangle). By the Pythagorean Theorem, \begin{align*}h^2 &= PA^2 - R^2 \\ &= \left(\frac{\sqrt{939}}{2}\right)^2 - \left(\frac{13^2\sqrt{3}}{2\sqrt{133}}\right)^2\\ &= \frac{939 \cdot 133 - 13^4 \cdot 3}{4 \cdot 133} = \frac{13068 \cdot 3}{4 \cdot 133} = \frac{99^2}{133}\\ h &= \frac{99}{\sqrt{133}} \end{align*} Finally, we substitute $h$ into the volume equation to find $V = 6\sqrt{133}\left(\frac{99}{\sqrt{133}}\right) = \boxed{594}$. Solution 2 Let $\triangle{ABC}$ (or the triangle with sides $12\sqrt {3}$, $13\sqrt {3}$, $13\sqrt {3}$) be the base of our tetrahedron. We set points $C$ and $D$ as $(6\sqrt {3}, 0, 0)$ and $( - 6\sqrt {3}, 0, 0)$, respectively. Using Pythagoras, we find $A$ as $(0, \sqrt {399}, 0)$. We know that the vertex of the tetrahedron ($P$) has to be of the form $(x, y, z)$, where $z$ is the altitude of the tetrahedron. Since the distance from $P$ to points $A$, $B$, and $C$ is $\frac {\sqrt {939}}{2}$, we can write three equations using the distance formula: \begin{align*} x^{2} + (y - \sqrt {399})^{2} + z^{2} &= \frac {939}{4}\\ (x - 6\sqrt {3})^{2} + y^{2} + z^{2} &= \frac {939}{4}\\ (x + 6\sqrt {3})^{2} + y^{2} + z^{2} &= \frac {939}{4} \end{align*} Subtracting the last two equations, we get $x = 0$. Solving for $y,z$ with a bit of effort, we eventually get $x = 0$, $y = \frac {291}{2\sqrt {399}}$, $z = \frac {99}{\sqrt {133}}$. Since the area of a triangle is $\frac {1}{2}\cdot bh$, we have the base area as $18\sqrt {133}$. Thus, the volume is $V = \frac {1}{3}\cdot18\sqrt {133}\cdot\frac {99}{\sqrt {133}} = 6\cdot99 = 594$. Solution 3 (Law of Cosines) Let $X$ be the apex of the pyramid and $M$ be the midpoint of $\overline{CD}$. We find the side lengths of $\triangle XMP$. $MP = \frac{13\sqrt3}{2}$. $PX$ is half of $AC$, which is $\frac{\sqrt{3\cdot13^2+3\cdot12^2}}{2} = \frac{\sqrt{939}}{2}$. To find $MX$, consider right triangle $XMD$; since $XD=13\sqrt3$ and $MD=6\sqrt3$, we have $MX=\sqrt{3\cdot13^2-3\cdot6^2} = \sqrt{399}$. Let $\theta=\angle XPM$. For calculating trig, let us double all sides of $\triangle XMP$. By Law of Cosines, $\cos\theta = \frac{3\cdot13^2+939-4\cdot399}{2\cdot13\cdot3\sqrt{313}}=\frac{-150}{6\cdot13\sqrt{313}}=-\frac{25}{13\sqrt{313}}$. Hence, \[\sin\theta = \sqrt{1-\cos^2\theta}\] \[=\sqrt{1-\frac{625}{13^2\cdot313}}\] \[=\frac{\sqrt{13^2\cdot313-625}}{13\sqrt{313}}\] \[=\frac{\sqrt{3\cdot132^2}}{13\sqrt{313}}\] \[=\frac{132\sqrt3}{13\sqrt{313}}\] Thus, the height of the pyramid is $PX\sin\theta=\frac{\sqrt{939}}{2}\cdot\frac{132\sqrt3}{13\sqrt{313}}=\frac{66\cdot3}{13}$. Since $[CPD]=3\sqrt{3}\cdot13\sqrt{3}=9\cdot13$, the volume of the pyramid is $\frac13 \cdot 9\cdot13\cdot \frac{66\cdot3}{13}=\boxed{594}$.
// Block 1 import three; pointpen = black; pathpen = black+linewidth(0.7); pen small = fontsize(9); currentprojection = perspective(20,-20,12); triple O=(0,0,0); triple A=(0, 399^(0.5), 0); triple D=(108^(0.5), 0, 0); triple C=(-108^(0.5), 0, 0); triple Pa; pair Ci=circumcenter((A.x,A.y),(C.x,C.y),(D.x,D.y)); triple P=(Ci.x, Ci.y, (99/133)^.5); Pa=(P.x,P.y,0); draw(P--Pa--A); draw(C--Pa--D); draw((C+D)/2--A--C--D--P--C--P--A--D); label("A", A, NE); label("P", P, N); label("C", C); label("D", D, S); label("$13\sqrt{3}$", (A+D)/2, E, small); label("$13\sqrt{3}$", (A+C)/2, N, small); label("$12\sqrt{3}$", (C+D)/2, SW, small); // Block 2 size(280); import three; pointpen = black; pathpen = black+linewidth(0.7); pen small = fontsize(9); real h=169/2*(3/133)^.5; currentprojection = perspective(20,-20,12); triple O=(0,0,0); triple A=(0,399^.5,0); triple D=(108^.5,0,0); triple C=(-108^.5,0,0); pair Ci=circumcenter((A.x,A.y),(C.x,C.y),(D.x,D.y)); triple P=(Ci.x, Ci.y, 99/133^.5); triple Pa=(P.x,P.y,0); draw(A--C--D--P--C--P--A--D); draw(P--Pa--A); draw(C--Pa--D); draw(circle(Pa, h)); label("A", A, NE); label("C", C, NW); label("D", D, S); label("P",P , N); label("P$'$", Pa, SW); label("$13\sqrt{3}$", (A+D)/2, E, small); label("$13\sqrt{3}$", (A+C)/2, NW, small); label("$12\sqrt{3}$", (C+D)/2, SW, small); label("h", (P + Pa)/2, W); label("$\frac{\sqrt{939}}{2}$", (C+P)/2 ,NW);
[]
63
Rectangle $ABCD_{}^{}$ has sides $\overline {AB}$ of length 4 and $\overline {CB}$ of length 3. Divide $\overline {AB}$ into 168 congruent segments with points $A_{}^{}=P_0, P_1, \ldots, P_{168}=B$, and divide $\overline {CB}$ into 168 congruent segments with points $C_{}^{}=Q_0, Q_1, \ldots, Q_{168}=B$. For $1_{}^{} \le k \le 167$, draw the segments $\overline {P_kQ_k}$. Repeat this construction on the sides $\overline {AD}$ and $\overline {CD}$, and then draw the diagonal $\overline {AC}$. Find the sum of the lengths of the 335 parallel segments drawn.
1991 AIME Problem 2
The length of the diagonal is $\sqrt{3^2 + 4^2} = 5$ (a 3-4-5 right triangle). For each $k$, $\overline{P_kQ_k}$ is the hypotenuse of a $3-4-5$ right triangle with sides of $3 \cdot \frac{168-k}{168}, 4 \cdot \frac{168-k}{168}$. Thus, its length is $5 \cdot \frac{168-k}{168}$. Let $a_k=\frac{5(168-k)}{168}$. We want to find $2\sum\limits_{k=1}^{168} a_k-5$ since we are over counting the diagonal. $2\sum\limits_{k=1}^{168} \frac{5(168-k)}{168}-5 =2\frac{(0+5)\cdot169}{2}-5 =168\cdot5 =\boxed{840}$
// Block 1 real r = 0.35; size(220); pointpen=black;pathpen=black+linewidth(0.65);pen f = fontsize(8); pair A=(0,0),B=(4,0),C=(4,3),D=(0,3); D(A--B--C--D--cycle); pair P1=A+(r,0),P2=A+(2r,0),P3=B-(r,0),P4=B-(2r,0); pair Q1=C-(0,r),Q2=C-(0,2r),Q3=B+(0,r),Q4=B+(0,2r); D(A--C);D(P1--Q1);D(P2--Q2);D(P3--Q3);D(P4--Q4); MP("A",A,f);MP("B",B,SE,f);MP("C",C,NE,f);MP("D",D,W,f); MP("P_1",P1,f);MP("P_2",P2,f);MP("P_{167}",P3,f);MP("P_{166}",P4,f);MP("Q_1",Q1,E,f);MP("Q_2",Q2,E,f);MP("Q_{167}",Q3,E,f);MP("Q_{166}",Q4,E,f); MP("4",(A+B)/2,N,f);MP("\cdots",(A+B)/2,f); MP("3",(B+C)/2,W,f);MP("\vdots",(C+B)/2,E,f); // Block 2 real r = 0.35; size(220); pointpen=black;pathpen=black+linewidth(0.65);pen f = fontsize(8); pair A=(0,0),B=(4,0),C=(4,3),D=(0,3); D(A--B--C--D--cycle); pair P1=A+(r,0),P2=A+(2r,0),P3=B-(r,0),P4=B-(2r,0); pair Q1=C-(0,r),Q2=C-(0,2r),Q3=B+(0,r),Q4=B+(0,2r); D(A--C);D(P1--Q1);D(P2--Q2);D(P3--Q3);D(P4--Q4); MP("A",A,f);MP("B",B,SE,f);MP("C",C,NE,f);MP("D",D,W,f); MP("P_1",P1,f);MP("P_2",P2,f);MP("P_{167}",P3,f);MP("P_{166}",P4,f);MP("Q_1",Q1,E,f);MP("Q_2",Q2,E,f);MP("Q_{167}",Q3,E,f);MP("Q_{166}",Q4,E,f); MP("4",(A+B)/2,N,f);MP("\cdots",(A+B)/2,f); MP("3",(B+C)/2,W,f);MP("\vdots",(C+B)/2,E,f);
[]
64
Rhombus $PQRS^{}_{}$ is inscribed in rectangle $ABCD^{}_{}$ so that vertices $P^{}_{}$, $Q^{}_{}$, $R^{}_{}$, and $S^{}_{}$ are interior points on sides $\overline{AB}$, $\overline{BC}$, $\overline{CD}$, and $\overline{DA}$, respectively. It is given that $PB^{}_{}=15$, $BQ^{}_{}=20$, $PR^{}_{}=30$, and $QS^{}_{}=40$. Let $\frac{m}{n}$, in lowest terms, denote the perimeter of $ABCD^{}_{}$. Find $m+n^{}_{}$. Contents 1 Problem 2 Diagram 3 Solution 1 4 Solution 2 5 Solution 3 6 Solution 4 7 Solution 5 8 Solution 6 9 Solution 7 10 Solution 8 (Pythagorean Theorem Bash) 11 See also
1991 AIME Problem 12
Note that this is a modified version of the original diagram. By the Pythagorean theorem, the side length of the rhombus is $25$. Since a rhombus is a parallelogram, its diagonals bisect each other. Thus, $\triangle PBQ \cong \triangle RDS$ and $\triangle QCR \cong \triangle SAP$ by symmetry. Let $RC=x$ and $QC=y$. Applying the Pythagorean theorem to $\triangle QCR$, we obtain \[x^2+y^2=625.\] Next, draw a point $F$ such that $QF\perp AD$. Applying the Pythagorean theorem again gives \[(20-y)^2+(15+x)^2=1600.\] Expanding, \[y^2-40y+400+x^2+30x+225=1600.\] Substituting $x^2+y^2=625$ and combining constants yields \[30x-40y=350,\] which simplifies to \[3x=4y+35 \quad \Rightarrow \quad x=\frac{4y+35}{3}.\] Substituting this into $x^2+y^2=625$, we get \[\left(\frac{4y+35}{3}\right)^2+y^2=625.\] Multiplying through by $9$, \[25y^2+280y+1225=5625.\] Simplifying, \[5y^2+56y-880=0.\] Factoring, \[(5y-44)(y+20)=0.\] Since $y>0$, we have \[y=\frac{44}{5}.\] Substituting this into $x^2+y^2=625$, \[x^2+\frac{44^{2}}{25}=\frac{125^{2}}{25},\] so \[x^2=\frac{125^{2}-44^{2}}{25}=\frac{(125+44)(125-44)}{25}=\frac{169\cdot81}{25},\] giving \[x=\frac{117}{5}.\] Finally, the perimeter is \[2\left(20+15+\frac{44}{5}+\frac{117}{5}\right)=\frac{672}{5}.\] Since the problem asks for $m+n$, the answer is \(672+5=\boxed{677}.\) ~Voidling
// Block 1 defaultpen(fontsize(12)+linewidth(1.3)); pair A=(0,28.8), B=(38.4,28.8), C=(38.4,0), D=(0,0), O, P=(23.4,28.8), Q=(38.4,8.8), R=(15,0), S=(0,20); pair F=(0, Q.y); O=intersectionpoint(A--C,B--D); draw(A--B--C--D--cycle); draw(P--R..Q--S); draw(P--Q--R--S--cycle); draw(Q--F, dashed); draw(rightanglemark(Q,F,A, 2)); label("\(A\)",A,NW); label("\(B\)",B,NE); label("\(C\)",C,SE); label("\(D\)",D,SW); label("\(P\)",P,N); label("\(Q\)",Q,E); label("\(R\)",R,SW); label("\(S\)",S,W); label("\(F\)",F,W); label("\(15\)",B/2+P/2,N); label("\(20\)",B/2+Q/2,E); label("\(x\)",(R+C)/2, SE*1.5); label("\(y\)",(Q+C)/2, E); label("\(O\)",O,SW); // Block 2 defaultpen(fontsize(12)+linewidth(1.3)); pair A=(0,28.8), B=(38.4,28.8), C=(38.4,0), D=(0,0), O, P=(23.4,28.8), Q=(38.4,8.8), R=(15,0), S=(0,20); pair F=(0, Q.y); O=intersectionpoint(A--C,B--D); draw(A--B--C--D--cycle); draw(P--R..Q--S); draw(P--Q--R--S--cycle); draw(Q--F, dashed); draw(rightanglemark(Q,F,A, 2)); label("\(A\)",A,NW); label("\(B\)",B,NE); label("\(C\)",C,SE); label("\(D\)",D,SW); label("\(P\)",P,N); label("\(Q\)",Q,E); label("\(R\)",R,SW); label("\(S\)",S,W); label("\(F\)",F,W); label("\(15\)",B/2+P/2,N); label("\(20\)",B/2+Q/2,E); label("\(x\)",(R+C)/2, SE*1.5); label("\(y\)",(Q+C)/2, E); label("\(O\)",O,SW);
[]
65
A hexagon is inscribed in a circle. Five of the sides have length $81$ and the sixth, denoted by $\overline{AB}$, has length $31$. Find the sum of the lengths of the three diagonals that can be drawn from $A_{}^{}$.
1991 AIME Problem 14
Let $x=AC=BF$, $y=AD=BE$, and $z=AE=BD$. Ptolemy's Theorem on $ABCD$ gives $81y+31\cdot 81=xz$, and Ptolemy on $ACDF$ gives $x\cdot z+81^2=y^2$. Subtracting these equations give $y^2-81y-112\cdot 81=0$, and from this $y=144$. Ptolemy on $ADEF$ gives $81y+81^2=z^2$, and from this $z=135$. Finally, plugging back into the first equation gives $x=105$, so $x+y+z=105+144+135=\boxed{384}$.
// Block 1 defaultpen(fontsize(9)); pair A=expi(-pi/2-acos(475/486)), B=expi(-pi/2+acos(475/486)), C=expi(-pi/2+acos(475/486)+acos(7/18)), D=expi(-pi/2+acos(475/486)+2*acos(7/18)), E=expi(-pi/2+acos(475/486)+3*acos(7/18)), F=expi(-pi/2-acos(475/486)-acos(7/18)); draw(unitcircle);draw(A--B--C--D--E--F--A);draw(A--C..A--D..A--E); dot(A^^B^^C^^D^^E^^F); label("\(A\)",A,(-1,-1));label("\(B\)",B,(1,-1));label("\(C\)",C,(1,0)); label("\(D\)",D,(1,1));label("\(E\)",E,(-1,1));label("\(F\)",F,(-1,0)); label("31",A/2+B/2,(0.7,1));label("81",B/2+C/2,(0.45,-0.2)); label("81",C/2+D/2,(-1,-1));label("81",D/2+E/2,(0,-1)); label("81",E/2+F/2,(1,-1));label("81",F/2+A/2,(1,1)); label("\(x\)",A/2+C/2,(-1,1));label("\(y\)",A/2+D/2,(1,-1.5)); label("\(z\)",A/2+E/2,(1,0)); // Block 2 defaultpen(fontsize(9)); pair A=expi(-pi/2-acos(475/486)), B=expi(-pi/2+acos(475/486)), C=expi(-pi/2+acos(475/486)+acos(7/18)), D=expi(-pi/2+acos(475/486)+2*acos(7/18)), E=expi(-pi/2+acos(475/486)+3*acos(7/18)), F=expi(-pi/2-acos(475/486)-acos(7/18)); draw(unitcircle);draw(A--B--C--D--E--F--A);draw(A--C..A--D..A--E); dot(A^^B^^C^^D^^E^^F); label("\(A\)",A,(-1,-1));label("\(B\)",B,(1,-1));label("\(C\)",C,(1,0)); label("\(D\)",D,(1,1));label("\(E\)",E,(-1,1));label("\(F\)",F,(-1,0)); label("31",A/2+B/2,(0.7,1));label("81",B/2+C/2,(0.45,-0.2)); label("81",C/2+D/2,(-1,-1));label("81",D/2+E/2,(0,-1)); label("81",E/2+F/2,(1,-1));label("81",F/2+A/2,(1,1)); label("\(x\)",A/2+C/2,(-1,1));label("\(y\)",A/2+D/2,(1,-1.5)); label("\(z\)",A/2+E/2,(1,0));
[]
66
Jenny and Kenny are walking in the same direction, Kenny at 3 feet per second and Jenny at 1 foot per second, on parallel paths that are 200 feet apart. A tall circular building 100 feet in diameter is centered midway between the paths. At the instant when the building first blocks the line of sight between Jenny and Kenny, they are 200 feet apart. Let $t\,$ be the amount of time, in seconds, before Jenny and Kenny can see each other again. If $t\,$ is written as a fraction in lowest terms, what is the sum of the numerator and denominator? Contents 1 Problem 2 Solution 2.1 Solution 1 2.2 Solution 2 2.3 Solution 3 2.4 Solution 4 3 Solution 5 4 Solution 6 5 See also
1993 AIME Problem 13
Solution 1 Consider the unit cicle of radius 50. Assume that they start at points $(-50,100)$ and $(-50,-100).$ Then at time $t$, they end up at points $(-50+t,100)$ and $(-50+3t,-100).$ The equation of the line connecting these points and the equation of the circle are \begin{align}y&=-\frac{100}{t}x+200-\frac{5000}{t}\\50^2&=x^2+y^2\end{align}. When they see each other again, the line connecting the two points will be tangent to the circle at the point $(x,y).$ Since the radius is perpendicular to the tangent we get \[-\frac{x}{y}=-\frac{100}{t}\] or $xt=100y.$ Now substitute \[y= \frac{xt}{100}\] into $(2)$ and get \[x=\frac{5000}{\sqrt{100^2+t^2}}.\] Now substitute this and \[y=\frac{xt}{100}\] into $(1)$ and solve for $t$ to get \[t=\frac{160}{3}.\] Finally, the sum of the numerator and denominator is $160+3=\boxed{163}.$ Solution 2 Let $A$ and $B$ be Kenny's initial and final points respectively and define $C$ and $D$ similarly for Jenny. Let $O$ be the center of the building. Also, let $X$ be the intersection of $AC$ and $BD$. Finaly, let $P$ and $Q$ be the points of tangency of circle $O$ to $AC$ and $BD$ respectively. From the problem statement, $AB=3t$, and $CD=t$. Since $\Delta ABX \sim \Delta CDX$, $CX=AC\cdot\left(\frac{CD}{AB-CD}\right)=200\cdot\left(\frac{t}{3t-t}\right)=100$. Since $PC=100$, $PX=200$. So, $\tan(\angle OXP)=\frac{OP}{PX}=\frac{50}{200}=\frac{1}{4}$. Since circle $O$ is tangent to $BX$ and $AX$, $OX$ is the angle bisector of $\angle BXA$. Thus, $\tan(\angle BXA)=\tan(2\angle OXP)=\frac{2\tan(\angle OXP)}{1- \tan^2(\angle OXP)} = \frac{2\cdot \left(\frac{1}{4}\right)}{1-\left(\frac{1}{4}\right)^2}=\frac{8}{15}$. Therefore, $t = CD = CX\cdot\tan(\angle BXA) = 100 \cdot \frac{8}{15} = \frac{160}{3}$, and the answer is $\boxed{163}$. Solution 3 Let $t$ be the time they walk. Then $CD=t$ and $AB=3t$. Draw a line from point $O$ to $Q$ such that $OQ$ is perpendicular to $BD$. Further, draw a line passing through points $O$ and $P$, so $OP$ is parallel to $AB$ and $CD$ and is midway between those two lines. Then $PR=\dfrac{AB+CD}{2}=\dfrac{3t+t}{2}=2t$. Draw another line passing through point $D$ and parallel to $AC$, and call the point of intersection of this line with $AB$ as $S$. Then $SB=AB-AS=3t-t=2t$. We see that $m\angle SBD=m\angle ORQ$ since they are corresponding angles, and thus by angle-angle similarity, $\triangle QOR\sim\triangle SDB$. Then \begin{align*} \dfrac{OQ}{DS}=\dfrac{RO}{BD}&\implies\dfrac{50}{200}=\dfrac{RO}{\sqrt{200^2+4t^2}}\\ &\implies RO=\dfrac{1}{4}\left(\sqrt{200^2+4t^2}\right)\\ &\implies RO=\dfrac{1}{2}\left(\sqrt{100^2+t^2}\right) \end{align*} And we obtain \begin{align*} PR-OP&=RO\\ 2t-50&=\dfrac{1}{2}\left(\sqrt{100^2+t^2}\right)\\ 4t-100&=\sqrt{100^2+t^2}\\ (4t-100)^2&=\left(\sqrt{100^2+t^2}\right)^2\\ 16t^2-800t+100^2&=t^2+100^2\\ 15t^2&=800t\\ t&=\dfrac{800}{15} \end{align*} so we have $t=\frac{160}{3}$, and our answer is thus $160+3=\boxed{163}$. Solution 4 We can use areas to find the answer. Since Jenny and Kenny are 200 feet apart, we know that they are side by side, and that the line connecting the two of them is tangent to the circular building. We know that the radius of the circle is 50, and that $\overline{AJ} = x$, $\overline{BK} = 3x$. Illustration: By areas, $[OJK] + [AJOF] + [OFBK] = [ABKJ]$. Having right trapezoids, $[AFOJ] = \frac{x+50}{2} \cdot 100$. The other areas of right trapezoids can be calculated in the same way. We just need to find $[OJK]$ in terms of $x$. If we bring $\overline{AB}$ up to where the point J is, we have by the Pythagorean Theorem, $\overline{JK} = 2\sqrt{x^2+10000} \Rightarrow [OJK] = \frac{1}{2} \overline{JK} \cdot \overline{OD}$. Now we have everything to solve for $x$. \[[OJK] + [AJOF] + [OFBK] = [ABKJ]\] \[50 \sqrt{x^2 + 10000} + \frac{x+50}{2} \cdot 100 + \frac{3x+50}{2} \cdot 100 = \frac{x+3x}{2} \cdot 200\] After isolating the radical, dividing by 50, and squaring, we obtain: $15x^2 - 800x = 0 \Rightarrow x = \frac{160}{3}$. Since Jenny walks $\frac{160}{3}$ feet at 1 foot/s, our answer is $160+3 = \fbox{163}$.
// Block 1 size(8cm); defaultpen(linewidth(0.7)); pair A,B,C,D,P,Q,O,X; A=(0,0); B=(0,160); C=(200,0); D=(200,53.333); P=(100,0); Q=(123.529,94.118); O=(100,50); X=(300,0); dot(A); dot(B); dot(C); dot(D); dot(P); dot(Q); dot(O); dot(X); draw(A--B--X--cycle); draw(C--D); draw(P--O--Q); draw(O--X); draw(Circle(O,50)); label("$A$",A,SW); label("$B$",B,NNW); label("$C$",C,S); label("$D$",D,NE); label("$P$",P,S); label("$Q$",Q,NE); label("$O$",O,W); label("$X$",X,ESE); // Block 2 size(8cm); defaultpen(linewidth(0.7)); pair A,B,C,D,P,Q,O,R,S; A=(0,0); B=(0,160); C=(200,0); D=(200,53.333); P=(100,0); Q=(123.529,94.118); O=(100,50); R=(100,106.667); S=(0,53.333); dot(A); dot(B); dot(C); dot(D); dot(P); dot(Q); dot(O); dot(R); dot(S); draw(A--B--D--C--cycle); draw(P--O); draw(D--S); draw(O--Q--R--cycle); draw(Circle(O,50)); label("$A$",A,SW); label("$B$",B,NNW); label("$C$",(200,-205),S); label("$D$",D,NE); label("$P$",(100,-205),S); label("$Q$",Q,NE); label("$O$",O,SW); label("$R$",R,NE); label("$S$",S,W); // Block 3 size(8cm); pair A = (0,0), B = (200,0), K = (200,160), J = (0,53.3333), O = (100,50); pair D = tangent(J,O,50,2), F = tangent(A,O,50); pair[] p = {A,B,K,J,O,D,F}; for (pair point : p) { dot(point); } label("A",A,SW); label("B",B,SE); label("K",K,NE); label("J",J,NW); label("O",O,SW); label("D",D,N); label("F",F,S); draw(Circle(O,50)); draw(A--B--K--J--cycle); draw(F--O--J); draw(D--O); draw(O--K); label("$50$",(100,26.666),0.5E); label("$50$",midpoint(D--O),0.5NE); label("$x$",midpoint(A--J),0.5W); label("$3x$",midpoint(B--K),0.5E); label("$200$",midpoint(A--B),4S); draw(rightanglemark(J,A,F,150)); draw(rightanglemark(J,D,O,150)); draw(rightanglemark(A,F,O,150)); draw(rightanglemark(F,B,K,150));
[]
66
Jenny and Kenny are walking in the same direction, Kenny at 3 feet per second and Jenny at 1 foot per second, on parallel paths that are 200 feet apart. A tall circular building 100 feet in diameter is centered midway between the paths. At the instant when the building first blocks the line of sight between Jenny and Kenny, they are 200 feet apart. Let $t\,$ be the amount of time, in seconds, before Jenny and Kenny can see each other again. If $t\,$ is written as a fraction in lowest terms, what is the sum of the numerator and denominator? Contents 1 Problem 2 Solution 2.1 Solution 1 2.2 Solution 2 2.3 Solution 3 2.4 Solution 4 3 Solution 5 4 Solution 6 5 See also
1993 AIME Problem 13
Consider our diagram here, where Jenny goes from $A$ to $D$ and Kenny goes from $B$ to $C$. Really what we are asking is the length of $AD$, knowing that $AB$ and $CD$ are tangents and $AB$ is perpendicular to the parallel lines. Draw lines $EF$ and $GH$ as shown such that they are parallel to $BC$ and $AD$ and are tangent to the circle. Additionally, let $MN$ be the median of trapezoid $ABCD$. Notice how $AH=MH=50$ and $BE=ME=50$ as well, so $EF$ and $GH$ are medians of trapezoids $MBCN$ and $AMND$, respectively. If we set $AD=x$ and $BC=3x$, then $MN=2x$ so $HG=\frac{3}{2}x$ and $EF=\frac{5}{2}x$. Now we will find $FG$ in two different ways. For the first way, notice that $EFGH$ has its inscribed circle, so $EF+GH=EH+FG$. This means that $FG=\frac{3}{2}x+\frac{5}{2}x-100=4x-100$. However, if we let $P$ be the altitude from $G$ to $EF$, then notice how $PF=x$. Since $PG=100$, then by the Pythagorean Theorem, we also have that $FG=\sqrt{x^2+10000}$. After that, then we have an equation in $x$, which is \[\sqrt{x^2+10000}=4x-100.\] Squaring both sides, it expands to \[x^2+10000=16x^2-800x+10000,\] and since $x$ is nonzero, then once we cancel $10000$ from both sides, we can divide $x$ and get the new equation \[x=16x-800\implies x=\frac{160}{3}.\] Because Jenny travels this at $1$ foot per second, then it will take $\frac{160}{3}$ seconds, so our answer is $\boxed{163}$. ~~ethanzhang1001
// Block 1 import math; import geometry; import olympiad; point A,B,C,D,F,G,H,I,M,O,P; A=(0,0); B=(0,200); C=(160,200); D=(160/3,0); F=(0,150); G=(400/3,150); H=(80,50); I=(0,50); M=(0,100); O=(320/3,100); P=(80,150); draw(I--H--D--A--B--C--G--F); draw(M--O--H); draw(circle((50,100),50)); draw(G--H--P); label("A",A,SW); label("B",B,NW); label("C",C,NE); label("D",D,SE); label("E",F,W); label("F",G,E); label("G",H,E); label("H",I,W); label("M",M,W); label("N",O,E); label("P",P,N); // Block 2 import math; import geometry; import olympiad; point A,B,C,D,F,G,H,I,M,O,P; A=(0,0); B=(0,200); C=(160,200); D=(160/3,0); F=(0,150); G=(400/3,150); H=(80,50); I=(0,50); M=(0,100); O=(320/3,100); P=(80,150); draw(I--H--D--A--B--C--G--F); draw(M--O--H); draw(circle((50,100),50)); draw(G--H--P); label("A",A,SW); label("B",B,NW); label("C",C,NE); label("D",D,SE); label("E",F,W); label("F",G,E); label("G",H,E); label("H",I,W); label("M",M,W); label("N",O,E); label("P",P,N);
[]
67
Let $\overline{CH}$ be an altitude of $\triangle ABC$. Let $R\,$ and $S\,$ be the points where the circles inscribed in the triangles $ACH\,$ and $BCH^{}_{}$ are tangent to $\overline{CH}$. If $AB = 1995\,$, $AC = 1994\,$, and $BC = 1993\,$, then $RS\,$ can be expressed as $m/n\,$, where $m\,$ and $n\,$ are relatively prime integers. Find $m + n\,$.
1993 AIME Problem 15
From the Pythagorean Theorem, $AH^2+CH^2=1994^2$, and $(1995-AH)^2+CH^2=1993^2$. Subtracting those two equations yields $AH^2-(1995-AH)^2=3987$. After simplification, we see that $2*1995AH-1995^2=3987$, or $AH=\frac{1995}{2}+\frac{3987}{2*1995}$. Note that $AH+BH=1995$. Therefore we have that $BH=\frac{1995}{2}-\frac{3987}{2*1995}$. Therefore $AH-BH=\frac{3987}{1995}$. $\textbf{Note: }$An easier method is to use both facts together: First, by the Pythagorean Theorem, we find that $1993^2-BH^2=1994^2-AH^2$, so $AH^2-BH^2=1994^2-1993^2=3987$. We know that $AH+BH=1995$, so by difference of squares and dividing we find that $AH-BH=\frac{3987}{1995}=\frac{1329}{665}$. ~eevee9406 Now note that $RS=|HR-HS|$, $RH=\frac{AH+CH-AC}{2}$, and $HS=\frac{CH+BH-BC}{2}$. Therefore we have $RS=\left| \frac{AH+CH-AC-CH-BH+BC}{2} \right|=\frac{|AH-BH-1994+1993|}{2}$. Plugging in $AH-BH$ and simplifying, we have $RS=\frac{1992}{1995*2}=\frac{332}{665} \rightarrow 332+665=\boxed{997}$. Edit by GameMaster402: It can be shown that in any triangle with side lengths $n-1, n, n+1$, if you draw an altitude from the vertex to the side of $n+1$, and draw the incircles of the two right triangles, the distance between the two tangency points is simply $\frac{n-2}{2n+2}=\frac{n-2}{2(n+1)}$. Plugging in $n=1994$ yields that the answer is $\frac{1992}{2(1995)}$, which simplifies to $\frac{332}{665}$ ~minor edit by Yiyj1 Edit by phoenixfire: It can further be shown for any triangle with sides $a=BC, b=CA, c=AB$ that \[RS=\dfrac{|b-a|}{2c}|a+b-c|\] Over here $a=1993, b=1994, c=1995$, so using the formula gives \[RS = \dfrac{|1994 - 1993|}{2 \cdot 1995}|1993 + 1994 - 1995| = \dfrac{1 \cdot 1992}{2(1995)} = \frac{332}{665}.\] ~minor edit by Yiyj1 Note: We can also just right it as $RS=\frac{|b-a|(a+b-c)}{2c}$ since $a+b-c \geq 0$ by the triangle inequality. ~Yiyj1
// Block 1 unitsize(48); pair A,B,C,H; A=(8,0); B=origin; C=(3,4); H=(3,0); draw(A--B--C--cycle); draw(C--H); label("$A$",A,SE); label("$B$",B,SW); label("$C$",C,N); label("$H$",H,NE); draw(circle((2,1),1)); pair [] x=intersectionpoints(C--H,circle((2,1),1)); dot(x[0]); label("$S$",x[0],SW); draw(circle((4.29843788128,1.29843788128),1.29843788128)); pair [] y=intersectionpoints(C--H,circle((4.29843788128,1.29843788128),1.29843788128)); dot(y[0]); label("$R$",y[0],NE); label("$1993$",(1.5,2),NW); label("$1994$",(5.5,2),NE); label("$1995$",(4,0),S); // Block 2 unitsize(48); pair A,B,C,H; A=(8,0); B=origin; C=(3,4); H=(3,0); draw(A--B--C--cycle); draw(C--H); label("$A$",A,SE); label("$B$",B,SW); label("$C$",C,N); label("$H$",H,NE); draw(circle((2,1),1)); pair [] x=intersectionpoints(C--H,circle((2,1),1)); dot(x[0]); label("$S$",x[0],SW); draw(circle((4.29843788128,1.29843788128),1.29843788128)); pair [] y=intersectionpoints(C--H,circle((4.29843788128,1.29843788128),1.29843788128)); dot(y[0]); label("$R$",y[0],NE); label("$1993$",(1.5,2),NW); label("$1994$",(5.5,2),NE); label("$1995$",(4,0),S);
[]
68
The graphs of the equations $y=k, \qquad y=\sqrt{3}x+2k, \qquad y=-\sqrt{3}x+2k,$ are drawn in the coordinate plane for $k=-10,-9,-8,\ldots,9,10.\,$ These 63 lines cut part of the plane into equilateral triangles of side length $\tfrac{2}{\sqrt{3}}.\,$ How many such triangles are formed?
1994 AIME Problem 6
Solution 1 We note that the lines partition the hexagon of the six extremal lines into disjoint unit regular triangles, and forms a series of unit regular triangles along the edge of the hexagon. Solving the above equations for $k=\pm 10$, we see that the hexagon in question is regular, with side length $\frac{20}{\sqrt{3}}$. Then, the number of triangles within the hexagon is simply the ratio of the area of the hexagon to the area of a regular triangle. Since the ratio of the area of two similar figures is the square of the ratio of their side lengths, we see that the ratio of the area of one of the six equilateral triangles composing the regular hexagon to the area of a unit regular triangle is just $\left(\frac{20/\sqrt{3}}{2/\sqrt{3}}\right)^2 = 100$. Thus, the total number of unit triangles is $6 \times 100 = 600$. There are $6 \cdot 10$ equilateral triangles formed by lines on the edges of the hexagon. Thus, our answer is $600+60 = \boxed{660}$. Solution 2 There are three types of lines: horizontal, upward-slanting diagonal, and downward-slanting diagonal. There are $21$ of each type of line, and a unit equilateral triangle is determined by exactly one of each type of line. Given an upward-slanting diagonal and a downward-slanting diagonal, they determine exactly two unit equilateral triangles as shown below. Therefore, if all horizontal lines are drawn, there will be a total of $2\cdot 21^2=882$ unit equilateral triangles. Of course, we only draw $21$ horizontal lines, so we are overcounting the triangles that are caused by the undrawn horizontal lines. In the below diagram, we draw the diagonal lines and the highest and lowest horizontal lines. We see that the lines $y=-21,-20,\dots, -11$ and $y=11,12,\dots,21$ would complete several of the $882$ unit equilateral triangles. In fact, we can see that the lines $y=-21,-20,\dots,-11$ complete $1,2,(1+3),(2+4),(3+5),(4+6),\dots,(9+11)$ triangles, or $111$ triangles. The positive horizontal lines complete the same number of triangles, hence the answer is $882-2\cdot 111=\boxed{660}$. Solution 3 Elementary Counting Picturing the diagram in your head should give you an illustration similar to the one above. The distance from parallel sides of the center hexagon is 20 units, and by extending horizontal lines to the sides of the hexagon. This shows that for every side of the hexagon there are 10 spaces. Therefore the side length of the biggest triangle (imagine one of the overlapping triangles in the Star of David) is 30. The total number of triangles in the hexagon can be found by finding the number of triangles in the extended triangle and subtracting the 3 corner triangles. This gives us $30^2 - 10^2 - 10^2- 10^2 = 600$. That is the number of triangles in the hexagon. The remaining triangles form in groups of 10 on the exterior of each side. $600 + 6 * 10 = \boxed{660}$. -jackshi2006
// Block 1 size(200); picture pica, picb, picc; int i; for(i=-10;i<=10;++i){ if((i%10) == 0){draw(pica,(-20/sqrt(3)-abs((0,i))/sqrt(3),i)--(20/sqrt(3)+abs((0,i))/sqrt(3),i),black+0.7);} else{draw(pica,(-20/sqrt(3)-abs((0,i))/sqrt(3),i)--(20/sqrt(3)+abs((0,i))/sqrt(3),i));} } picb = rotate(120,origin)*pica; picc = rotate(240,origin)*pica; add(pica);add(picb);add(picc); // Block 2 size(60); pair u=rotate(60)*(1,0),d=rotate(-60)*(1,0),h=(1,0); draw((0,0)--4*u^^-2*h+4*u--(-2*h+4*u+4*d)); draw(u--2*u+d,dotted); draw(3*u--3*u-h,dotted); // Block 3 size(200); pair u=rotate(60)*(2/sqrt(3),0),d=rotate(-60)*(2/sqrt(3),0),h=(2/sqrt(3),0); for (int i=0;i<21;++i) {path v=(-20/sqrt(3),0)-2*u+i*u--(0,20)--(20/sqrt(3),0)+2*d-i*d;draw(shift(0,-2*i)*v);} for (int i=0;i<21;++i) {path v=rotate(180)*((-20/sqrt(3),0)-2*u+i*u--(0,20)--(20/sqrt(3),0)+2*d-i*d);draw(shift(0,2*i)*v);} draw((-15,-10)--(15,-10)); draw((-15,10)--(15,10));
[]
69
For certain ordered pairs $(a,b)\,$ of real numbers, the system of equations $ax+by=1\,$ $x^2+y^2=50\,$ has at least one solution, and each solution is an ordered pair $(x,y)\,$ of integers. How many such ordered pairs $(a,b)\,$ are there?
1994 AIME Problem 7
The equation $x^2+y^2=50$ is that of a circle of radius $\sqrt{50}$, centered at the origin. By testing integers until the left side becomes too big, we see that the lattice points on this circle are $(\pm1,\pm7)$, $(\pm5,\pm5)$, and $(\pm7,\pm1)$ where the signs are all independent of each other, for a total of $3\cdot 2\cdot 2=12$ lattice points. They are indicated by the blue dots below. Since $(x,y)=(0,0)$ yields $a\cdot 0+b\cdot 0=0 \neq 1$, we know that $ax+by=1$ is the equation of a line that does not pass through the origin. So, we are looking for the number of lines which pass through at least one of the $12$ lattice points on the circle, but do not pass through the origin or through any non-lattice point on the circle. An example is the green line above. It is straightforward to show that a line passes through the origin precisely when there exist two opposite points $(p,q)$ and $(-p,-q)$ through which it passes. And example is the red line above. There are $\binom{12}{2}=66$ ways to pick two distinct lattice points, and subsequently $66$ distinct lines which pass through two distinct lattice points on the circle. Then we subtract the lines which pass through the origin by noting that the lattice points on the circle can be grouped into opposite pairs $(p,q)$ and $(-p,-q)$, for a total of $\frac{12}{2}=6$ lines. Finally, we add the $12$ unique tangent lines to the circle at each of the lattice points. Therefore, our final count of distinct lines which pass through one or two of the lattice points on the circle, but do not pass through the origin, is\[66-6+12=\boxed{72}.\]
// Block 1 size(150); draw(circle((0,0),sqrt(50))); draw((1,7)--(-1,-7),red); draw((7,1)--(5,-5), green); dot((0,0)); dot((1,7),blue); dot((1,-7),blue); dot((-1,7),blue); dot((-1,-7),blue); dot((5,5),blue); dot((5,-5),blue); dot((-5,5),blue); dot((-5,-5),blue); dot((7,1),blue); dot((7,-1),blue); dot((-7,1),blue); dot((-7,-1),blue); // Block 2 size(150); draw(circle((0,0),sqrt(50))); draw((1,7)--(-1,-7),red); draw((7,1)--(5,-5), green); dot((0,0)); dot((1,7),blue); dot((1,-7),blue); dot((-1,7),blue); dot((-1,-7),blue); dot((5,5),blue); dot((5,-5),blue); dot((-5,5),blue); dot((-5,-5),blue); dot((7,1),blue); dot((7,-1),blue); dot((-7,1),blue); dot((-7,-1),blue);
[]
70
Given a point $P^{}_{}$ on a triangular piece of paper $ABC,\,$ consider the creases that are formed in the paper when $A, B,\,$ and $C\,$ are folded onto $P.\,$ Let us call $P_{}^{}$ a fold point of $\triangle ABC\,$ if these creases, which number three unless $P^{}_{}$ is one of the vertices, do not intersect. Suppose that $AB=36, AC=72,\,$ and $\angle B=90^\circ.\,$ Then the area of the set of all fold points of $\triangle ABC\,$ can be written in the form $q\pi-r\sqrt{s},\,$ where $q, r,\,$ and $s\,$ are positive integers and $s\,$ is not divisible by the square of any prime. What is $q+r+s\,$?
1994 AIME Problem 15
Let $O_{AB}$ be the intersection of the perpendicular bisectors (in other words, the intersections of the creases) of $\overline{PA}$ and $\overline{PB}$, and so forth. Then $O_{AB}, O_{BC}, O_{CA}$ are, respectively, the circumcenters of $\triangle PAB, PBC, PCA$. According to the problem statement, the circumcenters of the triangles cannot lie within the interior of the respective triangles, since they are not on the paper. It follows that $\angle APB, \angle BPC, \angle CPA > 90^{\circ}$; the locus of each of the respective conditions for $P$ is the region inside the (semi)circles with diameters $\overline{AB}, \overline{BC}, \overline{CA}$. We note that the circle with diameter $AC$ covers the entire triangle because it is the circumcircle of $\triangle ABC$, so it suffices to take the intersection of the circles about $AB, BC$. We note that their intersection lies entirely within $\triangle ABC$ (the chord connecting the endpoints of the region is in fact the altitude of $\triangle ABC$ from $B$). Thus, the area of the locus of $P$ (shaded region below) is simply the sum of two segments of the circles. If we construct the midpoints of $M_1, M_2 = \overline{AB}, \overline{BC}$ and note that $\triangle M_1BM_2 \sim \triangle ABC$, we see that thse segments respectively cut a $120^{\circ}$ arc in the circle with radius $18$ and $60^{\circ}$ arc in the circle with radius $18\sqrt{3}$. The diagram shows $P$ outside of the grayed locus; notice that the creases [the dotted blue] intersect within the triangle, which is against the problem conditions. The area of the locus is the sum of two segments of two circles; these segments cut out $120^{\circ}, 60^{\circ}$ angles by simple similarity relations and angle-chasing. Hence, the answer is, using the $\frac 12 ab\sin C$ definition of triangle area, $\left[\frac{\pi}{3} \cdot 18^2 - \frac{1}{2} \cdot 18^2 \sin \frac{2\pi}{3} \right] + \left[\frac{\pi}{6} \cdot \left(18\sqrt{3}\right)^2 - \frac{1}{2} \cdot (18\sqrt{3})^2 \sin \frac{\pi}{3}\right] = 270\pi - 324\sqrt{3}$, and $q+r+s = \boxed{597}$.
// Block 1 pair project(pair X, pair Y, real r){return X+r*(Y-X);} path endptproject(pair X, pair Y, real a, real b){return project(X,Y,a)--project(X,Y,b);} pathpen = linewidth(1); size(250); pen dots = linetype("2 3") + linewidth(0.7), dashes = linetype("8 6")+linewidth(0.7)+blue, bluedots = linetype("1 4") + linewidth(0.7) + blue; pair B = (0,0), A=(36,0), C=(0,36*3^.5), P=D(MP("P",(6,25), NE)), F = D(foot(B,A,C)); D(D(MP("A",A)) -- D(MP("B",B)) -- D(MP("C",C,N)) -- cycle); fill(arc((A+B)/2,18,60,180) -- arc((B+C)/2,18*3^.5,-90,-30) -- cycle, rgb(0.8,0.8,0.8)); D(arc((A+B)/2,18,0,180),dots); D(arc((B+C)/2,18*3^.5,-90,90),dots); D(arc((A+C)/2,36,120,300),dots); D(B--F,dots); D(D((B+C)/2)--F--D((A+B)/2),dots); D(C--P--B,dashes);D(P--A,dashes); pair Fa = bisectorpoint(P,A), Fb = bisectorpoint(P,B), Fc = bisectorpoint(P,C); path La = endptproject((A+P)/2,Fa,20,-30), Lb = endptproject((B+P)/2,Fb,12,-35); D(La,bluedots);D(Lb,bluedots);D(endptproject((C+P)/2,Fc,18,-15),bluedots);D(IP(La,Lb),blue); // Block 2 pair project(pair X, pair Y, real r){return X+r*(Y-X);} path endptproject(pair X, pair Y, real a, real b){return project(X,Y,a)--project(X,Y,b);} pathpen = linewidth(1); size(250); pen dots = linetype("2 3") + linewidth(0.7), dashes = linetype("8 6")+linewidth(0.7)+blue, bluedots = linetype("1 4") + linewidth(0.7) + blue; pair B = (0,0), A=(36,0), C=(0,36*3^.5), P=D(MP("P",(6,25), NE)), F = D(foot(B,A,C)); D(D(MP("A",A)) -- D(MP("B",B)) -- D(MP("C",C,N)) -- cycle); fill(arc((A+B)/2,18,60,180) -- arc((B+C)/2,18*3^.5,-90,-30) -- cycle, rgb(0.8,0.8,0.8)); D(arc((A+B)/2,18,0,180),dots); D(arc((B+C)/2,18*3^.5,-90,90),dots); D(arc((A+C)/2,36,120,300),dots); D(B--F,dots); D(D((B+C)/2)--F--D((A+B)/2),dots); D(C--P--B,dashes);D(P--A,dashes); pair Fa = bisectorpoint(P,A), Fb = bisectorpoint(P,B), Fc = bisectorpoint(P,C); path La = endptproject((A+P)/2,Fa,20,-30), Lb = endptproject((B+P)/2,Fb,12,-35); D(La,bluedots);D(Lb,bluedots);D(endptproject((C+P)/2,Fc,18,-15),bluedots);D(IP(La,Lb),blue);
[]
71
Circles of radius $3$ and $6$ are externally tangent to each other and are internally tangent to a circle of radius $9$. The circle of radius $9$ has a chord that is a common external tangent of the other two circles. Find the square of the length of this chord.
1995 AIME Problem 4
We label the points as following: the centers of the circles of radii $3,6,9$ are $O_3,O_6,O_9$ respectively, and the endpoints of the chord are $P,Q$. Let $A_3,A_6,A_9$ be the feet of the perpendiculars from $O_3,O_6,O_9$ to $\overline{PQ}$ (so $A_3,A_6$ are the points of tangency). Then we note that $\overline{O_3A_3} \parallel \overline{O_6A_6} \parallel \overline{O_9A_9}$, and $O_6O_9 : O_9O_3 = 3:6 = 1:2$. Thus, $O_9A_9 = \frac{2 \cdot O_6A_6 + 1 \cdot O_3A_3}{3} = 5$ (consider similar triangles). Applying the Pythagorean Theorem to $\triangle O_9A_9P$, we find that \[PQ^2 = 4(A_9P)^2 = 4[(O_9P)^2-(O_9A_9)^2] = 4[9^2-5^2] = \boxed{224}\]
// Block 1 pointpen = black; pathpen = black + linewidth(0.7); size(150); pair A=(0,0), B=(6,0), C=(-3,0), D=C+6*expi(acos(1/3)), F=B+3*expi(acos(1/3)),G=5*expi(acos(1/3)), P=IP(F--F+3*(D-F),CR(A,9)), Q=IP(F--F+3*(F-D),CR(A,9)); D(CR(D(MP("O_9",A)),9)); D(CR(D(MP("O_3",B)),3)); D(CR(D(MP("O_6",C)),6)); D(MP("P",P,NW)--MP("Q",Q,NE)); D((-9,0)--(9,0)); D(A--MP("A_9",G,N)); D(B--MP("A_3",F,N)); D(C--MP("A_6",D,N)); D(A--P); D(rightanglemark(A,G,P,12)); // Block 2 pointpen = black; pathpen = black + linewidth(0.7); size(150); pair A=(0,0), B=(6,0), C=(-3,0), D=C+6*expi(acos(1/3)), F=B+3*expi(acos(1/3)),G=5*expi(acos(1/3)), P=IP(F--F+3*(D-F),CR(A,9)), Q=IP(F--F+3*(F-D),CR(A,9)); D(CR(D(MP("O_9",A)),9)); D(CR(D(MP("O_3",B)),3)); D(CR(D(MP("O_6",C)),6)); D(MP("P",P,NW)--MP("Q",Q,NE)); D((-9,0)--(9,0)); D(A--MP("A_9",G,N)); D(B--MP("A_3",F,N)); D(C--MP("A_6",D,N)); D(A--P); D(rightanglemark(A,G,P,12));
[]
71
Circles of radius $3$ and $6$ are externally tangent to each other and are internally tangent to a circle of radius $9$. The circle of radius $9$ has a chord that is a common external tangent of the other two circles. Find the square of the length of this chord.
1995 AIME Problem 4
Let $A$ be defined as the origin of a coordinate plane with the $y$-axis running across the chord and $C(6\sqrt{2},0)$ by the Pythagorean Theorem. Then we have $D(0,-6)$ and $F(6\sqrt{2},-3)$, and since $\frac{DE}{DF}=\frac{1}{3}$, the point $E$ is one-third of the way from $D$ to $F$, so point $E$ has coordinates $(2\sqrt{2},-5)$. $E$ is the center of the circle with radius $9$, so the equation of this circle is $(x-2\sqrt{2})^2+(y+5)^2=81$. Since the chord's equation is $y=0$, we must find all values of $x$ satisfying the equation of the circle such that $y=0$. We find that $x-2\sqrt{2}=\pm\sqrt{56}$, so the chord has length $|\sqrt{56}+2\sqrt{2}-(-\sqrt{56}+2\sqrt{2})|=2\sqrt{56}$ and the answer is $(2\sqrt{56})^2=\boxed{224}$. ~eevee9406
// Block 1 pointpen = black; pathpen = black + linewidth(0.7); size(150); pair A=(0,0), B=(6,0), C=(-3,0), D=C+6*expi(acos(1/3)), F=B+3*expi(acos(1/3)),G=5*expi(acos(1/3)), P=IP(F--F+3*(D-F),CR(A,9)), Q=IP(F--F+3*(F-D),CR(A,9)); D(CR(D(MP("E",A)),9)); D(CR(D(MP("F",B)),3)); D(CR(D(MP("D",C)),6)); D((-9,0)--(9,0)); D(MP("",P,NW)--MP("",Q,NE)); D(A--MP("B",G,N)); D(B--MP("C",F,N)); D(C--MP("A",D,N)); D(rightanglemark(A,G,P,12)); D(rightanglemark(C,D,P,12)); D(rightanglemark(B,F,P,12)); // Block 2 pointpen = black; pathpen = black + linewidth(0.7); size(150); pair A=(0,0), B=(6,0), C=(-3,0), D=C+6*expi(acos(1/3)), F=B+3*expi(acos(1/3)),G=5*expi(acos(1/3)), P=IP(F--F+3*(D-F),CR(A,9)), Q=IP(F--F+3*(F-D),CR(A,9)); D(CR(D(MP("E",A)),9)); D(CR(D(MP("F",B)),3)); D(CR(D(MP("D",C)),6)); D((-9,0)--(9,0)); D(MP("",P,NW)--MP("",Q,NE)); D(A--MP("B",G,N)); D(B--MP("C",F,N)); D(C--MP("A",D,N)); D(rightanglemark(A,G,P,12)); D(rightanglemark(C,D,P,12)); D(rightanglemark(B,F,P,12));
[]
72
Pyramid $OABCD$ has square base $ABCD,$ congruent edges $\overline{OA}, \overline{OB}, \overline{OC},$ and $\overline{OD},$ and $\angle AOB=45^\circ.$ Let $\theta$ be the measure of the dihedral angle formed by faces $OAB$ and $OBC.$ Given that $\cos \theta=m+\sqrt{n},$ where $m_{}$ and $n_{}$ are integers, find $m+n.$ Contents 1 Problem 2 Solution 2.1 Solution 1 (trigonometry) 2.2 Solution 2 (analytical/vectors) 2.3 Solution 3 (bashy trig) 3 See also
1995 AIME Problem 12
Solution 1 (trigonometry) The angle $\theta$ is the angle formed by two perpendiculars drawn to $BO$, one on the plane determined by $OAB$ and the other by $OBC$. Let the perpendiculars from $A$ and $C$ to $\overline{OB}$ meet $\overline{OB}$ at $P.$ Without loss of generality, let $AP = 1.$ It follows that $\triangle OPA$ is a $45-45-90$ right triangle, so $OP = AP = 1,$ $OB = OA = \sqrt {2},$ and $AB = \sqrt {4 - 2\sqrt {2}}.$ Therefore, $AC = \sqrt {8 - 4\sqrt {2}}.$ From the Law of Cosines, $AC^{2} = AP^{2} + PC^{2} - 2(AP)(PC)\cos \theta,$ so \[8 - 4\sqrt {2} = 1 + 1 - 2\cos \theta \Longrightarrow \cos \theta = - 3 + 2\sqrt {2} = - 3 + \sqrt{8}.\] Thus $m + n = \boxed{005}$. Solution 2 (analytical/vectors) Without loss of generality, place the pyramid in a 3-dimensional coordinate system such that $A = (1,0,0),$ $B = (0,1,0),$ $C = ( - 1,0,0),$ $D = (0, - 1,0),$ and $O = (0,0,z),$ where $z$ is unknown. We first find $z.$ Note that \[\overrightarrow{OA}\cdot \overrightarrow{OB} = \parallel \overrightarrow{OA}\parallel \parallel \overrightarrow{OB}\parallel \cos 45^\circ.\] Since $\overrightarrow{OA} =\, <1,0, - z>$ and $\overrightarrow{OB} =\, <0,1, - z> ,$ this simplifies to \[z^{2}\sqrt {2} = 1 + z^{2}\implies z^{2} = 1 + \sqrt {2}.\] Now let's find $\cos \theta.$ Let $\vec{u}$ and $\vec{v}$ be normal vectors to the planes containing faces $OAB$ and $OBC,$ respectively. From the definition of the dot product as $\vec{u}\cdot \vec{v} = \parallel \vec{u}\parallel \parallel \vec{v}\parallel \cos \theta$, we will be able to solve for $\cos \theta.$ A cross product yields (alternatively, it is simple to find the equation of the planes $OAB$ and $OAC$, and then to find their normal vectors) \[\vec{u} = \overrightarrow{OA}\times \overrightarrow{OB} = \left| \begin{array}{ccc}\hat{i} & \hat{j} & \hat{k} \\ 1 & 0 & - z \\ 0 & 1 & - z \end{array}\right| =\, < z,z,1 > .\] Similarly, \[\vec{v} = \overrightarrow{OB}\times \overrightarrow{OC} - \left|\begin{array}{ccc}\hat{i} & \hat{j} & \hat{k} \\ 0 & 1 & - z \\ - 1 & 0 & - z \end{array}\right| =\, < - z,z,1 > .\] Hence, taking the dot product of $\vec{u}$ and $\vec{v}$ yields \[\cos \theta = \frac{ \vec{u} \cdot \vec{v} }{ \parallel \vec{u} \parallel \parallel \vec{v} \parallel } = \frac{- z^{2} + z^{2} + 1}{(\sqrt {1 + 2z^{2}})^{2}} = \frac {1}{3 + 2\sqrt {2}} = 3 - 2\sqrt {2} = 3 - \sqrt {8}.\] Flipping the signs (we found the cosine of the supplement angle) yields $\cos \theta = - 3 + \sqrt {8},$ so the answer is $\boxed{005}$. Solution 3 (bashy trig) Similar to Solution 1, $\angle APC$ is the dihedral angle we want. WLOG, we will let $AB=1,$ meaning $AC=\sqrt{2}$. Because $\triangle OAB,\triangle OBC$ are isosceles, $\angle ABP = 67.5^{\circ}$ $PC=PA=\cos(\angle PAB)=\cos(22.5^{\circ})$. Thus by the half-angle identity, \[PA=\cos\left(\frac{45}{2}\right) = \sqrt{\frac{1+\cos(45^{\circ})}{2}}\] \[= \sqrt{\frac{2+\sqrt{2}}{4}}.\] Now looking at triangle $\triangle PAC,$ we drop the perpendicular from $P$ to $AC$, and call the foot $H$. Then $\angle CPH = \theta / 2.$ By Pythagoreas, \[PH=\sqrt{\frac{2+\sqrt{2}}{4}-\frac{1}{2}}=\frac{\sqrt[4]{2}}{2}.\] We have that \[\cos\left(\frac{\theta}{2}\right)=\frac{\sqrt[4]{2}}{\sqrt{2+\sqrt{2}}},\text{ so}\] \[\cos(\theta)=2\cos^{2}\left(\frac{\theta}{2}\right)-1\] \[=2\left(\frac{\sqrt{2}}{2+\sqrt{2}}\right)-1\] \[=2(\frac{2\sqrt{2}-2}{2})-1\] \[=-3+\sqrt{8}.\] Because $m$ and $n$ can be negative integers, our answer is $(-3)+8=\boxed{005.}$ Notice that $-1\le \cos(\theta) \le 1$ as well. ~RubixMaster21
// Block 1 import three; // calculate intersection of line and plane // p = point on line // d = direction of line // q = point in plane // n = normal to plane triple lineintersectplan(triple p, triple d, triple q, triple n) { return (p + dot(n,q - p)/dot(n,d)*d); } // projection of point A onto line BC triple projectionofpointontoline(triple A, triple B, triple C) { return lineintersectplan(B, B - C, A, B - C); } currentprojection=perspective(2,1,1); triple A, B, C, D, O, P; A = (sqrt(2 - sqrt(2)), sqrt(2 - sqrt(2)), 0); B = (-sqrt(2 - sqrt(2)), sqrt(2 - sqrt(2)), 0); C = (-sqrt(2 - sqrt(2)), -sqrt(2 - sqrt(2)), 0); D = (sqrt(2 - sqrt(2)), -sqrt(2 - sqrt(2)), 0); O = (0,0,sqrt(2*sqrt(2))); P = projectionofpointontoline(A,O,B); draw(D--A--B); draw(B--C--D,dashed); draw(A--O); draw(B--O); draw(C--O,dashed); draw(D--O); draw(A--P); draw(P--C,dashed); label("$A$", A, S); label("$B$", B, E); label("$C$", C, NW); label("$D$", D, W); label("$O$", O, N); dot("$P$", P, NE); // Block 2 import three; // calculate intersection of line and plane // p = point on line // d = direction of line // q = point in plane // n = normal to plane triple lineintersectplan(triple p, triple d, triple q, triple n) { return (p + dot(n,q - p)/dot(n,d)*d); } // projection of point A onto line BC triple projectionofpointontoline(triple A, triple B, triple C) { return lineintersectplan(B, B - C, A, B - C); } currentprojection=perspective(2,1,1); triple A, B, C, D, O, P; A = (sqrt(2 - sqrt(2)), sqrt(2 - sqrt(2)), 0); B = (-sqrt(2 - sqrt(2)), sqrt(2 - sqrt(2)), 0); C = (-sqrt(2 - sqrt(2)), -sqrt(2 - sqrt(2)), 0); D = (sqrt(2 - sqrt(2)), -sqrt(2 - sqrt(2)), 0); O = (0,0,sqrt(2*sqrt(2))); P = projectionofpointontoline(A,O,B); draw(D--A--B); draw(B--C--D,dashed); draw(A--O); draw(B--O); draw(C--O,dashed); draw(D--O); draw(A--P); draw(P--C,dashed); label("$A$", A, S); label("$B$", B, E); label("$C$", C, NW); label("$D$", D, W); label("$O$", O, N); dot("$P$", P, NE); // Block 3 // if you see this // hello // gap for label on P--H: https://tex.stackexchange.com/questions/475945/asymptote-how-do-i-make-a-gap-in-a-segment-to-include-a-label pair P,C,A,H; H = (0, 0); C = (-0.71, 0); A = (0.71, 0); P = (0,0.59); draw(P--C--A--cycle); draw(P--H); label("$A$", A, SE); label("$C$", C, SW); label("$P$", P, N); label("$H$", H, S); label("$\sqrt{\frac{2+\sqrt{2}}{4}}$",align=NE,point(P--A,0.5)); label("$\sqrt{\frac{2+\sqrt{2}}{4}}$",align=NW,point(P--C,0.5)); label("$\frac{\sqrt{2}}{2}$",align=S,point(C--H,0.5)); label("$\frac{\sqrt{2}}{2}$",align=S,point(A--H,0.5)); pen fillpen = white; Label mylabel = Label("$\frac{\sqrt[4]{2}}{2}$", align=(0,0), position=MidPoint, filltype=Fill(fillpen)); draw(P--H, L=mylabel);
[]
73
In a circle of radius $42$, two chords of length $78$ intersect at a point whose distance from the center is $18$. The two chords divide the interior of the circle into four regions. Two of these regions are bordered by segments of unequal lengths, and the area of either of them can be expressed uniquely in the form $m\pi-n\sqrt{d},$ where $m, n,$ and $d_{}$ are positive integers and $d_{}$ is not divisible by the square of any prime number. Find $m+n+d.$
1995 AIME Problem 14
Let the center of the circle be $O$, and the two chords be $\overline{AB}, \overline{CD}$ and intersecting at $E$, such that $AE = CE < BE = DE$. Let $F$ be the midpoint of $\overline{AB}$. Then $\overline{OF} \perp \overline{AB}$. By the Pythagorean Theorem, $OF = \sqrt{OB^2 - BF^2} = \sqrt{42^2 - 39^2} = 9\sqrt{3}$, and $EF = \sqrt{OE^2 - OF^2} = 9$. Then $OEF$ is a $30-60-90$ right triangle, so $\angle OEB = \angle OED = 60^{\circ}$. Thus $\angle BEC = 60^{\circ}$, and by the Law of Cosines, $BC^2 = BE^2 + CE^2 - 2 \cdot BE \cdot CE \cos 60^{\circ} = 42^2.$ It follows that $\triangle BCO$ is an equilateral triangle, so $\angle BOC = 60^{\circ}$. The desired area can be broken up into two regions, $\triangle BCE$ and the region bounded by $\overline{BC}$ and minor arc $\stackrel{\frown}{BC}$. The former can be found by Heron's formula to be $[BCE] = \sqrt{60(60-48)(60-42)(60-30)} = 360\sqrt{3}$. The latter is the difference between the area of sector $BOC$ and the equilateral $\triangle BOC$, or $\frac{1}{6}\pi (42)^2 - \frac{42^2 \sqrt{3}}{4} = 294\pi - 441\sqrt{3}$. Thus, the desired area is $360\sqrt{3} + 294\pi - 441\sqrt{3} = 294\pi - 81\sqrt{3}$, and $m+n+d = \boxed{378}$. Note: the area of $\triangle BCE$ can be more easily found by using the sine method $[\triangle] = \frac{1}{2} ab \sin C$. $[BCE] = 30 \cdot 48 \cdot \frac{1}{2} \cdot \sin 60^\circ = 30 \cdot 24 \cdot \frac{\sqrt{3}}{2} = 360\sqrt{3}$ -NL008
// Block 1 size(200); pathpen = black + linewidth(0.7); pen d = dashed+linewidth(0.7); pair O = (0,0), E=(0,18), B=E+48*expi(11*pi/6), D=E+48*expi(7*pi/6), A=E+30*expi(5*pi/6), C=E+30*expi(pi/6), F=foot(O,B,A); D(CR(D(MP("O",O)),42)); D(MP("A",A,NW)--MP("B",B,SE)); D(MP("C",C,NE)--MP("D",D,SW)); D(MP("E",E,N)); D(C--B--O--E,d);D(O--D(MP("F",F,NE)),d); MP("39",(B+F)/2,NE);MP("30",(C+E)/2,NW);MP("42",(B+O)/2); // Block 2 size(200); pathpen = black + linewidth(0.7); pen d = dashed+linewidth(0.7); pair O = (0,0), E=(0,18), B=E+48*expi(11*pi/6), D=E+48*expi(7*pi/6), A=E+30*expi(5*pi/6), C=E+30*expi(pi/6), F=foot(O,B,A); D(CR(D(MP("O",O)),42)); D(MP("A",A,NW)--MP("B",B,SE)); D(MP("C",C,NE)--MP("D",D,SW)); D(MP("E",E,N)); D(C--B--O--E,d);D(O--D(MP("F",F,NE)),d); MP("39",(B+F)/2,NE);MP("30",(C+E)/2,NW);MP("42",(B+O)/2);
[]
74
A wooden cube, whose edges are one centimeter long, rests on a horizontal surface. Illuminated by a point source of light that is $x$ centimeters directly above an upper vertex, the cube casts a shadow on the horizontal surface. The area of the shadow, which does not include the area beneath the cube is 48 square centimeters. Find the greatest integer that does not exceed $1000x$.
1996 AIME Problem 4
(Figure not to scale) The area of the square shadow base is $48 + 1 = 49$, and so the sides of the shadow are $7$. Using the similar triangles in blue, $\frac {x}{1} = \frac {1}{6}$, and $\left\lfloor 1000x \right\rfloor = \boxed{166}$.
// Block 1 import three; size(250);defaultpen(0.7+fontsize(9)); real unit = 0.5; real r = 2.8; triple O=(0,0,0), P=(0,0,unit+unit/(r-1)); dot(P); draw(O--P); draw(O--(unit,0,0)--(unit,0,unit)--(0,0,unit)); draw(O--(0,unit,0)--(0,unit,unit)--(0,0,unit)); draw((unit,0,0)--(unit,unit,0)--(unit,unit,unit)--(unit,0,unit)); draw((0,unit,0)--(unit,unit,0)--(unit,unit,unit)--(0,unit,unit)); draw(P--(r*unit,0,0)--(r*unit,r*unit,0)--(0,r*unit,0)--P); draw(P--(r*unit,r*unit,0)); draw((r*unit,0,0)--(0,0,0)--(0,r*unit,0)); draw(P--(0,0,unit)--(unit,0,unit)--(unit,0,0)--(r*unit,0,0)--P,dashed+blue+linewidth(0.8)); label("$x$",(0,0,unit+unit/(r-1)/2),WSW); label("$1$",(unit/2,0,unit),N); label("$1$",(unit,0,unit/2),W); label("$1$",(unit/2,0,0),N); label("$6$",(unit*(r+1)/2,0,0),N); label("$7$",(unit*r,unit*r/2,0),SW); // Block 2 import three; size(250);defaultpen(0.7+fontsize(9)); real unit = 0.5; real r = 2.8; triple O=(0,0,0), P=(0,0,unit+unit/(r-1)); dot(P); draw(O--P); draw(O--(unit,0,0)--(unit,0,unit)--(0,0,unit)); draw(O--(0,unit,0)--(0,unit,unit)--(0,0,unit)); draw((unit,0,0)--(unit,unit,0)--(unit,unit,unit)--(unit,0,unit)); draw((0,unit,0)--(unit,unit,0)--(unit,unit,unit)--(0,unit,unit)); draw(P--(r*unit,0,0)--(r*unit,r*unit,0)--(0,r*unit,0)--P); draw(P--(r*unit,r*unit,0)); draw((r*unit,0,0)--(0,0,0)--(0,r*unit,0)); draw(P--(0,0,unit)--(unit,0,unit)--(unit,0,0)--(r*unit,0,0)--P,dashed+blue+linewidth(0.8)); label("$x$",(0,0,unit+unit/(r-1)/2),WSW); label("$1$",(unit/2,0,unit),N); label("$1$",(unit,0,unit/2),W); label("$1$",(unit/2,0,0),N); label("$6$",(unit*(r+1)/2,0,0),N); label("$7$",(unit*r,unit*r/2,0),SW);
[]
75
Two squares of a $7\times 7$ checkerboard are painted yellow, and the rest are painted green. Two color schemes are equivalent if one can be obtained from the other by applying a rotation in the plane board. How many inequivalent color schemes are possible?
1996 AIME Problem 7
There are ${49 \choose 2}$ possible ways to select two squares to be painted yellow. There are four possible ways to rotate each board. Given an arbitrary pair of yellow squares, these four rotations will either yield two or four equivalent but distinct boards.                     For most pairs, there will be three other equivalent boards.For those symmetric about the center, there is only one other. Note that a pair of yellow squares will only yield $2$ distinct boards upon rotation iff the yellow squares are rotationally symmetric about the center square; there are $\frac{49-1}{2}=24$ such pairs. There are then ${49 \choose 2}-24$ pairs that yield $4$ distinct boards upon rotation; in other words, for each of the ${49 \choose 2}-24$ pairs, there are three other pairs that yield an equivalent board. Thus, the number of inequivalent boards is $\frac{{49 \choose 2} - 24}{4} + \frac{24}{2} = \boxed{300}$. For a $(2n+1) \times (2n+1)$ board, this argument generalizes to $n(n+1)(2n^2+2n+1)$ inequivalent configurations.
// Block 1 pathpen = black; pair O = (3.5,3.5); D(O); for(int i=0;i<7;++i) for(int j=0;j<7;++j) D(shift(i,j)*unitsquare); fill(shift(4,3)*unitsquare,rgb(1,1,.4));fill(shift(4,5)*unitsquare,rgb(1,1,.4)); fill(shift(3,4)*unitsquare,rgb(.8,.8,.5));fill(shift(1,4)*unitsquare,rgb(.8,.8,.5)); fill(shift(2,3)*unitsquare,rgb(.8,.8,.5));fill(shift(2,1)*unitsquare,rgb(.8,.8,.5)); fill(shift(3,2)*unitsquare,rgb(.8,.8,.5));fill(shift(5,2)*unitsquare,rgb(.8,.8,.5)); D(arc(O,1,280,350),EndArrow(4)); D(arc(O,5^.5,-20,50),EndArrow(4)); D(arc(O,1,10,80),EndArrow(4)); D(arc(O,5^.5,70,140),EndArrow(4)); D(arc(O,1,190,260),EndArrow(4)); D(arc(O,5^.5,250,320),EndArrow(4)); D(arc(O,1,100,170),EndArrow(4)); D(arc(O,5^.5,160,230),EndArrow(4)); // Block 2 pathpen = black; pair O = (3.5,3.5); D(O); for(int i=0;i<7;++i) for(int j=0;j<7;++j) D(shift(i,j)*unitsquare); fill(shift(4,5)*unitsquare,rgb(1,1,.4)); fill(shift(2,1)*unitsquare,rgb(1,1,.4)); fill(shift(1,4)*unitsquare,rgb(.8,.8,.5)); fill(shift(5,2)*unitsquare,rgb(.8,.8,.5)); D(arc(O,5^.5,-20,50),EndArrow(4)); D(arc(O,5^.5,70,140),EndArrow(4)); D(arc(O,5^.5,250,320),EndArrow(4)); D(arc(O,5^.5,160,230),EndArrow(4)); // Block 3 pathpen = black; pair O = (3.5,3.5); D(O); for(int i=0;i<7;++i) for(int j=0;j<7;++j) D(shift(i,j)*unitsquare); fill(shift(4,3)*unitsquare,rgb(1,1,.4));fill(shift(4,5)*unitsquare,rgb(1,1,.4)); fill(shift(3,4)*unitsquare,rgb(.8,.8,.5));fill(shift(1,4)*unitsquare,rgb(.8,.8,.5)); fill(shift(2,3)*unitsquare,rgb(.8,.8,.5));fill(shift(2,1)*unitsquare,rgb(.8,.8,.5)); fill(shift(3,2)*unitsquare,rgb(.8,.8,.5));fill(shift(5,2)*unitsquare,rgb(.8,.8,.5)); D(arc(O,1,280,350),EndArrow(4)); D(arc(O,5^.5,-20,50),EndArrow(4)); D(arc(O,1,10,80),EndArrow(4)); D(arc(O,5^.5,70,140),EndArrow(4)); D(arc(O,1,190,260),EndArrow(4)); D(arc(O,5^.5,250,320),EndArrow(4)); D(arc(O,1,100,170),EndArrow(4)); D(arc(O,5^.5,160,230),EndArrow(4)); // Block 4 pathpen = black; pair O = (3.5,3.5); D(O); for(int i=0;i<7;++i) for(int j=0;j<7;++j) D(shift(i,j)*unitsquare); fill(shift(4,5)*unitsquare,rgb(1,1,.4)); fill(shift(2,1)*unitsquare,rgb(1,1,.4)); fill(shift(1,4)*unitsquare,rgb(.8,.8,.5)); fill(shift(5,2)*unitsquare,rgb(.8,.8,.5)); D(arc(O,5^.5,-20,50),EndArrow(4)); D(arc(O,5^.5,70,140),EndArrow(4)); D(arc(O,5^.5,250,320),EndArrow(4)); D(arc(O,5^.5,160,230),EndArrow(4));
[]
76
In triangle $ABC$, $AB=\sqrt{30}$, $AC=\sqrt{6}$, and $BC=\sqrt{15}$. There is a point $D$ for which $\overline{AD}$ bisects $\overline{BC}$, and $\angle ADB$ is a right angle. The ratio $\frac{[ADB]}{[ABC]}$ can be written in the form $\dfrac{m}{n}$, where $m$ and $n$ are relatively prime positive integers. Find $m+n$.
1996 AIME Problem 13
Let $E$ be the midpoint of $\overline{BC}$. Since $BE = EC$, then $\triangle ABE$ and $\triangle AEC$ share the same height and have equal bases, and thus have the same area. Similarly, $\triangle BDE$ and $BAE$ share the same height, and have bases in the ratio $DE : AE$, so $\frac{[BDE]}{[BAE]} = \frac{DE}{AE}$ (see area ratios). Now, $\dfrac{[ADB]}{[ABC]} = \frac{[ABE] + [BDE]}{2[ABE]} = \frac{1}{2} + \frac{DE}{2AE}.$ By Stewart's Theorem, $AE = \frac{\sqrt{2(AB^2 + AC^2) - BC^2}}2 = \frac{\sqrt {57}}{2}$, and by the Pythagorean Theorem on $\triangle ABD, \triangle EBD$, \begin{align*} BD^2 + \left(DE + \frac {\sqrt{57}}2\right)^2 &= 30 \\ BD^2 + DE^2 &= \frac{15}{4} \\ \end{align*} Subtracting the two equations yields $DE\sqrt{57} + \frac{57}{4} = \frac{105}{4} \Longrightarrow DE = \frac{12}{\sqrt{57}}$. Then $\frac mn = \frac{1}{2} + \frac{DE}{2AE} = \frac{1}{2} + \frac{\frac{12}{\sqrt{57}}}{2 \cdot \frac{\sqrt{57}}{2}} = \frac{27}{38}$, and $m+n = \boxed{065}$.
// Block 1 pointpen = black; pathpen = black + linewidth(0.7); pair B=(0,0), C=(15^.5, 0), A=IP(CR(B,30^.5),CR(C,6^.5)), E=(B+C)/2, D=foot(B,A,E); D(MP("A",A)--MP("B",B,SW)--MP("C",C)--A--MP("D",D)--B); D(MP("E",E)); MP("\sqrt{30}",(A+B)/2,NW); MP("\sqrt{6}",(A+C)/2,SE); MP("\frac{\sqrt{15}}2",(E+C)/2); D(rightanglemark(B,D,A)); // Block 2 pointpen = black; pathpen = black + linewidth(0.7); pair B=(0,0), C=(15^.5, 0), A=IP(CR(B,30^.5),CR(C,6^.5)), E=(B+C)/2, D=foot(B,A,E); D(MP("A",A)--MP("B",B,SW)--MP("C",C)--A--MP("D",D)--B); D(MP("E",E)); MP("\sqrt{30}",(A+B)/2,NW); MP("\sqrt{6}",(A+C)/2,SE); MP("\frac{\sqrt{15}}2",(E+C)/2); D(rightanglemark(B,D,A));
[]
76
In triangle $ABC$, $AB=\sqrt{30}$, $AC=\sqrt{6}$, and $BC=\sqrt{15}$. There is a point $D$ for which $\overline{AD}$ bisects $\overline{BC}$, and $\angle ADB$ is a right angle. The ratio $\frac{[ADB]}{[ABC]}$ can be written in the form $\dfrac{m}{n}$, where $m$ and $n$ are relatively prime positive integers. Find $m+n$.
1996 AIME Problem 13
First, extend side \(AC\) to a point \(F\) such that \(AF \perp BF\). We begin by using the Law of Cosines to find \(\cos \angle ACB\): \[(\sqrt{6})^2 + (\sqrt{15})^2 - 2(\sqrt{6})(\sqrt{15})\cos \angle ACB = (\sqrt{30})^2.\] Simplifying, \[6 + 15 - 2\sqrt{90}\cos \angle ACB = 30,\] which gives \[-6\sqrt{10}\cos \angle ACB = 9 \quad \Rightarrow \quad \cos \angle ACB = -\frac{3}{2\sqrt{10}}.\] Using the Pythagorean identity, \[\sin \angle ACB = \sqrt{1 - \cos^2 \angle ACB} = \frac{\sqrt{310}}{20}.\] Let \([ABC]\) denote the area of \(\triangle ABC\). Using the area formula \(\tfrac{1}{2}ab\sin C\), \[[ABC] = \frac{1}{2}(\sqrt{6})(\sqrt{15})\left(\frac{\sqrt{310}}{20}\right) = \frac{3\sqrt{31}}{4}.\] Next, we use the Law of Cosines to find \(AE\): \[AE^2 = \left(\frac{\sqrt{15}}{2}\right)^2 + (\sqrt{6})^2 - 2\left(\frac{\sqrt{15}}{2}\right)(\sqrt{6})\left(-\frac{3}{2\sqrt{10}}\right).\] Simplifying, \[AE^2 = \frac{39}{4} + \frac{9}{2} = \frac{57}{4},\] so \[AE = \frac{\sqrt{57}}{2}.\] Since \(E\) is the midpoint of \(BC\), we have \([ACE] = [ABE] = \frac{3\sqrt{31}}{8}\). Solving for \(\sin \angle BEA\), \[\frac{1}{2}\left(\frac{\sqrt{15}}{2}\right)\left(\frac{\sqrt{57}}{2}\right)\sin \angle BEA = \frac{3\sqrt{31}}{8},\] which simplifies to \[\sqrt{95}\sin \angle BEA = \sqrt{31},\] so \[\sin \angle BEA = \sqrt{\frac{31}{95}}.\] Using a Pythagorean identity, \[\cos \angle BEA = \frac{8}{\sqrt{95}}.\] Now, solving for \(DE\), \[\frac{DE}{\frac{\sqrt{15}}{2}} = \frac{8}{\sqrt{95}} \quad \Rightarrow \quad DE = \frac{4\sqrt{15}}{\sqrt{95}} = 4\sqrt{\frac{3}{19}}.\] We now find the area of \(\triangle BDE\): \[[BDE] = \frac{1}{2}\left(4\sqrt{\frac{3}{19}}\right)\left(\frac{\sqrt{15}}{2}\right)\left(\sqrt{\frac{31}{95}}\right) = \frac{6\sqrt{31}}{38}.\] Adding areas, \[[ADB] = [ABE] + [BDE] = \frac{3\sqrt{31}}{8} + \frac{6\sqrt{31}}{38} = \frac{81\sqrt{31}}{152}.\] Taking the ratio, \[\frac{[ADB]}{[ABC]} = \frac{\frac{81\sqrt{31}}{152}}{\frac{3\sqrt{31}}{4}} = \frac{27}{38}.\] Since the problem asks for \(m+n\), we have \(27 + 38 = \boxed{065}.\) ~Voidling
// Block 1 pointpen = black; pathpen = black + linewidth(0.7); pair B=(0,0), C=(15^.5, 0), A=IP(CR(B,30^.5),CR(C,6^.5)), E=(B+C)/2, D=foot(B,A,E); pair F = foot(B, A, C); D(MP("A",A)--MP("B",B,SW)--MP("C",C)--A--MP("D",D)--B); D(MP("E",E)); D(C--MP("F",F,E)--B, dashed); // Draw C-F-B, dashed to show it's an extension MP("\sqrt{30}",(A+B)/2,NW); MP("\sqrt{6}",(A+C)/2,SE); MP("\frac{\sqrt{15}}2",(E+C)/2); D(rightanglemark(B,D,A)); D(rightanglemark(B,F,C)); // Right angle at F // Block 2 pointpen = black; pathpen = black + linewidth(0.7); pair B=(0,0), C=(15^.5, 0), A=IP(CR(B,30^.5),CR(C,6^.5)), E=(B+C)/2, D=foot(B,A,E); pair F = foot(B, A, C); D(MP("A",A)--MP("B",B,SW)--MP("C",C)--A--MP("D",D)--B); D(MP("E",E)); D(C--MP("F",F,E)--B, dashed); // Draw C-F-B, dashed to show it's an extension MP("\sqrt{30}",(A+B)/2,NW); MP("\sqrt{6}",(A+C)/2,SE); MP("\frac{\sqrt{15}}2",(E+C)/2); D(rightanglemark(B,D,A)); D(rightanglemark(B,F,C)); // Right angle at F
[]
77
In parallelogram $ABCD$, let $O$ be the intersection of diagonals $\overline{AC}$ and $\overline{BD}$. Angles $CAB$ and $DBC$ are each twice as large as angle $DBA$, and angle $ACB$ is $r$ times as large as angle $AOB$. Find $\lfloor 1000r \rfloor$. Contents 1 Problem 2 Solution 2.1 Solution 1 (trigonometry) 2.2 Solution 2 (trigonometry) 2.3 Solution 3 3 See also
1996 AIME Problem 15
Solution 1 (trigonometry) Let $\theta = \angle DBA$. Then $\angle CAB = \angle DBC = 2\theta$, $\angle AOB = 180 - 3\theta$, and $\angle ACB = 180 - 5\theta$. Since $ABCD$ is a parallelogram, it follows that $OA = OC$. By the Law of Sines on $\triangle ABO,\, \triangle BCO$, $\frac{\sin \angle CBO}{OC} = \frac{\sin \angle ACB}{OB} \quad \text{and} \quad \frac{\sin \angle DBA}{OC} = \frac{\sin \angle BAC}{OB}.$ Dividing the two equalities yields \[\frac{\sin 2\theta}{\sin \theta} = \frac{\sin (180 - 5\theta)}{\sin 2\theta} \Longrightarrow \sin^2 2\theta = \sin 5\theta \sin \theta.\] Pythagorean and product-to-sum identities yield \[1 - \cos^2 2 \theta = \frac{\cos 4\theta - \cos 6 \theta}{2},\] and the double and triple angle ($\cos 3x = 4\cos^3 x - 3\cos x$) formulas further simplify this to \[4\cos^3 2\theta - 4\cos^2 2\theta - 3\cos 2\theta + 3 = (4\cos^2 2\theta - 3)(\cos 2\theta - 1) = 0\] The only value of $\theta$ that fits in this context comes from $4 \cos^2 2\theta - 3 = 0 \Longrightarrow \cos 2\theta = \frac{\sqrt{3}}{2} \Longrightarrow \theta = 15^{\circ}$. The answer is $\lfloor 1000r \rfloor = \left\lfloor 1000 \cdot \frac{180 - 5\theta}{180 - 3\theta} \right\rfloor = \left \lfloor \frac{7000}{9} \right \rfloor = \boxed{777}$. Solution 2 (trigonometry) Define $\theta$ as above. Since $\angle CAB = \angle CBO$, it follows that $\triangle COB \sim \triangle CBA$, and so $\frac{CO}{BC} = \frac{BC}{AC} \Longrightarrow BC^2 = AC \cdot CO = 2CO^2 \Longrightarrow BC = CO\sqrt{2}$. The Law of Sines on $\triangle BOC$ yields that \[\frac{BC}{CO} = \frac{\sin (180-3\theta)}{\sin 2\theta} = \frac{\sin 3\theta}{\sin 2\theta} = \sqrt{2}\] Expanding using the sine double and triple angle formulas, we have \[2\sqrt {2} \sin \theta \cos \theta = \sin\theta( - 4\sin ^2 \theta + 3) \Longrightarrow \sin \theta\left(4\cos^2\theta - 2\sqrt {2} \cos \theta - 1\right) = 0.\] By the quadratic formula, we have $\cos \theta = \frac {2\sqrt {2} \pm \sqrt {8 + 4 \cdot 1 \cdot 4}}{8} = \frac {\sqrt {6} \pm \sqrt {2}}{4}$, so $\theta = 15^{\circ}$ (as the other roots are too large to make sense in context). The answer follows as above. Solution 3 We will focus on $\triangle ABC$. Let $\angle ABO = x$, so $\angle BAO = \angle OBC = 2x$. Draw the perpendicular from $C$ intersecting $AB$ at $H$. Without loss of generality, let $AO = CO = 1$. Then $HO = 1$, since $O$ is the circumcenter of $\triangle AHC$. Then $\angle OHA = 2x$. By the Exterior Angle Theorem, $\angle COB = 3x$ and $\angle COH = 4x$. That implies that $\angle HOB = x$. That makes $HO = HB = 1$. Then since by AA ($\angle HBC = \angle HOC = 3x$ and reflexive on $\angle OCB$), $\triangle OCB \sim \triangle BCA$. $\frac {CO}{BC} = \frac {BC}{AC} \implies 2 = BC^2 = \implies BC = \sqrt {2}.$ Then by the Pythagorean Theorem, $1^2 + HC^2 = \left(\sqrt {2}\right)^2\implies HC = 1$. That makes $\triangle HOC$ equilateral. Then $\angle HOC = 4x = 60 \implies x = 15$. The answer follows as above.
size(180); pathpen = black+linewidth(0.7); pair B=(0,0), A=expi(pi/4), C=IP(A--A + 2*expi(17*pi/12), B--(3,0)), D=A+C, O=IP(A--C,B--D); D(MP("A",A,N)--MP("B",B)--MP("C",C)--MP("D",D,N)--cycle); D(B--D); D(A--C); D(MP("O",O,SE)); D(anglemark(D,B,A,4));D(anglemark(B,A,C,3.5));D(anglemark(B,A,C,4.5));D(anglemark(C,B,D,3.5));D(anglemark(C,B,D,4.5));
[]
78
A car travels due east at $\frac 23$ mile per minute on a long, straight road. At the same time, a circular storm, whose radius is $51$ miles, moves southeast at $\frac 12\sqrt{2}$ mile per minute. At time $t=0$, the center of the storm is $110$ miles due north of the car. At time $t=t_1$ minutes, the car enters the storm circle, and at time $t=t_2$ minutes, the car leaves the storm circle. Find $\frac 12(t_1+t_2)$.
1997 AIME Problem 7
We only need to know how the storm and car move relative to each other, so we can find this by subtracting the storm's movement vector from the car's. This gives the car's movement vector as $\left(\frac{1}{6}, \frac{1}{2}\right)$. Labeling the car's starting position A, the storm center B, and the right triangle formed by AB with a right angle at B and the car's path, we get the following diagram, with AD as our desired length since D is the average of the points where the car enters and exits the storm. $AB = 110$, so $CB = \frac{110}{3}$. The Pythagorean Theorem then gives $AC = \frac{110\sqrt{10}}{3}$, and since $\bigtriangleup ABC \sim \bigtriangleup ADB$, $AD = (AB)\frac{AB}{AC} = 33\sqrt{10}$. The Pythagorean Theorem now gives the car's speed as $\sqrt{\frac{5}{18}}$, and finally $\frac{33\sqrt{10}}{\sqrt{\frac{5}{18}}} = \boxed{198}$.
// Block 1 size(200,200); draw((0,0)--(0,110)); label("A",(0,0),S); dot((0,0)); dot((0,110)); label("B",(0,110),NE); draw(circle((0,110),51)); draw((0,0)--(161/3,161.0),EndArrow); draw((0,110)--(110/3,110.0)); label("C",(110/3,110.0),SE); dot((110/3,110.0)); label("D",(33,99),SE); dot((33,99)); draw((0,110)--(33,99)); markscalefactor=1; draw(rightanglemark((0,110),(33,99),(0,0))); // Block 2 size(200,200); draw((0,0)--(0,110)); label("A",(0,0),S); dot((0,0)); dot((0,110)); label("B",(0,110),NE); draw(circle((0,110),51)); draw((0,0)--(161/3,161.0),EndArrow); draw((0,110)--(110/3,110.0)); label("C",(110/3,110.0),SE); dot((110/3,110.0)); label("D",(33,99),SE); dot((33,99)); draw((0,110)--(33,99)); markscalefactor=1; draw(rightanglemark((0,110),(33,99),(0,0)));
[]
79
Two mathematicians take a morning coffee break each day. They arrive at the cafeteria independently, at random times between 9 a.m. and 10 a.m., and stay for exactly $m$ minutes. The probability that either one arrives while the other is in the cafeteria is $40 \%,$ and $m = a - b\sqrt {c},$ where $a, b,$ and $c$ are positive integers, and $c$ is not divisible by the square of any prime. Find $a + b + c.$ Contents 1 Problem 2 Solution 2.1 Solution 1 2.2 Solution 2 2.3 Video Solution 3 See also
1998 AIME Problem 9
Solution 1 Let the two mathematicians be $M_1$ and $M_2$. Consider plotting the times that they are on break on a coordinate plane with one axis being the time $M_1$ arrives and the second axis being the time $M_2$ arrives (in minutes past 9 a.m.). The two mathematicians meet each other when $|M_1-M_2| \leq m$. Also because the mathematicians arrive between 9 and 10, $0 \leq M_1,M_2 \leq 60$. Therefore, $60\times 60$ square represents the possible arrival times of the mathematicians, while the shaded region represents the arrival times where they meet. It's easier to compute the area of the unshaded region over the area of the total region, which is the probability that the mathematicians do not meet: $\frac{(60-m)^2}{60^2} = 0.6$ $(60-m)^2 = 36\cdot 60$ $60 - m = 12\sqrt{15}$ $\Rightarrow m = 60-12\sqrt{15}$ So the answer is $60 + 12 + 15 = 087$. Solution 2 Case 1: [Image: images/aime/1998_AIME_Problem_9_0.png] Case 2: [Image: images/aime/1998_AIME_Problem_9_1.png] We draw a number line representing the time interval. If mathematician $M_1$ comes in at the center of the time period, then the two mathematicions will meet if $M_2$ comes in somewhere between $m$ minutes before and after $M_1$ comes (a total range of $2m$ minutes). However, if $M_1$ comes into the cafeteria in the first or last $m$ minutes, then the range in which $M_2$ is reduced to somewhere in between $m$ and $2m$. We now try to find the weighted average of the chance that the two meet. In the central $60-2m$ minutes, $M_1$ and $M_2$ have to enter the cafeteria within $m$ minutes of each other; so if we fix point $M_1$ then $M_2$ has a $\frac{2m}{60} = \frac{m}{30}$ probability of meeting. In the first and last $2m$ minutes, the probability that the two meet ranges from $\frac{m}{60}$ to $\frac{2m}{60}$, depending upon the location of $M_1$ with respect to the endpoints. Intuitively, the average probability will occur at $\frac{\frac{3}{2}m}{60} = \frac{m}{40}$. So the weighted average is: $\frac{\frac{m}{30}(60-2m) + \frac{m}{40}(2m)}{60} = \frac{40}{100}$ $0 = \frac{m^2}{60} - 2m + 24$ $0 = m^2 - 120m + 1440$ Solving this quadratic, we get two roots, $60 \pm 12\sqrt{15}$. However, $m < 60$, so we discard the greater root; and thus our answer $60 + 12 + 15 = 087$. Video Solution ~MaPhyCom
import graph; size(180); real m=60-12*sqrt(15); draw((0,0)--(60,0)--(60,60)--(0,60)--cycle); fill((m,0)--(60,60-m)--(60,60)--(60-m,60)--(0,m)--(0,0)--cycle,lightgray); draw((m,0)--(60,60-m)--(60,60)--(60-m,60)--(0,m)--(0,0)--cycle); xaxis("$M_1$",-10,80); yaxis("$M_2$",-10,80); label(rotate(45)*"$M_1-M_2\le m$",((m+60)/2,(60-m)/2),NW,fontsize(9)); label(rotate(45)*"$M_1-M_2\ge -m$",((60-m)/2,(m+60)/2),SE,fontsize(9)); label("$m$",(m,0),S); label("$m$",(0,m),W); label("$60$",(60,0),S); label("$60$",(0,60),W);
["https://artofproblemsolving.com/wiki/images/8/86/AIME_1998-9.png", "https://artofproblemsolving.com/wiki/images/7/7a/AIME_1998-9b.png"]