Difference between revisions of "2008 iTest Problems/Problem 94"
(solution) |
Rockmanex3 (talk | contribs) m |
||
(2 intermediate revisions by one other user not shown) | |||
Line 6: | Line 6: | ||
== Solution == | == Solution == | ||
+ | ===Solution 1=== | ||
The largest prime number less than <math>2008</math> is <math>2003</math>; we claim that this is the answer. Indeed, we claim that the <math>6007</math>th term divides <math>2003</math>, where <math>6007</math> is prime (and hence [[relatively prime]] to <math>2003</math>). | The largest prime number less than <math>2008</math> is <math>2003</math>; we claim that this is the answer. Indeed, we claim that the <math>6007</math>th term divides <math>2003</math>, where <math>6007</math> is prime (and hence [[relatively prime]] to <math>2003</math>). | ||
To do so, we claim that | To do so, we claim that | ||
− | < | + | <cmath>\begin{align*} f(6007) \equiv 6007\left\lfloor \frac{2008^{6007}}{6007} \right\rfloor \equiv 0 \pmod{2003} \tag{1} \end{align*}</cmath> |
holds, and since <math>6007</math> is prime the result follows. Indeed, <math>\left\lfloor \frac{2008^{6007}}{6007} \right\rfloor = \frac{2008^{6007}}{6007} - \left\{\frac{2008^{6007}}{6007}\right\}</math>, where <math>\{x\} = x - \lfloor x \rfloor</math> denotes the fractional part of a number. So <math>(1)</math> becomes | holds, and since <math>6007</math> is prime the result follows. Indeed, <math>\left\lfloor \frac{2008^{6007}}{6007} \right\rfloor = \frac{2008^{6007}}{6007} - \left\{\frac{2008^{6007}}{6007}\right\}</math>, where <math>\{x\} = x - \lfloor x \rfloor</math> denotes the fractional part of a number. So <math>(1)</math> becomes | ||
− | < | + | <cmath>\begin{align*} f(6007) \equiv 2008^{6007} - 6007\left\{\frac{2008^{6007}}{6007}\right\} \pmod{2003} \tag{2} \end{align*}</cmath> |
By [[Fermat's Little Theorem]], we have <math>2008^{2002} \equiv 1 \pmod{2003}</math>, so <math>2008^{6007} \equiv 2008^{2002} \cdot 2008 \equiv 2008 \pmod{2003}</math>. Also, <math>6007\left\{\frac{2008^{6007}}{6007}\right\}</math> is equivalent to the remainder when <math>2008^{6007}</math> is divided by <math>6007</math>, and by Fermat's Little Theorem again, we have <math>2008^{6007} \equiv 2008 \pmod{6007}</math>. Hence, equation <math>(2)</math> reduces to | By [[Fermat's Little Theorem]], we have <math>2008^{2002} \equiv 1 \pmod{2003}</math>, so <math>2008^{6007} \equiv 2008^{2002} \cdot 2008 \equiv 2008 \pmod{2003}</math>. Also, <math>6007\left\{\frac{2008^{6007}}{6007}\right\}</math> is equivalent to the remainder when <math>2008^{6007}</math> is divided by <math>6007</math>, and by Fermat's Little Theorem again, we have <math>2008^{6007} \equiv 2008 \pmod{6007}</math>. Hence, equation <math>(2)</math> reduces to | ||
− | < | + | <cmath> \begin{align*}f(6007)\equiv 2008 - 2008 \equiv 0 \pmod{2003} \end{align*}</cmath> |
− | as desired. | + | as desired. |
− | == See | + | ===Solution 2 (Official Solution)=== |
+ | Fermat's Little Theorem tells us that for a prime <math>p</math> that is not a divisor of <math>2008</math>, <math>2008^p\equiv 2008\pmod p</math>, so <math>p\mid (2008^p - 2008)</math>. When <math>p>2008</math>, then <cmath>\begin{align*}\left\lfloor\frac{2008^p}p\right\rfloor &= \left\lfloor\frac{2008^p - 2008}p\right\rfloor \\ &= \frac{2008^p - 2008}p.\end{align*}</cmath> Now that we have an expression to work with that doesn't involve the floor function, we begin to manipulate it in order to make it useful: <cmath>\frac{2008^p - 2008}p = \dfrac{2008}p(2008 - 1)\sum_{k=0}^{p-2}2008^k = \left(\frac{2007\cdot 2008}p\right)\sum_{k=0}^{p-2}2008^k.</cmath> The most general piece we have to work with is the summation <math>\sum_{k=0}^{p-2}2008^k</math>. We look for some way to determine which primes <math>q</math> can be factors of this expression. So long as <math>\gcd(q,2007\cdot 2008) = 1</math>, then by Fermat's Little Theorem, <math>q</math> divides <cmath>2008^{q-1} - 1 = (2008-1)(2008^{q-2} + 2008^{q-3} + \cdots + 2008 + 1),</cmath> and so <cmath>q\mid (2008^{q-2} + 2008^{q-3} + \cdots + 2008 + 1).</cmath> Now we note that <math>(2008^{q-2} + 2008^{q-3} + \cdots + 2008 + 1)</math> divides evenly into <math>\sum_{k=0}^{p-2}2008^k</math> when <math>q-1</math> is a divisor of <math>p-1</math>. So, if there exists such a prime <math>p</math>, then <math>q</math> is a divisor of some term of the given sequence. Dirichlet's Theorem guarantees that within the arithmetic sequence <cmath>q,\quad 2q-1,\quad 3q-2,\quad 4q-3,\quad\ldots,</cmath> there are infinitely many primes. ONe of them, <math>mq-m+1=p</math> implies that <math>p-1 = m(q-1)</math>. For sufficiently large <math>p</math>, this completes our proof that each prime <math>q</math> that is relatively prime to <math>2007</math> and <math>2008</math> must be a divisor of some term in the given sequence. The largest prime less than <math>2008</math> is <math>2003</math>, which is our answer. | ||
+ | |||
+ | ==See Also== | ||
+ | {{2008 iTest box|num-b=93|num-a=95}} | ||
[[Category:Olympiad Number Theory Problems]] | [[Category:Olympiad Number Theory Problems]] |
Latest revision as of 21:21, 22 November 2018
Problem
Find the largest prime number less than that is a divisor of some integer in the infinite
sequence
Solution
Solution 1
The largest prime number less than is
; we claim that this is the answer. Indeed, we claim that the
th term divides
, where
is prime (and hence relatively prime to
).
To do so, we claim that
holds, and since is prime the result follows. Indeed,
, where
denotes the fractional part of a number. So
becomes
By Fermat's Little Theorem, we have , so
. Also,
is equivalent to the remainder when
is divided by
, and by Fermat's Little Theorem again, we have
. Hence, equation
reduces to
as desired.
Solution 2 (Official Solution)
Fermat's Little Theorem tells us that for a prime that is not a divisor of
,
, so
. When
, then
Now that we have an expression to work with that doesn't involve the floor function, we begin to manipulate it in order to make it useful:
The most general piece we have to work with is the summation
. We look for some way to determine which primes
can be factors of this expression. So long as
, then by Fermat's Little Theorem,
divides
and so
Now we note that
divides evenly into
when
is a divisor of
. So, if there exists such a prime
, then
is a divisor of some term of the given sequence. Dirichlet's Theorem guarantees that within the arithmetic sequence
there are infinitely many primes. ONe of them,
implies that
. For sufficiently large
, this completes our proof that each prime
that is relatively prime to
and
must be a divisor of some term in the given sequence. The largest prime less than
is
, which is our answer.
See Also
2008 iTest (Problems) | ||
Preceded by: Problem 93 |
Followed by: Problem 95 | |
1 • 2 • 3 • 4 • 5 • 6 • 7 • 8 • 9 • 10 • 11 • 12 • 13 • 14 • 15 • 16 • 17 • 18 • 19 • 20 • 21 • 22 • 23 • 24 • 25 • 26 • 27 • 28 • 29 • 30 • 31 • 32 • 33 • 34 • 35 • 36 • 37 • 38 • 39 • 40 • 41 • 42 • 43 • 44 • 45 • 46 • 47 • 48 • 49 • 50 • 51 • 52 • 53 • 54 • 55 • 56 • 57 • 58 • 59 • 60 • 61 • 62 • 63 • 64 • 65 • 66 • 67 • 68 • 69 • 70 • 71 • 72 • 73 • 74 • 75 • 76 • 77 • 78 • 79 • 80 • 81 • 82 • 83 • 84 • 85 • 86 • 87 • 88 • 89 • 90 • 91 • 92 • 93 • 94 • 95 • 96 • 97 • 98 • 99 • 100 |