2024 AIME II Problems/Problem 10

Revision as of 14:58, 13 February 2024 by Kingravi (talk | contribs) (Solution 1 (Continued))

Problem

Let $\triangle ABC$ have circumcenter $O$ and incenter $I$ with $\overline{IA}\perp\overline{OI}$, circumradius $13$, and inradius $6$. Find $AB\cdot AC$.

Solution 1 (Similar Triangles and PoP)

Start off by (of course) drawing a diagram! Let $I$ and $O$ be the incenter and circumcenters of triangle $ABC$, respectively. Furthermore, extend $AI$ to meet $BC$ at $L$ and the circumcircle of triangle $ABC$ at $D$.

[asy] size(300); import olympiad; real c=8.1,a=5*(c+sqrt(c^2-64))/6,b=5*(c-sqrt(c^2-64))/6; pair B=(0,0),C=(c,0), D = (c/2-0.01, -2.26); pair A = (c/3,8.65*c/10); draw(circumcircle(A,B,C)); pair I=incenter(A,B,C); pair O=circumcenter(A,B,C); pair L=extension(A,I,C,B); dot(I^^O^^A^^B^^C^^D^^L); draw(A--L); draw(A--D); path midangle(pair d,pair e,pair f) {return e--e+((f-e)/length(f-e)+(d-e)/length(d-e))/2;} draw(C--B--D--cycle); draw(A--C--B); draw(A--B); draw(B--I--C^^A--I); draw(incircle(A,B,C)); label("$B$",B,SW); label("$C$",C,SE); label("$A$",A,N); label("$D$",D,S); label("$I$",I,NW); label("$L$",L,SW); label("$O$",O,E); label("$\alpha$",B,5*dir(midangle(A,B,I)),fontsize(8)); label("$\alpha$",B,5*dir(midangle(I,B,C)),fontsize(8)); label("$\beta$",C,12*dir(midangle(B,C,I)),fontsize(8)); label("$\beta$",C,12*dir(midangle(I,C,A)),fontsize(8)); label("$\gamma$",A,5*dir(midangle(B,A,I)),fontsize(8)); label("$\gamma$",A,5*dir(midangle(I,A,C)),fontsize(8));  draw(I--O); draw(A--O); draw(rightanglemark(A,I,O)); [/asy]


We'll tackle the initial steps of the problem in two different manners, both leading us to the same final calculations.

Solution 1.1

Since $I$ is the incenter, $\angle BAL \cong \angle DAC$. Furthermore, $\angle ABC$ and $\angle ADC$ are both subtended by the same arc $AC$, so $\angle ABC \cong \angle ADC.$ Therefore by AA similarity, $\triangle ABL \sim \triangle ADC$. From this we can say that \[\frac{AB}{AD} = \frac{AL}{AC} \implies AB \cdot AC = AL \cdot AD\]

Since $AD$ is a chord of the circle and $OI$ is a perpendicular from the center to that chord, $OI$ must bisect $AD$. This can be seen by drawing $OD$ and recognizing that this creates two congruent right triangles. Therefore, \[AD = 2 \cdot ID \implies AB \cdot AC = 2 \cdot AL \cdot ID\]

We have successfully represented $AB \cdot AC$ in terms of $AL$ and $ID$. Solution 1.2 will explain an alternate method to get a similar relationship, and then we'll rejoin and finish off the solution.

Solution 1.2

$\angle ALB \cong \angle DLC$ by vertical angles and $\angle LBA \cong \angle CDA$ because both are subtended by arc $AC$. Thus $\triangle ABL \sim \triangle CDL$.

Thus \[\frac{AB}{CD} = \frac{AL}{CL} \implies AB = CD \cdot \frac{AL}{CL}\]

Symmetrically, we get $\triangle ALC \sim \triangle BLD$, so \[\frac{AC}{BD} = \frac{AL}{BL} \implies AC = BD \cdot \frac{AL}{BL}\]

Substituting, we get \[AB \cdot AC = CD \cdot \frac{AL}{CL} \cdot BD \cdot \frac{AL}{BL}\]

