Difference between revisions of "2024 AMC 12B Problems/Problem 6"
m |
(→Solution 2) |
||
Line 20: | Line 20: | ||
We see that <math>5\times 10^{13} = 2^{13} \cdot 5^{14}</math> and <math>2^{13} = 8192</math>. Converting this to base <math>5</math> gives us <math>230232</math> (trust me it doesn't take that long). So the final number in base <math>5</math> is <math>230232</math> with <math>14</math> zeroes at the end, which gives us <math>6 + 14 = 20</math> digits. So the answer is <math>\fbox{\textbf{(B)} 20}</math>. | We see that <math>5\times 10^{13} = 2^{13} \cdot 5^{14}</math> and <math>2^{13} = 8192</math>. Converting this to base <math>5</math> gives us <math>230232</math> (trust me it doesn't take that long). So the final number in base <math>5</math> is <math>230232</math> with <math>14</math> zeroes at the end, which gives us <math>6 + 14 = 20</math> digits. So the answer is <math>\fbox{\textbf{(B)} 20}</math>. | ||
+ | |||
+ | ==Solution 3== | ||
+ | |||
+ | <cmath> | ||
+ | 5 \times 10^{13} = 5 \times (2^{13} \times 5^{13}) = 2^{13} \times 5^{14} | ||
+ | </cmath> | ||
+ | <cmath> | ||
+ | 2^{10} = 1024 \approx 10^3 | ||
+ | </cmath> | ||
+ | <cmath> | ||
+ | 2^{13} = 2^{10} \times 2^3 \approx 10^3 \times 8 = 8000 | ||
+ | </cmath> | ||
+ | <cmath> | ||
+ | 5 \times 10^{13} \approx 8000 \times 5^{14} | ||
+ | </cmath> | ||
+ | |||
+ | converted <math>8000</math> to base 5, divide <math>8000</math> repeatedly by 5 and keep track of the remainders: | ||
+ | |||
+ | 1. <math>8000 \div 5 = 1600</math>, remainder <math>0</math> | ||
+ | |||
+ | 2. <math>1600 \div 5 = 320</math>, remainder <math>0</math> | ||
+ | |||
+ | 3. <math>320 \div 5 = 64</math>, remainder <math>0</math> | ||
+ | |||
+ | 4. <math>64 \div 5 = 12</math>, remainder <math>4</math> | ||
+ | |||
+ | 5. <math>12 \div 5 = 2</math>, remainder <math>2</math> | ||
+ | |||
+ | 6. <math>2 \div 5 = 0</math>, remainder <math>2</math> | ||
+ | |||
+ | Thus, <math>8000</math> in base 5 is <math>224000_5</math>, which has 6 digits | ||
+ | When we multiply <math>224000_5</math> by <math>5^{14}</math>, the multiplication shifts the digits by 14 places to the left, adding 14 zeros. | ||
+ | Thus, the total number of digits is: | ||
+ | |||
+ | 6 + 14 = <math>\fbox{\textbf{(B)} 20}</math>. | ||
+ | |||
+ | |||
+ | ~[https://artofproblemsolving.com/wiki/index.php/User:Cyantist luckuso] |
Revision as of 02:32, 14 November 2024
Contents
Problem 6
The national debt of the United States is on track to reach dollars by . How many digits does this number of dollars have when written as a numeral in base 5? (The approximation of as is sufficient for this problem)
Solution
The number of digits is just . Note that
Hence, our answer is
~tsun26
Solution 2
We see that and . Converting this to base gives us (trust me it doesn't take that long). So the final number in base is with zeroes at the end, which gives us digits. So the answer is .
Solution 3
converted to base 5, divide repeatedly by 5 and keep track of the remainders:
1. , remainder
2. , remainder
3. , remainder
4. , remainder
5. , remainder
6. , remainder
Thus, in base 5 is , which has 6 digits When we multiply by , the multiplication shifts the digits by 14 places to the left, adding 14 zeros. Thus, the total number of digits is:
6 + 14 = .