返回题库

AIME 2012 II · 第 4 题

AIME 2012 II — Problem 4

专题
Contest Math
难度
L4
来源
AIME

题目详情

Problem 4

Ana, Bob, and Cao bike at constant rates of 8.68.6 meters per second, 6.26.2 meters per second, and 55 meters per second, respectively. They all begin biking at the same time from the northeast corner of a rectangular field whose longer side runs due west. Ana starts biking along the edge of the field, initially heading west, Bob starts biking along the edge of the field, initially heading south, and Cao bikes in a straight line across the field to a point DD on the south edge of the field. Cao arrives at point DD at the same time that Ana and Bob arrive at DD for the first time. The ratio of the field's length to the field's width to the distance from point DD to the southeast corner of the field can be represented as p:q:rp : q : r, where pp, qq, and rr are positive integers with pp and qq relatively prime. Find p+q+rp+q+r.

解析

Solution 1 (bash)

AIME diagram

Let a,b,ca,b,c be the labeled lengths as shown in the diagram. Also, assume WLOG the time taken is 11 second.

Observe that 2a+b+c8.6=1\dfrac{2a+b+c}{8.6}=1 or 2a+b+c=8.62a+b+c=8.6, and b+c6.2=1\dfrac{b+c}{6.2}=1 or b+c=6.2b+c=6.2. Subtracting the second equation from the first gives 2a=2.42a=2.4, or a=1.2a=1.2.

Now, let us solve bb and cc. Note that b2+c25=1\dfrac{\sqrt{b^2+c^2}}{5}=1, or b2+c2=25b^2+c^2=25. We also have b+c=6.2b+c=6.2.

We have a system of equations:

{b+c=6.2b2+c2=25\left\{\begin{array}{l}b+c=6.2\\ b^2+c^2=25\end{array}\right. Squaring the first equation gives b2+2bc+c2=38.44b^2+2bc+c^2=38.44, and subtracting the second from this gives 2bc=13.442bc=13.44. Now subtracting this from b2+c2=25b^2+c^2=25 gives b22bc+c2=(bc)2=11.56b^2-2bc+c^2=(b-c)^2=11.56, or bc=3.4b-c=3.4. Now we have the following two equations:

{b+c=6.2bc=3.4\left\{\begin{array}{l}b+c=6.2\\ b-c=3.4\end{array}\right. Adding the equations and dividing by two gives b=4.8b=4.8, and it follows that c=1.4c=1.4.

The ratios we desire are therefore 1.4:6:4.8=7:30:241.4:6:4.8=7:30:24, and our answer is 7+30+24=0617+30+24=\boxed{061}.

Note that in our diagram, we labeled the part of the bottom bb and the side cc. However, these labels are interchangeable. We can cancel out the case where the side is 4.84.8 and the part of the bottom is 1.41.4 by noting a restriction of the problem: "...a rectangular field whose longer side runs due west." If we had the side be 4.84.8, then the entire bottom would be 1.2+1.4=2.61.2+1.4=2.6, clearly less than 4.84.8 and therefore violating our restriction.

Solution 2 (uglier bash)

Let P, Q, and R be the east-west distance of the field, the north-south distance, and the distance from the southeast corner to point D, respectively.

Ana's distance to point D = P+Q+(PR)=2P+QRP + Q + (P - R) = 2P + Q - R

Bob's distance to point D = Q+RQ + R

Cao's distance to point D = Q2+R2\sqrt{Q^2 + R^2}

Since they arrive at the same time, their distance/speed ratios are equal, so:

2P+QR8.6=Q+R6.2=Q2+R25\frac{2P + Q - R}{8.6} = \frac{Q + R}{6.2} = \frac{\sqrt{Q^2 + R^2}}{5} 2P+QR43=Q+R31=Q2+R225\frac{2P + Q - R}{43} = \frac{Q + R}{31} = \frac{\sqrt{Q^2 + R^2}}{25} Looking at the last two parts of the equation:

Q+R31=Q2+R225\frac{Q + R}{31} = \frac{\sqrt{Q^2 + R^2}}{25} 25(Q+R)=31Q2+R225 (Q + R) = 31 \sqrt{Q^2 + R^2} 625Q2+1250QR+625R2=961Q2+961R2625 Q^2 + 1250 QR + 625 R^2 = 961 Q^2 + 961 R^2 336Q21250QR+336R2=0336 Q^2 - 1250 QR + 336 R^2 = 0 168(QR)2625QR+168=0168 (\frac{Q}{R})^2 - 625 \frac{Q}{R}+ 168 = 0 QR=625±625241682336\frac{Q}{R} = \frac{625 \pm \sqrt{625^2 - 4 \cdot 168^2}}{336} QR=24/7  or  7/24\frac{Q}{R} = 24/7\;or\;7/24 Looking at the first two parts of the equation above:

2P+QR43=Q+R31\frac{2 P + Q - R}{43} = \frac{Q + R}{31} 62P+31Q31R=43Q+43R62 P + 31 Q - 31 R = 43 Q + 43 R P=631Q+3731RP = \frac{6}{31}Q + \frac{37}{31} R If QR=247\frac{Q}{R} = \frac{24}{7}:

R=724QR = \frac{7}{24} Q P=631Q+3731724Q=1324QP = \frac{6}{31} Q + \frac{37}{31} \cdot \frac{7}{24} Q = \frac{13}{24} Q However, this makes P < Q, but we are given that P > Q. Therefore, QR=724\frac{Q}{R} = \frac{7}{24}, and:

R=247QR = \frac{24}{7} Q P=631Q+3731247Q=307QP = \frac{6}{31} Q + \frac{37}{31} \cdot \frac{24}{7} Q = \frac{30}{7} Q P:Q:R=30:7:24P : Q : R = 30 : 7 : 24 The solution is P+Q+R=061P + Q + R = \boxed{061}.