返回题库

AIME 1987 · 第 7 题

AIME 1987 — Problem 7

专题
Contest Math
难度
L4
来源
AIME

题目详情

Problem

Let [r,s][r,s] denote the least common multiple of positive integers rr and ss. Find the number of ordered triples (a,b,c)(a,b,c) of positive integers for which [a,b]=1000[a,b] = 1000, [b,c]=2000[b,c] = 2000, and [c,a]=2000[c,a] = 2000.

解析

Solution 1

It's clear that we must have a=2j5ka = 2^j5^k, b=2m5nb = 2^m 5^n and c=2p5qc = 2^p5^q for some nonnegative integers j,k,m,n,p,qj, k, m, n, p, q. Dealing first with the powers of 2: from the given conditions, max(j,m)=3\max(j, m) = 3, max(m,p)=max(p,j)=4\max(m, p) = \max(p, j) = 4. Thus we must have p=4p = 4 and at least one of m,jm, j equal to 3. This gives 7 possible triples (j,m,p)(j, m, p): (0,3,4),(1,3,4),(2,3,4),(3,3,4),(3,2,4),(3,1,4)(0, 3, 4), (1, 3, 4), (2, 3, 4), (3, 3, 4), (3, 2, 4), (3, 1, 4) and (3,0,4)(3, 0, 4).

Now, for the powers of 5: we have max(k,n)=max(n,q)=max(q,k)=3\max(k, n) = \max(n, q) = \max(q, k) = 3. Thus, at least two of k,n,qk, n, q must be equal to 3, and the other can take any value between 0 and 3. This gives us a total of 10 possible triples: (3,3,3)(3, 3, 3) and three possibilities of each of the forms (3,3,n)(3, 3, n), (3,n,3)(3, n, 3) and (n,3,3)(n, 3, 3).

Since the exponents of 2 and 5 must satisfy these conditions independently, we have a total of 710=707 \cdot 10 = 70 possible valid triples.

Solution 2

1000=23531000 = 2^35^3 and 2000=24532000 = 2^45^3. By looking at the prime factorization of 20002000, cc must have a factor of 242^4. If cc has a factor of 535^3, then there are two cases: either (1) aa or b=5323b = 5^32^3, or (2) one of aa and bb has a factor of 535^3 and the other a factor of 232^3. For case 1, the other number will be in the form of 2x5y2^x5^y, so there are 44=164 \cdot 4 = 16 possible such numbers; since this can be either aa or bb there are a total of 2(16)1=312(16)-1=31 possibilities. For case 2, aa and bb are in the form of 235x2^35^x and 2y532^y5^3, with x<3x < 3 and y<3y < 3 (if they were equal to 3, it would overlap with case 1). Thus, there are 2(33)=182(3 \cdot 3) = 18 cases.

If cc does not have a factor of 535^3, then at least one of aa and bb must be 23532^35^3, and both must have a factor of 535^3. Then, there are 44 solutions possible just considering a=2353a = 2^35^3, and a total of 421=74 \cdot 2 - 1 = 7 possibilities. Multiplying by three, as 0c20 \le c \le 2, there are 73=217 \cdot 3 = 21. Together, that makes 31+18+21=7031 + 18 + 21 = 70 solutions for (a,b,c)(a, b, c).