0

Show that there is a number consisting only of 1’s that is divisible by 2001.

ie, we have to prove 2001 divides $1+10+10^2+10^3+...+10^k$ for some $k$,

How can we proceed now?

Ethan Bolker
  • 95,224
  • 7
  • 108
  • 199
Riaz
  • 2,174

4 Answers4

7

Consider the set $S = \{1, 11, 111, 1111, \ldots \}$. By the Pigeonhole Principle, two of these numbers must be equal modulo $2001$. Subtracting yields a number divisible by $2001$ of the form $10^k s$, where $s \in S$. But $\gcd(10, 2001) = 1$, so $2001 \mid s$.

6

By Euler's theorem, $2001|10^{\phi(2001)}-1$.

Since $2001=3\times23\times29, \phi(2001)=2\times22\times28=1232.$

Therefore $\dfrac{2001} 3=23\times29=667|\dfrac{10^{\phi(2001)}-1}9, $ so $2001=3\times667 |\dfrac{10^{3\phi(2001)}-1}9. $

J. W. Tanner
  • 60,406
2

First, we have

$$2001 = (3)(23)(29).$$

Now, let $R_{n} = \frac{10^{n} - 1}{9}$ denote the $nth$ repunit.

Since $3 | R_{3}, \, 23 | R_{22},$ and $29 | R_{28}$, and

Because $LCM(3, 22, 28) = 924$, it follows that

$$2001 \, | \, R_{924} = \frac{10^{924} - 1}{9}.$$

DDS
  • 3,199
  • 1
  • 8
  • 31
1

$2001=3\cdot 23\cdot 29$, and $23\cdot 29$ is a divisor of $10^{\text{lcm}(22,28)}-1=10^{308}-1$.
It follows that $2001$ is a divisor of $\frac{10^{924}-1}{9}$, which is a number made by $924$ digits equal to $9$.

As an alternative, the sequence defined by $$ a_0 = 0, \qquad a_{n+1} = 10 a_n+1 $$ is periodic $\!\!\pmod{m}$ for any $m$, see here. In particular there is some $k\in[1,2001]$ such that $a_k\equiv a_0\equiv 0\pmod{2001}$.

Jack D'Aurizio
  • 353,855