Difference between revisions of "2021 AIME II Problems/Problem 13"
MRENTHUSIASM (talk | contribs) m (→Solution 3 (Chinese Remainder Theorem and Binomial Theorem)) |
(→Solution 1) |
||
(58 intermediate revisions by 8 users not shown) | |||
Line 4: | Line 4: | ||
==Solution 1== | ==Solution 1== | ||
− | 1000 divides this expression | + | Recall that <math>1000</math> divides this expression if <math>8</math> and <math>125</math> both divide it. It should be fairly obvious that <math>n \geq 3</math>; so we may break up the initial condition into two sub-conditions. |
− | (1) <math>5^n \equiv n \pmod{8}</math>. Notice that the square of any odd integer is 1 modulo 8 (proof by plugging in <math>1^2 | + | (1) <math>5^n \equiv n \pmod{8}</math>. Notice that the square of any odd integer is <math>1</math> modulo <math>8</math> (proof by plugging in <math>1^2,3^2,5^2,7^2</math> into modulo <math>8</math>), so the LHS of this expression goes <math>5,1,5,1,\ldots</math>, while the RHS goes <math>1,2,3,4,5,6,7,8,1,\ldots</math>. The cycle length of the LHS is <math>2</math>, RHS is <math>8</math>, so the cycle length of the solution is <math>\operatorname{lcm}(2,8)=8</math>. Indeed, the <math>n</math> that solve this congruence are exactly those such that <math>n \equiv 5 \pmod{8}</math>. |
− | (2) <math>2^n \equiv n \pmod{125}</math>. This is extremely computationally intensive if | + | (2) <math>2^n \equiv n \pmod{125}</math>. This is extremely computationally intensive if we try to calculate all <math>2^1,2^2,\ldots,2^{100} \pmod{125}</math>, so we take a divide-and-conquer approach instead. In order for this expression to be true, <math>2^n \equiv n \pmod{5}</math> is necessary; it shouldn't take too long for us to go through the <math>20</math> possible LHS-RHS combinations, considering that <math>n</math> must be odd. We only need to test <math>10</math> values of <math>n</math> and obtain <math>n \equiv 3 \pmod{20}</math> or <math>n \equiv 17 \pmod{20}</math>. |
− | With this in mind we consider <math>2^n \equiv n</math> | + | With this in mind we consider <math>2^n \equiv n \pmod{25}</math>. By the Generalized Fermat's Little Theorem, <math>2^{20} \equiv 1 \pmod{25}</math>, but we already have <math>n</math> modulo <math>20</math>. Our calculation is greatly simplified. The LHS's cycle length is <math>20</math> and the RHS's cycle length is <math>25</math>, from which their least common multiple is <math>100</math>. In this step we need to test all the numbers between <math>1</math> to <math>100</math> that <math>n \equiv 3 \pmod{20}</math> or <math>n \equiv 17 \pmod{20}</math>. In the case that <math>n \equiv 3 \pmod{20}</math>, the RHS goes <math>3,23,43,63,83</math>, and we need <math>2^n \equiv n \equiv 2^3 \pmod{25}</math>; clearly <math>n \equiv 83 \pmod{100}</math>. In the case that <math>n \equiv 17 \pmod{20}</math>, by a similar argument, <math>n \equiv 97 \pmod{100}</math>. |
− | In the final step, we need to calculate <math>2^{97} | + | In the final step, we need to calculate <math>2^{97}</math> and <math>2^{83}</math> modulo <math>125</math>: |
+ | |||
+ | Note that <math>2^{97}\equiv2^{-3}</math>; because <math>8\cdot47=376\equiv1\pmod{125},</math> we get <math>2^{97} \equiv 47\pmod{125}</math>. | ||
+ | |||
+ | Note that <math>2^{83}</math> is <math>2^{-17}=2^{-16}\cdot2^{-1}</math>. We have | ||
<cmath>\begin{align*} | <cmath>\begin{align*} | ||
− | 2^{-1}& | + | 2^{-1}&\equiv63, \\ |
− | 2^{-2}& | + | 2^{-2}&\equiv63^2=3969\equiv-31, \\ |
− | 2^{-4}& | + | 2^{-4}&\equiv(-31)^2=961\equiv-39, \\ |
− | 2^{-8}& | + | 2^{-8}&\equiv1521\equiv21, \\ |
− | 2^{-16}& | + | 2^{-16}&\equiv441, \\ |
− | 2^{-17}& | + | 2^{-17}&\equiv63\cdot441\equiv7\cdot(-31)=-217\equiv33. |
\end{align*}</cmath> | \end{align*}</cmath> | ||
− | This time, LHS cycle is 100, RHS cycle is 125, so we need to figure out | + | This time, LHS cycle is <math>100</math>, RHS cycle is <math>125</math>, so we need to figure out <math>n</math> modulo <math>500</math>. It should be <math>n \equiv 283,297 \pmod{500}</math>. |
− | Put everything together. By the second subcondition, the only candidates < | + | Put everything together. By the second subcondition, the only candidates less than <math>1000</math> are <math>283,297,783,797</math>. Apply the first subcondition, <math>n=\boxed{797}</math> is the desired answer. |
− | + | ~Ross Gao (Solution) | |
+ | |||
+ | ~MRENTHUSIASM (Minor Reformatting) | ||
==Solution 2== | ==Solution 2== | ||
We have that <math>2^n + 5^n \equiv n\pmod{1000}</math>, or <math>2^n + 5^n \equiv n \pmod{8}</math> and <math>2^n + 5^n \equiv n \pmod{125}</math> by CRT. It is easy to check <math>n < 3</math> don't work, so we have that <math>n \geq 3</math>. Then, <math>2^n \equiv 0 \pmod{8}</math> and <math>5^n \equiv 0 \pmod{125}</math>, so we just have <math>5^n \equiv n \pmod{8}</math> and <math>2^n \equiv n \pmod{125}</math>. Let us consider both of these congruences separately. | We have that <math>2^n + 5^n \equiv n\pmod{1000}</math>, or <math>2^n + 5^n \equiv n \pmod{8}</math> and <math>2^n + 5^n \equiv n \pmod{125}</math> by CRT. It is easy to check <math>n < 3</math> don't work, so we have that <math>n \geq 3</math>. Then, <math>2^n \equiv 0 \pmod{8}</math> and <math>5^n \equiv 0 \pmod{125}</math>, so we just have <math>5^n \equiv n \pmod{8}</math> and <math>2^n \equiv n \pmod{125}</math>. Let us consider both of these congruences separately. | ||
− | |||
First, we look at <math>5^n \equiv n \pmod{8}</math>. By Euler's Totient Theorem (ETT), we have <math>5^4 \equiv 1 \pmod{8}</math>, so <math>5^5 \equiv 5 \pmod{8}</math>. On the RHS of the congruence, the possible values of <math>n</math> are all nonnegative integers less than <math>8</math> and on the RHS the only possible values are <math>5</math> and <math>1</math>. However, for <math>5^n</math> to be <math>1 \pmod{8}</math> we must have <math>n \equiv 0 \pmod{4}</math>, a contradiction. So, the only possible values of <math>n</math> are when <math>n \equiv 5 \pmod{8} \implies n = 8k+5</math>. | First, we look at <math>5^n \equiv n \pmod{8}</math>. By Euler's Totient Theorem (ETT), we have <math>5^4 \equiv 1 \pmod{8}</math>, so <math>5^5 \equiv 5 \pmod{8}</math>. On the RHS of the congruence, the possible values of <math>n</math> are all nonnegative integers less than <math>8</math> and on the RHS the only possible values are <math>5</math> and <math>1</math>. However, for <math>5^n</math> to be <math>1 \pmod{8}</math> we must have <math>n \equiv 0 \pmod{4}</math>, a contradiction. So, the only possible values of <math>n</math> are when <math>n \equiv 5 \pmod{8} \implies n = 8k+5</math>. | ||
Line 35: | Line 40: | ||
Now we look at <math>2^n \equiv n \pmod{125}</math>. Plugging in <math>n = 8k+5</math>, we get <math>2^{8k+5} \equiv 8k+5 \pmod{125} \implies 2^{8k} \cdot 32 \equiv 8k+5 \pmod{125}</math>. Note, for <math>2^n \equiv n\pmod{125}</math> to be satisfied, we must have <math>2^n \equiv n \pmod{5}</math> and <math>2^n \equiv n\pmod{25}</math>. Since <math>2^{8k} \equiv 1\pmod{5}</math> as <math>8k \equiv 0\pmod{4}</math>, we have <math>2 \equiv -2k \pmod{5} \implies k = 5m-1</math>. Then, <math>n = 8(5m-1) + 5 = 40m-3</math>. Now, we get <math>2^{40m-3} \equiv 40m-3 \pmod{125}</math>. Using the fact that <math>2^n \equiv n\pmod{25}</math>, we get <math>2^{-3} \equiv 15m-3 \pmod{25}</math>. The inverse of <math>2</math> modulo <math>25</math> is obviously <math>13</math>, so <math>2^{-3} \equiv 13^3 \equiv 22 \pmod{25}</math>, so <math>15m \equiv 0 \pmod{25} \implies m = 5s</math>. Plugging in <math>m = 5s</math>, we get <math>n = 200s - 3</math>. | Now we look at <math>2^n \equiv n \pmod{125}</math>. Plugging in <math>n = 8k+5</math>, we get <math>2^{8k+5} \equiv 8k+5 \pmod{125} \implies 2^{8k} \cdot 32 \equiv 8k+5 \pmod{125}</math>. Note, for <math>2^n \equiv n\pmod{125}</math> to be satisfied, we must have <math>2^n \equiv n \pmod{5}</math> and <math>2^n \equiv n\pmod{25}</math>. Since <math>2^{8k} \equiv 1\pmod{5}</math> as <math>8k \equiv 0\pmod{4}</math>, we have <math>2 \equiv -2k \pmod{5} \implies k = 5m-1</math>. Then, <math>n = 8(5m-1) + 5 = 40m-3</math>. Now, we get <math>2^{40m-3} \equiv 40m-3 \pmod{125}</math>. Using the fact that <math>2^n \equiv n\pmod{25}</math>, we get <math>2^{-3} \equiv 15m-3 \pmod{25}</math>. The inverse of <math>2</math> modulo <math>25</math> is obviously <math>13</math>, so <math>2^{-3} \equiv 13^3 \equiv 22 \pmod{25}</math>, so <math>15m \equiv 0 \pmod{25} \implies m = 5s</math>. Plugging in <math>m = 5s</math>, we get <math>n = 200s - 3</math>. | ||
− | Now, we are finally ready to plug <math>n</math> into the congruence modulo <math>125</math>. Plugging in, we get <math>2^{200s-3} \equiv 200s - 3 \pmod{125}</math>. By ETT, we get <math>2^{100} \equiv 1 \pmod{125}</math>, so <math>2^{200s- 3} \equiv 2^{-3} \equiv 47 \pmod{125}</math>. Then, <math>200s \equiv 50 \pmod{125} \implies s \equiv 4 \pmod{5} \implies s = 5y+4</math>. Plugging this in, we get <math>n = 200(5y+4) - 3 = 1000y+797</math>, implying the smallest value of <math>n</math> is simply <math>\boxed{797}</math>. ~rocketsri | + | Now, we are finally ready to plug <math>n</math> into the congruence modulo <math>125</math>. Plugging in, we get <math>2^{200s-3} \equiv 200s - 3 \pmod{125}</math>. By ETT, we get <math>2^{100} \equiv 1 \pmod{125}</math>, so <math>2^{200s- 3} \equiv 2^{-3} \equiv 47 \pmod{125}</math>. Then, <math>200s \equiv 50 \pmod{125} \implies s \equiv 4 \pmod{5} \implies s = 5y+4</math>. Plugging this in, we get <math>n = 200(5y+4) - 3 = 1000y+797</math>, implying the smallest value of <math>n</math> is simply <math>\boxed{797}</math>. |
+ | |||
+ | ~rocketsri | ||
==Solution 3 (Chinese Remainder Theorem and Binomial Theorem)== | ==Solution 3 (Chinese Remainder Theorem and Binomial Theorem)== | ||
− | We wish to find the least positive integer <math>n</math> for which <math>2^n+5^n-n\equiv0\pmod{1000}.</math> Rearranging gives <cmath>2^n+5^n\equiv n\pmod{1000}.</cmath> Applying the Chinese Remainder Theorem, we get the following | + | We wish to find the least positive integer <math>n</math> for which <math>2^n+5^n-n\equiv0\pmod{1000}.</math> Rearranging gives <cmath>2^n+5^n\equiv n\pmod{1000}.</cmath> Applying the Chinese Remainder Theorem, we get the following system of congruences: |
<cmath>\begin{align*} | <cmath>\begin{align*} | ||
2^n+5^n &\equiv n \pmod{8}, \\ | 2^n+5^n &\equiv n \pmod{8}, \\ | ||
Line 48: | Line 55: | ||
2^n &\equiv n \pmod{125}. &(2) | 2^n &\equiv n \pmod{125}. &(2) | ||
\end{align*}</cmath> | \end{align*}</cmath> | ||
+ | We solve each congruence separately: | ||
<ol style="margin-left: 1.5em;"> | <ol style="margin-left: 1.5em;"> | ||
− | <li>For <math>(1),</math> quick inspections produce that <math>5^1,5^2,5^3,5^4,\ | + | <li>For <math>(1),</math> quick inspections produce that <math>5^1,5^2,5^3,5^4,\ldots</math> are congruent to <math>5,1,5,1,\ldots</math> modulo <math>8,</math> respectively. More generally, <math>5^n \equiv 5 \pmod{8}</math> if <math>n</math> is odd, and <math>5^n \equiv 1 \pmod{8}</math> if <math>n</math> is even. As <math>5^n</math> is always odd (so is <math>n</math>), we must have <math>n\equiv5\pmod{8}.</math> <p> |
− | <i><b>That is, <math>\boldsymbol{n=8r+5}</math> for some integer <math>\boldsymbol{r.}</math></b></i></li><p> | + | <i><b>That is, <math>\boldsymbol{n=8r+5}</math> for some nonnegative integer <math>\boldsymbol{r.}</math></b></i></li><p> |
<li>For <math>(2),</math> we substitute the result from <math>(1)</math> and simplify:</li> | <li>For <math>(2),</math> we substitute the result from <math>(1)</math> and simplify:</li> | ||
<cmath>\begin{align*} | <cmath>\begin{align*} | ||
Line 61: | Line 69: | ||
<cmath>\begin{align*} | <cmath>\begin{align*} | ||
(5+1)^r\cdot32&\equiv8r+5\pmod{125} \\ | (5+1)^r\cdot32&\equiv8r+5\pmod{125} \\ | ||
− | \ | + | \Biggl[\binom{r}{0}5^0+\binom{r}{1}5^1+\binom{r}{2}5^2+\phantom{ }\underbrace{\binom{r}{3}5^3+\cdots+\binom{r}{r}5^r}_{0\pmod{125}}\phantom{ }\Biggr]\cdot32&\equiv8r+5\pmod{125} \\ |
\left[1+5r+\frac{25r(r-1)}{2}\right]\cdot32&\equiv8r+5\pmod{125} \\ | \left[1+5r+\frac{25r(r-1)}{2}\right]\cdot32&\equiv8r+5\pmod{125} \\ | ||
32+160r+400r(r-1)&\equiv8r+5\pmod{125} \\ | 32+160r+400r(r-1)&\equiv8r+5\pmod{125} \\ | ||
32+35r+25r(r-1)&\equiv8r+5\pmod{125} \\ | 32+35r+25r(r-1)&\equiv8r+5\pmod{125} \\ | ||
− | 25r^2+2r+27&\equiv0\pmod{125}. \hspace{ | + | 25r^2+2r+27&\equiv0\phantom{r+5}\pmod{125}. \hspace{15mm} (*) |
\end{align*}</cmath> | \end{align*}</cmath> | ||
Since <math>125\equiv0\pmod{5},</math> it follows that | Since <math>125\equiv0\pmod{5},</math> it follows that | ||
Line 73: | Line 81: | ||
r&\equiv4\pmod{5}. | r&\equiv4\pmod{5}. | ||
\end{align*}</cmath> | \end{align*}</cmath> | ||
− | <i><b>That is, <math>\boldsymbol{r=5s+4}</math> for some integer <math>\boldsymbol{s.}</math></b></i><p> | + | <i><b>That is, <math>\boldsymbol{r=5s+4}</math> for some nonnegative integer <math>\boldsymbol{s.}</math></b></i><p> |
Substituting this back into <math>(*),</math> we get | Substituting this back into <math>(*),</math> we get | ||
<cmath>\begin{align*} | <cmath>\begin{align*} | ||
Line 79: | Line 87: | ||
625s^2+1010s+435&\equiv0\pmod{125} \\ | 625s^2+1010s+435&\equiv0\pmod{125} \\ | ||
10s+60&\equiv0\pmod{125} \\ | 10s+60&\equiv0\pmod{125} \\ | ||
− | 10(s+6)&\equiv0\pmod{125} | + | 10(s+6)&\equiv0\pmod{125}. |
\end{align*}</cmath> | \end{align*}</cmath> | ||
+ | As <math>10(s+6)</math> is a multiple of <math>125,</math> it has at least three factors of <math>5.</math> Since <math>10</math> contributes one factor, <math>s+6</math> contributes at least two factors, or <math>s+6</math> must be a multiple of <math>25.</math> Therefore, the least such nonnegative integer <math>s</math> is <math>19.</math> | ||
</ol> | </ol> | ||
− | + | Finally, combining the two results from above (bolded) generates the least such positive integer <math>n</math> at <math>s=19:</math> | |
+ | <cmath>\begin{align*} | ||
+ | n&=8r+5 \\ | ||
+ | &=8(5s+4)+5 \\ | ||
+ | &=40s+37 \\ | ||
+ | &=\boxed{797}. | ||
+ | \end{align*}</cmath> | ||
+ | ~MRENTHUSIASM (inspired by Math Jams's <b>2021 AIME II Discussion</b>) | ||
+ | |||
+ | ==Solution 4 (Minimal Computation)== | ||
+ | <cmath>5^n \equiv n \pmod{8}</cmath> | ||
+ | Note that <math>5^n \equiv 5,1,5,1,...</math> and <math>n \equiv 0,..,7</math> so <math>n</math> is periodic every <math>[2,8]=8</math>. Easy to check that only <math>n\equiv 5 \pmod{8}</math> satisfy. Let <math>n=8a+5</math>. Note that by binomial theorem, | ||
+ | <cmath>2^{8a+5}=32\cdot 2^{8a} \equiv 7(1+15)^{2a} \equiv 7(1+30a)\pmod{25}</cmath> | ||
+ | So we have <math>7(1+30a) \equiv 8a+5\pmod{25} \implies 202a \equiv 23 \implies 2a \equiv 23+25 \implies a \equiv 24 \pmod{25}</math>. | ||
+ | Combining <math>a\equiv 24\pmod{25}</math> with <math>n \equiv 5 \pmod{8}</math> gives that <math>n</math> is in the form of <math>197+200k</math>, <math>n=197,397,597,797</math>. Note that since <math>\phi(125)=100</math> | ||
+ | <cmath>2^{197+200k} \equiv 2^{197} \equiv 2^{-3} \equiv \underbrace{47}_{\text{Extended Euclidean Algorithm}}\pmod{125}</cmath> | ||
+ | Easy to check that only <math>\boxed{797}\equiv 47\pmod{125},{1797}\equiv 47\pmod{125},{2797}\equiv 47\pmod{125},...</math> | ||
+ | |||
+ | ~Afo | ||
+ | |||
+ | ==Solution 5 (STEP by step transform)== | ||
+ | |||
+ | 1. The desired <math>n</math> has the form <math>n = m + 20l + 100p,</math> where <math>m, l, p</math> are integers and <math>m < 20.</math> | ||
+ | |||
+ | Really: <cmath>(2^{m+ 20} – (m + 20)) – (2^m – m) = (2^{m+ 20} – 2^m) – 20.</cmath> | ||
+ | The first term is a multiple of <math>100</math>(<i><b>Claim</b></i>). | ||
+ | |||
+ | We denote <i><b>step</b></i> an increase in <math>m</math> by 20. At each <i><b>step</b></i>, the divisibility by <math>10</math> is preserved, the number of tens is reduced by <math>2</math>. | ||
+ | |||
+ | <cmath>(2^{m+ 100} – (m + 100)) – (2^m – m) = (2^{m+ 100} – 2^m) – 100.</cmath> | ||
+ | We denote <i><b>STEP</b></i> an increase in <math>m</math> by <math>100.</math> At each <i><b>STEP</b></i>, the first term is a multiple of <math>1000,</math> which means that at each <i><b>STEP</b></i> the divisibility by <math>100</math> is preserved, the number of hundreds decreases by <math>1.</math> | ||
+ | |||
+ | 2. If the expression <math>2^n + 5^n – n</math> is a multiple of <math>1000,</math> the number <math>n</math> is odd (<math>2^n</math> is even, <math>5^n</math> is odd), which means that <math>5^n</math> ends in <math>125.</math> Therefore, the number <math>2^n – n</math> ends in <math>875.</math> | ||
+ | |||
+ | 3. <math>2^3 – 3 = 8 – 3 = 5.</math> The tens digit is even <math>(0),</math> it cannot be transformed into <math>7</math> in several steps, since at each <i><b>step</b></i> this digit changes by <math>2.</math> | ||
+ | |||
+ | <math>17 = 20 – 3,</math> so <math>2^{17} + 2^3</math> is a multiple of <math>10,</math> <math>(2^{17} – 17) + (2^3 – 3) = 2^{17} + 2^3 – 20</math> is a multiple of <math>10.</math> | ||
+ | <cmath>2^{17} \pmod {100} = ((2^{10} \pmod {100}) \cdot (2^7 \pmod {100})) \pmod {100} = (24 \cdot 28) \pmod {100} = 72.</cmath> | ||
+ | <cmath>(2^{17} – 17 ) \pmod {100} = 55.</cmath> | ||
+ | The tens digit <math>5</math> is odd, subtracting <math>2</math> at each <i><b>step</b></i> in <math>4</math> <i><b>steps</b></i> of <math>20</math> will turn it into <math>7.</math> | ||
+ | So <cmath>(2^{97} – 97 ) \pmod {100} = 75.</cmath> | ||
+ | <cmath>2^{97} \pmod {1000} = ((2^{49} \pmod {1000}) \cdot 2^7) \pmod {1000} = 672.</cmath> | ||
+ | <cmath>(2^{97} – 97 ) \pmod {1000} = 575.</cmath> | ||
+ | We transform <math>5</math> into <math>8</math> in <math>7</math> <i><b>STEPS</b></i>, so <cmath>(2^{797} – 797 ) \pmod {1000} = 875. </cmath> | ||
+ | <cmath>(5^{797} + 2^{797} – 797 ) \pmod {1000} = 0.</cmath> | ||
+ | Note, that for <math>n = 797 + 1000k, k</math> is an integer, the expression <math>2^n + 5^n – n</math> is a multiple of <math>1000.</math> | ||
− | <b> | + | <i><b>Claim</b></i> |
− | + | The numbers <math>2^{n+2\cdot 5^k}+2^n=2^n(2^{2\cdot 5^k}+1)</math> and <math>2^{n+4\cdot 5^k}-2^n=2^n(2^{4\cdot 5^k}-1)</math> | |
+ | |||
+ | are a multiple of <math>10^{k+1}</math> for any <math>n > k</math>, where <math>n,k</math> are an integer. | ||
+ | |||
+ | <i><b>Proof</b></i> | ||
+ | |||
+ | First, if <math>m \pmod{10} \equiv 4,</math> then <math>(m^4 – m^3 + m^2 – m + 1) \pmod{10} \equiv 6 – 4 + 6 – 4 + 1 = 5.</math> | ||
+ | |||
+ | <math>2^{4n+2}\pmod{10} \equiv 4.</math> So, if the number <math>2^{4n+2} + 1</math> is a multiple of <math>5^k</math>, then <math>2^{20n+10} + 1</math> is a multiple of <math>5^{k +1}.</math> | ||
+ | |||
+ | Really, denote <math>m = 2^{4n+2},</math> then, <math>2^{20n+10} + 1 = m^5 + 1 = (m + 1)\cdot (m^4 – m^3 + m^2 – m + 1).</math> | ||
+ | |||
+ | The first factor is a multiple of <math>5^k</math>, the second factor is a multiple of <math>5.</math> | ||
+ | Their product is a multiple of <math>5^{k +1}.</math> | ||
+ | |||
+ | For odd <math>n,</math> using Newton's binomial for <math>4^n</math>, we get <math>2^{2n} + 1</math> is a multiple of <math>5.</math> | ||
+ | <cmath>\begin{align*} 2^{2n} + 1 = 4^n + 1 = (5 - 1)^n + 1 = 5^n -n\cdot 5^{n-1} +...+5n\end{align*}</cmath> | ||
+ | If <math>n = 5^k,</math> then <math>n > k,</math> each term is a multiple of <math>5n</math>. | ||
+ | |||
+ | Therefore, the number <math>4^{5^k}+1</math> is a multiple of <math>5^{k+1}</math> and <math>2^{k+1} (2^{2\cdot 5^k}+1)</math> is a multiple of <math>10^{k+1}</math>. | ||
+ | |||
+ | The difference <cmath>2^{n+4\cdot 5^k}-2^n=2^n(2^{4\cdot 5^k}-1) = 2^n(2^{2\cdot 5^k}-1)(2^{2\cdot 5^k}+1)</cmath> is a multiple of <math>10^{k+1}.</math> | ||
+ | |||
+ | '''vladimir.shelomovskii@gmail.com, vvsss''' | ||
+ | |||
+ | ==Note== | ||
+ | If you are wondering, <math>\frac{2^{797}+5^{797}-797}{1000}</math> is equal to the following <math>555</math>-digit number: | ||
+ | |||
+ | <math>119{,}975{,}745{,}111{,}650{,}476{,}385{,}411{,}555{,}010{,}245{,}228{,}283{,}196{,}935{,}699{,}128{,}663{,}834{,}986{,}755{,}809{,}416{,}868{,}468{,}175{,}224{,}221{,}677{,} \\ | ||
+ | 450{,}271{,}793{,}186{,}899{,}399{,}171{,}810{,}240{,}468{,}879{,}630{,}691{,}320{,}210{,}517{,}618{,}332{,}910{,}064{,}430{,}017{,}422{,}410{,}572{,}497{,}874{,}327{,}116{,} \\ | ||
+ | 662{,}273{,}049{,}144{,}209{,}532{,}072{,}513{,}248{,}821{,}826{,}125{,}454{,}909{,}131{,}367{,}242{,}561{,}087{,}064{,}439{,}357{,}641{,}814{,}942{,}784{,}478{,}465{,}638{,} \\ | ||
+ | 163{,}997{,}895{,}630{,}266{,}780{,}260{,}171{,}070{,}180{,}244{,}384{,}687{,}160{,}174{,}154{,}618{,}815{,}254{,}719{,}975{,}476{,}350{,}789{,}415{,}969{,}908{,}281{,}131{,} \\ | ||
+ | 044{,}034{,}581{,}864{,}573{,}596{,}962{,}567{,}993{,}948{,}922{,}431{,}587{,}652{,}735{,}290{,}158{,}293{,}666{,}986{,}616{,}531{,}419{,}688{,}663{,}485{,}548{,}648{,}995{,} \\ | ||
+ | 509{,}247{,}893{,}796{,}528{,}146{,}109{,}144{,}143{,}744{,}650{,}882{,}271{,}050{,}771{,}309{,}301{,}498{,}467{,}898{,}226{,}649{,}089{,}924{,}520{,}539{,}820{,}344{,}035{,} \\ | ||
+ | 886{,}481{,}987{,}499{,}589{,}845{,}734{,}228{,}834{,}491{,}187.</math> | ||
+ | |||
+ | ==Video Solution by Interstigation== | ||
+ | Did not use any advanced method, easily understandable: | ||
+ | |||
+ | https://youtu.be/ThF67J8iaS0 | ||
+ | |||
+ | ~Interstigation | ||
− | ==See | + | ==See Also== |
{{AIME box|year=2021|n=II|num-b=12|num-a=14}} | {{AIME box|year=2021|n=II|num-b=12|num-a=14}} | ||
{{MAA Notice}} | {{MAA Notice}} |
Latest revision as of 22:16, 26 January 2024
Contents
Problem
Find the least positive integer for which is a multiple of .
Solution 1
Recall that divides this expression if and both divide it. It should be fairly obvious that ; so we may break up the initial condition into two sub-conditions.
(1) . Notice that the square of any odd integer is modulo (proof by plugging in into modulo ), so the LHS of this expression goes , while the RHS goes . The cycle length of the LHS is , RHS is , so the cycle length of the solution is . Indeed, the that solve this congruence are exactly those such that .
(2) . This is extremely computationally intensive if we try to calculate all , so we take a divide-and-conquer approach instead. In order for this expression to be true, is necessary; it shouldn't take too long for us to go through the possible LHS-RHS combinations, considering that must be odd. We only need to test values of and obtain or .
With this in mind we consider . By the Generalized Fermat's Little Theorem, , but we already have modulo . Our calculation is greatly simplified. The LHS's cycle length is and the RHS's cycle length is , from which their least common multiple is . In this step we need to test all the numbers between to that or . In the case that , the RHS goes , and we need ; clearly . In the case that , by a similar argument, .
In the final step, we need to calculate and modulo :
Note that ; because we get .
Note that is . We have This time, LHS cycle is , RHS cycle is , so we need to figure out modulo . It should be .
Put everything together. By the second subcondition, the only candidates less than are . Apply the first subcondition, is the desired answer.
~Ross Gao (Solution)
~MRENTHUSIASM (Minor Reformatting)
Solution 2
We have that , or and by CRT. It is easy to check don't work, so we have that . Then, and , so we just have and . Let us consider both of these congruences separately.
First, we look at . By Euler's Totient Theorem (ETT), we have , so . On the RHS of the congruence, the possible values of are all nonnegative integers less than and on the RHS the only possible values are and . However, for to be we must have , a contradiction. So, the only possible values of are when .
Now we look at . Plugging in , we get . Note, for to be satisfied, we must have and . Since as , we have . Then, . Now, we get . Using the fact that , we get . The inverse of modulo is obviously , so , so . Plugging in , we get .
Now, we are finally ready to plug into the congruence modulo . Plugging in, we get . By ETT, we get , so . Then, . Plugging this in, we get , implying the smallest value of is simply .
~rocketsri
Solution 3 (Chinese Remainder Theorem and Binomial Theorem)
We wish to find the least positive integer for which Rearranging gives Applying the Chinese Remainder Theorem, we get the following system of congruences: It is clear that from which we simplify to We solve each congruence separately:
- For quick inspections produce that are congruent to modulo respectively. More generally, if is odd, and if is even. As is always odd (so is ), we must have
That is, for some nonnegative integer
- For we substitute the result from and simplify:
Note that and so we apply the Binomial Theorem to the left side: Since it follows that
That is, for some nonnegative integerSubstituting this back into we get As is a multiple of it has at least three factors of Since contributes one factor, contributes at least two factors, or must be a multiple of Therefore, the least such nonnegative integer is
Finally, combining the two results from above (bolded) generates the least such positive integer at ~MRENTHUSIASM (inspired by Math Jams's 2021 AIME II Discussion)
Solution 4 (Minimal Computation)
Note that and so is periodic every . Easy to check that only satisfy. Let . Note that by binomial theorem, So we have . Combining with gives that is in the form of , . Note that since Easy to check that only
~Afo
Solution 5 (STEP by step transform)
1. The desired has the form where are integers and
Really: The first term is a multiple of (Claim).
We denote step an increase in by 20. At each step, the divisibility by is preserved, the number of tens is reduced by .
We denote STEP an increase in by At each STEP, the first term is a multiple of which means that at each STEP the divisibility by is preserved, the number of hundreds decreases by
2. If the expression is a multiple of the number is odd ( is even, is odd), which means that ends in Therefore, the number ends in
3. The tens digit is even it cannot be transformed into in several steps, since at each step this digit changes by
so is a multiple of is a multiple of The tens digit is odd, subtracting at each step in steps of will turn it into So We transform into in STEPS, so Note, that for is an integer, the expression is a multiple of
Claim
The numbers and
are a multiple of for any , where are an integer.
Proof
First, if then
So, if the number is a multiple of , then is a multiple of
Really, denote then,
The first factor is a multiple of , the second factor is a multiple of Their product is a multiple of
For odd using Newton's binomial for , we get is a multiple of If then each term is a multiple of .
Therefore, the number is a multiple of and is a multiple of .
The difference is a multiple of
vladimir.shelomovskii@gmail.com, vvsss
Note
If you are wondering, is equal to the following -digit number:
Video Solution by Interstigation
Did not use any advanced method, easily understandable:
~Interstigation
See Also
2021 AIME II (Problems • Answer Key • Resources) | ||
Preceded by Problem 12 |
Followed by Problem 14 | |
1 • 2 • 3 • 4 • 5 • 6 • 7 • 8 • 9 • 10 • 11 • 12 • 13 • 14 • 15 | ||
All AIME Problems and Solutions |
The problems on this page are copyrighted by the Mathematical Association of America's American Mathematics Competitions.