返回题库

AIME 2003 I · 第 7 题

AIME 2003 I — Problem 7

专题
Contest Math
难度
L4
来源
AIME

题目详情

Problem

Point BB is on AC\overline{AC} with AB=9AB = 9 and BC=21.BC = 21. Point DD is not on AC\overline{AC} so that AD=CD,AD = CD, and ADAD and BDBD are integers. Let ss be the sum of all possible perimeters of ACD\triangle ACD. Find s.s.

解析

Solution 1 (Pythagorean Theorem)

AIME diagram

Denote the height of ACD\triangle ACD as hh, x=AD=CDx = AD = CD, and y=BDy = BD. Using the Pythagorean theorem, we find that h2=y262h^2 = y^2 - 6^2 and h2=x2152h^2 = x^2 - 15^2. Thus, y236=x2225x2y2=189y^2 - 36 = x^2 - 225 \Longrightarrow x^2 - y^2 = 189. The LHS is difference of squares, so (x+y)(xy)=189(x + y)(x - y) = 189. As both x, yx,\ y are integers, x+y, xyx+y,\ x-y must be integral divisors of 189189.

The pairs of divisors of 189189 are (1,189) (3,63) (7,27) (9,21)(1,189)\ (3,63)\ (7,27)\ (9,21). This yields the four potential sets for (x,y)(x,y) as (95,94) (33,30) (17,10) (15,6)(95,94)\ (33,30)\ (17,10)\ (15,6). The last is not a possibility since it simply degenerates into a line. The sum of the three possible perimeters of ACD\triangle ACD is equal to 3(AC)+2(x1+x2+x3)=90+2(95+33+17)=3803(AC) + 2(x_1 + x_2 + x_3) = 90 + 2(95 + 33 + 17) = \boxed{380}.

Note

One can also conclude (15,6)(15,6) doesn't work as it violates the triangle inequality.

~Pinotation

Solution 2 (Stewart's Theorem)

Let AD=cAD=c and BD=dBD=d, then by Stewart's Theorem we have:

30d2+21930=9c2+21c2=30c230d^2+21*9*30=9c^2+21c^2=30c^2. After simplifying:

d2c2=189d^2-c^2=189.

The solution follows as above.

Solution 3 (Law of Cosines)

Drop an altitude from point DD to side ACAC. Let the intersection point be EE. Since triangle ADCADC is isosceles, AE is half of ACAC, or 1515. Then, label side AD as xx. Since AEDAED is a right triangle, you can figure out cosA\cos A with adjacent divided by hypotenuse, which in this case is AEAE divided by xx, or 15x\frac{15}{x}. Now we apply law of cosines. Label BDBD as yy. Applying law of cosines, y2=x2+922x9cosAy^2 = x^2+9^2- 2 \cdot x \cdot 9 \cdot \cos A. Since cosA\cos A is equal to 15x\frac{15}{x}, y2=x2+922x915xy^2 = x^2+9^2- 2 \cdot x \cdot 9 \cdot \frac{15}{x}, which can be simplified to x2y2=189x^2-y^2=189. The solution proceeds as the first solution does.

-intelligence_20