2024 AIME II Problems/Problem 10

Revision as of 15:34, 12 February 2024 by Kingravi (talk | contribs) (Problem)

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$.

[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.7*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(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,NE); 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)); [/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