返回题库

AIME 2005 II · 第 4 题

AIME 2005 II — Problem 4

专题
Contest Math
难度
L4
来源
AIME

题目详情

Problem

Find the number of positive integers that are divisors of at least one of 1010,157,1811.10^{10},15^7,18^{11}.

解析

Solution 1

1010=21051010^{10} = 2^{10}\cdot 5^{10} so 101010^{10} has 1111=12111\cdot11 = 121 divisors.

157=375715^7 = 3^7\cdot5^7 so 15715^7 has 88=648\cdot8 = 64 divisors.

1811=21132218^{11} = 2^{11}\cdot3^{22} so 181118^{11} has 1223=27612\cdot23 = 276 divisors.

Now, we use the Principle of Inclusion-Exclusion. We have 121+64+276121 + 64 + 276 total potential divisors so far, but we've overcounted those factors which divide two or more of our three numbers. Thus, we must subtract off the divisors of their pair-wise greatest common divisors.

gcd(1010,157)=57\gcd(10^{10},15^7) = 5^7 which has 8 divisors.

gcd(157,1811)=37\gcd(15^7, 18^{11}) = 3^7 which has 8 divisors.

gcd(1811,1010)=210\gcd(18^{11}, 10^{10}) = 2^{10} which has 11 divisors.

So now we have 121+64+2768811121 + 64 + 276 - 8 -8 -11 potential divisors. However, we've now undercounted those factors which divide all three of our numbers. Luckily, we see that the only such factor is 1, so we must add 1 to our previous sum to get an answer of 121+64+2768811+1=435121 + 64 + 276 - 8 - 8 - 11 + 1 = \boxed{435}.

Solution 2

We can rewrite the three numbers as 1010=21051010^{10} = 2^{10}\cdot 5^{10}, 157=375715^7 = 3^7\cdot5^7, and 1811=21132218^{11} = 2^{11}\cdot3^{22}. Assume that nn (a positive integer) is a divisor of one of the numbers. Therefore, nn can be expressed as p1e1{p_1}^{e_1} or as p2e2p3e3{p_2}^{e_2}{p_3}^{e_3} where p1p_1, p2p_2 are in {2,3,5}\{2,3,5\} and e1e_1, e2e_2 are positive integers.

If nn is the power of a single prime, then there are 11 possibilities (212^1 to 2112^{11}) for p1=2p_1=2, 22 possibilities (313^1 to 3223^{22}) for p1=3p_1=3, 10 possibilities (515^1 to 5105^{10}) for p1=5p_1=5, and 1 possibility if n=1n=1. From this case, there are 11+22+10+1=4411+22+10+1=44 possibilities.

If nn is the product of the powers of two primes, then we can just multiply the exponents of each rewritten product to get the number of possibilities, since each exponent of the product must be greater than 0. From this case, there are 1010+1122+77=100+242+49=39110*10+11*22+7*7=100+242+49=391 possibilities.

Adding up the two cases, there are 44+391=43544+391=\boxed{435} positive integers.

-alpha_2