Lemma 1: BD = CD = ID

Proof:

We commence angle chasing: we know $\angle DBC \cong DAC = \gamma$. Therefore \[\angle IBD = \alpha + \gamma\]. Looking at triangle $ABI$, we see that $\angle IBA = \alpha$, and $\angle BAI = \gamma$. Therefore because the sum of the angles must be $180$, $\angle BIA = 180-\alpha - \gamma$. Now $AD$ is a straight line, so \[\angle BID = 180-\angle BIA = \alpha+\gamma\]. Since $\angle IBD = \angle BID$, triangle $IBD$ is isosceles and thus $ID = BD$.

A similar argument should suffice to show $CD = ID$ by symmetry, so thus $ID = BD = CD$.

Now we regroup and get \[CD \cdot \frac{AL}{CL} \cdot BD \cdot \frac{AL}{BL} = ID^2 \cdot \frac{AL^2}{BL \cdot CL}\]

Now note that $BL$ and $CL$ are part of the same chord in the circle, so we can use Power of a point to express their product differently. \[BL \cdot CL = AL \cdot LD \implies AB \cdot AC = ID^2 \cdot \frac{AL}{LD}\]

Solution 1 (Continued)

Now we have some sort of expression for $AB \cdot AC$ in terms of $ID$ and $AL$. Let's try to find $AL$ first.

Drop an altitude from $D$ to $BC$, $I$ to $AC$, and $I$ to $BC$:

[asy] size(300); import olympiad; real c=8.1,a=5*(c+sqrt(c^2-64))/6,b=5*(c-sqrt(c^2-64))/6; pair B=(0,0),C=(c,0), D = (c/2-0.01, -2.26), E = (c/2-0.01,0); pair A = (c/3,8.65*c/10); pair F = (2*c/3-0.14, 4-0.29); pair G = (c/2-0.7,0); draw(circumcircle(A,B,C)); pair I=incenter(A,B,C); pair O=circumcenter(A,B,C); pair L=extension(A,I,C,B); dot(I^^O^^A^^B^^C^^D^^L^^E^^F^^G); draw(A--L); draw(A--D); draw(D--E); draw(I--F); path midangle(pair d,pair e,pair f) {return e--e+((f-e)/length(f-e)+(d-e)/length(d-e))/2;} draw(C--B--D--cycle); draw(A--C--B); draw(A--B); draw(B--I--C^^A--I); draw(incircle(A,B,C)); label("$B$",B,SW); label("$C$",C,SE); label("$A$",A,N); label("$D$",D,S); label("$I$",I,NW); label("$L$",L,SW); label("$O$",O,E); label("$E$",E,N); label("$F$",F,NE); label("$G$",G,SW); label("$\alpha$",B,5*dir(midangle(A,B,I)),fontsize(8)); label("$\alpha$",B,5*dir(midangle(I,B,C)),fontsize(8)); label("$\beta$",C,12*dir(midangle(B,C,I)),fontsize(8)); label("$\beta$",C,12*dir(midangle(I,C,A)),fontsize(8)); label("$\gamma$",A,5*dir(midangle(B,A,I)),fontsize(8)); label("$\gamma$",A,5*dir(midangle(I,A,C)),fontsize(8));   draw(I--O); draw(A--O); draw(rightanglemark(A,I,O)); draw(rightanglemark(B,E,D)); draw(rightanglemark(I,F,A)); [/asy]



Solution in Progress ~KingRavi

Solution

By Euler's formula $OI^{2}=R(R-2r)$, we have $OI^{2}=13(13-12)=13$. Thus, by the Pythagorean theorem, $AI^{2}=13^{2}-13=156$. Let $AI\cap(ABC)=M$; notice $\triangle AOM$ is isosceles and $\overline{OI}\perp\overline{AM}$ which is enough to imply that $I$ is the midpoint of $\overline{AM}$, and $M$ itself is the midpoint of $II_{a}$ where $I_{a}$ is the $A$-excenter of $\triangle ABC$. Therefore, $AI=IM=MI_{a}=\sqrt{156}$ and \[AB\cdot AC=AI\cdot AI_{a}=3\cdot AI^{2}=\boxed{468}.\]

