返回题库

AIME 2001 II · 第 10 题

AIME 2001 II — Problem 10

专题
Contest Math
难度
L4
来源
AIME

题目详情

Problem

How many positive integer multiples of 10011001 can be expressed in the form 10j10i10^{j} - 10^{i}, where ii and jj are integers and 0i<j990\leq i < j \leq 99?

解析

Solution 1

The prime factorization of 1001=7×11×131001 = 7\times 11\times 13. We have 7×11×13×k=10j10i=10i(10ji1)7\times 11\times 13\times k = 10^j - 10^i = 10^i(10^{j - i} - 1). Since gcd(10i=2i×5i,7×11×13)=1\text{gcd}\,(10^i = 2^i \times 5^i, 7 \times 11 \times 13) = 1, we require that 1001=103+110ji11001 = 10^3 + 1 | 10^{j-i} - 1. From the factorization 1061=(103+1)(1031)10^6 - 1 = (10^3 + 1)(10^{3} - 1), we see that ji=6j-i = 6 works; also, abanbna-b | a^n - b^n implies that 1061106k110^{6} - 1 | 10^{6k} - 1, and so any ji0(mod6)\boxed{j-i \equiv 0 \pmod{6}} will work.

To show that no other possibilities work, suppose jia(mod6), 1a5j-i \equiv a \pmod{6},\ 1 \le a \le 5, and let jia=6kj-i-a = 6k. Then we can write 10ji1=10a(106k1)+(10a1)10^{j-i} - 1 = 10^{a} \left(10^{6k} - 1\right) + \left(10^{a} - 1\right), and we observe that 106k1=(106)k1k10^{6k}-1 = \left(10^6\right)^k-1^k, which is divisible by 106110^6-1, and thus by 103+110^3+1 (as 1061=(103)212=(103+1)(1031)10^6-1 = \left(10^3\right)^2-1^2 = \left(10^3+1\right)\left(10^3-1\right)). It follows that the first term is divisible by 10011001, whereas we can easily verify that the second term, 10a110^a-1, is not divisible by 10011001 for 1a51 \le a \le 5, so 10ji10^{j-i} is not divisible by 10011001 for such aa.

If ji=6,j99j - i = 6, j\leq 99, then we can have solutions of 106100,107101,    9410^6 - 10^0, 10^7 - 10^1, \dots\implies 94 ways. If ji=12j - i = 12, we can have the solutions of 1012100,    946=8810^{12} - 10^{0},\dots\implies 94 - 6 = 88, and so forth. Therefore, the answer is 94+88+82++4    16(982)=78494 + 88 + 82 + \dots + 4\implies 16\left(\dfrac{98}{2}\right) = \boxed{784}.

Solution 2

Observation: We see that there is a pattern with 10k(mod1001)10^k \pmod{1001}.

1001(mod1001)10^0 \equiv 1 \pmod{1001} 10110(mod1001)10^1 \equiv 10 \pmod{1001} 102100(mod1001)10^2 \equiv 100 \pmod{1001} 1031(mod1001)10^3 \equiv -1 \pmod{1001} 10410(mod1001)10^4 \equiv -10 \pmod{1001} 105100(mod1001)10^5 \equiv -100 \pmod{1001} 1061(mod1001)10^6 \equiv 1 \pmod{1001} 10710(mod1001)10^7 \equiv 10 \pmod{1001} 108100(mod1001)10^8 \equiv 100 \pmod{1001} So, this pattern repeats every 6.

Also, 10j10i0(mod1001)10^j-10^i \equiv 0 \pmod{1001}, so 10j10i(mod1001)10^j \equiv 10^i \pmod{1001}, and thus,

ji(mod6)j \equiv i \pmod{6} . Continue with the 2nd paragraph of solution 1, and we get the answer of 784\boxed{784}.

-AlexLikeMath

Solution 3

Note that 1001=71113,1001=7\cdot 11\cdot 13, and note that 1061(modp)10^6 \equiv 1 \pmod{p} for prime p1001p \mid 1001; therefore, the order of 10 modulo 7,117,11, and 1313 must divide 6. A quick check on 7 reveals that it is indeed 6. Therefore we note that ij=6ki-j=6k for some natural number k. From here, we note that for j=0,1,2,3,j=0,1,2,3, we have 16 options and we have 15,14,...,1 option(s) for the next 90 numbers (6 each), so our total is 416+615162=7844\cdot 16 + 6 \cdot \frac{15 \cdot 16}{2} = \boxed{784}.

~Dhillonr25

Solution 4

10j10i0(mod1001)    10ji10(mod1001)    10ji1(mod1001)    ji(mod6)10^j - 10^i \equiv 0 \pmod{1001} \iff 10^{j - i} - 1 \equiv 0 \pmod{1001} \iff 10^{j - i} \equiv 1 \pmod{1001} \iff j \equiv i \pmod 6, by the same argument as in all the solutions above. If jin(mod6)j \equiv i \equiv n \pmod 6 for n=0,1,2,3n = 0, 1, 2, 3, there are 1717 choices for each value of nn, yielding 4(172)=5444 \cdot \dbinom{17}{2} = 544. However, if n=4,5n = 4, 5, there are only 1616 choices, giving us 2(162)=2402 \cdot \dbinom{16}{2} = 240. So, our final answer is 544+240=784544 + 240 = \boxed{784}. ~Puck_0