返回题库

AIME 2008 I · 第 3 题

AIME 2008 I — Problem 3

专题
Contest Math
难度
L4
来源
AIME

题目详情

Problem

Ed and Sue bike at equal and constant rates. Similarly, they jog at equal and constant rates, and they swim at equal and constant rates. Ed covers 7474 kilometers after biking for 22 hours, jogging for 33 hours, and swimming for 44 hours, while Sue covers 9191 kilometers after jogging for 22 hours, swimming for 33 hours, and biking for 44 hours. Their biking, jogging, and swimming rates are all whole numbers of kilometers per hour. Find the sum of the squares of Ed's biking, jogging, and swimming rates.

解析

Solution 1

Let the biking rate be bb, swimming rate be ss, jogging rate be jj, all in km/h.

We have 2b+3j+4s=74,2j+3s+4b=912b + 3j + 4s = 74,2j + 3s + 4b = 91. Subtracting the second from twice the first gives 4j+5s=574j + 5s = 57. Mod 4, we need s1(mod4)s\equiv1\pmod{4}. Thus, (j,s)=(13,1),(8,5),(3,9)(j,s) = (13,1),(8,5),(3,9).

(13,1)(13,1) and (3,9)(3,9) give non-integral bb, but (8,5)(8,5) gives b=15b = 15. Thus, our answer is 152+82+52=31415^{2} + 8^{2} + 5^{2} = \boxed{314}.

Note: You can really quickly take the first equation 2b+3j+4s=742b + 3j + 4s = 74 mod 2, which will give j0(mod2)j \equiv 0 \pmod{2}. The only one of the ordered pairs that has an even j is (8,5)(8,5). ~ unhappyfarmer

Solution 2

Let bb, jj, and ss be the biking, jogging, and swimming rates of the two people. Hence, 2b+3j+4s=742b + 3j + 4s = 74 and 4b+2j+3s=914b + 2j + 3s = 91. Subtracting gives us that 2bjs=172b - j - s = 17. Adding three times this to the first equation gives that 8b+s=125    b158b + s = 125\implies b\le 15. Adding four times the previous equation to the first given one gives us that 10bj=142    b>14    b1510b - j = 142\implies b > 14\implies b\ge 15. This gives us that b=15b = 15, and then j=8j = 8 and s=5s = 5. Therefore, b2+s2+j2=225+64+25=314b^2 + s^2 + j^2 = 225 + 64 + 25 = \boxed{314}.

Solution 3

Creating two systems, we get 2x+3y+4z=742x+3y+4z=74, and 2y+3z+4x=912y+3z+4x=91. Subtracting the two expressions we get y+z2x=17y+z-2x=-17. Note that 17-17 is odd, so one of x,y,zx,y,z is odd. We see from our second expression that zz must be odd, because 9191 is also odd and 2y2y and 4x4x are odd. Thus, with this information, we can test cases quickly:

When readdressing the first equation, we see that if 2x+3y2x+3y will be a multiple of 66, 4z2(mod6)=54z \equiv 2 \pmod{6} = 5, we get that x=15x=15 and y=8y=8, which works because of integer values. Therefore, 225+64+25=314.225+64+25=\boxed{314}.

Solution 4 (Logic)

Building on top of Solution 3, we can add j+s2b=17j+s-2b=17 and 2b+3j+4s=742b+3j+4s=74 (sorry, I used different variables) to get 4j+5s=574j+5s=57. Logically speaking, most athletic people swim a lot faster than 1 km/h (0.62 mph), so we test out the next case that works, which is 5 km/h (3.1 mph). This seems much more logical, so we plug it into the equation to get 4j+25=57    j=84j+25=57\implies j=8. This seems reasonable, as people usually jog at around 8 to 16 km/h. Plugging these values into 2b+3j+4s=742b+3j+4s=74, we get b=15b=15. 15 km/h is a little slow (most people bike at 20 km/h), but is still reasonable. So, we get 52+82+152=3145^2+8^2+15^2=\boxed{314}.

Note: Solving 4j+5s=574j+5s=57 yields 3 solutions for (j,s)(j,s): (13,1),(8,5),(3,9)(13,1),(8,5),(3,9), and only (8,5)(8,5) gives us an integer bb value and we don't need the assumption, which is also false, since swimming at 5km/h5 km/h over 44 hours is also pretty insane, so none of the swimming speeds make any sense.