Note that this problem is extremely similar to 2019 CIME I/14.


Solution 2

Denote $AB=a, AC=b, BC=c$. By the given condition, $\frac{abc}{4A}=13; \frac{2A}{a+b+c}=6$, where $A$ is the area of $\triangle{ABC}$.

Moreover, since $OI\bot AI$, the second intersection of the line $AI$ and $(ABC)$ is the reflection of $A$ about $I$, denote that as $D$. By the incenter-excenter lemma, $DI=BD=CD=\frac{AD}{2}\implies BD(a+b)=2BD\cdot c\implies a+b=2c$.

Thus, we have $\frac{2A}{a+b+c}=\frac{2A}{3c}=6, A=9c$. Now, we have $\frac{abc}{4A}=\frac{abc}{36c}=\frac{ab}{36}=13\implies ab=\boxed{468}$

~Bluesoul

Solution 3

Denote by $R$ and $r$ the circumradius and inradius, respectively.

First, we have \[ r = 4 R \sin \frac{A}{2} \sin \frac{B}{2} \sin \frac{C}{2} \hspace{1cm} (1) \]

Second, because $AI \perp IO$, \begin{align*} AI & = AO \cos \angle IAO \\ & = AO \cos \left( 90^\circ - C - \frac{A}{2} \right) \\ & = AO \sin \left( C + \frac{A}{2} \right) \\ & = R \sin \left( C + \frac{180^\circ - B - C}{2} \right) \\ & = R \cos \frac{B - C}{2} . \end{align*}

Thus, \begin{align*} r & = AI \sin \frac{A}{2} \\ & = R \sin \frac{A}{2} \cos \frac{B-C}{2} \hspace{1cm} (2) \end{align*}

Taking $(1) - (2)$, we get \[ 4 \sin \frac{B}{2} \sin \frac{C}{2} = \cos \frac{B-C}{2} . \]

We have \begin{align*} 2 \sin \frac{B}{2} \sin \frac{C}{2} & = - \cos \frac{B+C}{2} + \cos \frac{B-C}{2} . \end{align*}

Plugging this into the above equation, we get \[ \cos \frac{B-C}{2} = 2 \cos \frac{B+C}{2} . \hspace{1cm} (3) \]

Now, we analyze Equation (2). We have \begin{align*} \frac{r}{R} & = \sin \frac{A}{2} \cos \frac{B-C}{2} \\ & = \sin \frac{180^\circ - B - C}{2} \cos \frac{B-C}{2} \\ & = \cos \frac{B+C}{2} \cos \frac{B-C}{2} \hspace{1cm} (4) \end{align*}

Solving Equations (3) and (4), we get \[ \cos \frac{B+C}{2} = \sqrt{\frac{r}{2R}}, \hspace{1cm} \cos \frac{B-C}{2} = \sqrt{\frac{2r}{R}} . \hspace{1cm} (5) \]

Now, we compute $AB \cdot AC$. We have \begin{align*} AB \cdot AC & = 2R \sin C \cdot 2R \sin B \\ & = 2 R^2 \left( - \cos \left( B + C \right) + \cos \left( B - C \right) \right) \\ & = 2 R^2 \left( - \left( 2 \left( \cos \frac{B+C}{2} \right)^2 - 1 \right) + \left( 2 \left( \cos \frac{B-C}{2} \right)^2 - 1 \right) \right) \\ & = 6 R r \\ & = \boxed{\textbf{(468) }} \end{align*} where the first equality follows from the law of sines, the fourth equality follows from (5).


~Steven Chen (Professor Chen Education Palace, www.professorchenedu.com)

Video Solution

https://youtu.be/_zxBvojcAQ4

~Steven Chen (Professor Chen Education Palace, www.professorchenedu.com)


See also

2024 AIME II (ProblemsAnswer KeyResources)
Preceded by
Problem 9
Followed by
Problem 11
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
All AIME Problems and Solutions

The problems on this page are copyrighted by the Mathematical Association of America's American Mathematics Competitions. AMC logo.png