Difference between revisions of "2023 AMC 12B Problems/Problem 16"
m (→Solution 2) |
|||
(27 intermediate revisions by 10 users not shown) | |||
Line 4: | Line 4: | ||
<math>\textbf{(A) }8\qquad\textbf{(B) }10\qquad\textbf{(C) }7\qquad\textbf{(D) }11\qquad\textbf{(E) }9</math> | <math>\textbf{(A) }8\qquad\textbf{(B) }10\qquad\textbf{(C) }7\qquad\textbf{(D) }11\qquad\textbf{(E) }9</math> | ||
− | ==Solution== | + | ==Solution 1== |
This problem asks to find largest <math>x</math> that cannot be written as | This problem asks to find largest <math>x</math> that cannot be written as | ||
Line 19: | Line 19: | ||
<math>c \equiv r \pmod{2}</math>. | <math>c \equiv r \pmod{2}</math>. | ||
− | Following from Chicken | + | Following from Chicken McNugget's theorem, we have that any number that is no less than <math>(3-1)(5-1) = 8</math> can be expressed in the form of <math>3a + 5b</math> with <math>a, b \in \Bbb Z_+</math>. |
Therefore, all even numbers that are at least equal to <math>2 \cdot 8 + 15 \cdot 0 = 16</math> can be written in the form of Equation (1) with <math>a, b, c \in \Bbb Z_+</math>. | Therefore, all even numbers that are at least equal to <math>2 \cdot 8 + 15 \cdot 0 = 16</math> can be written in the form of Equation (1) with <math>a, b, c \in \Bbb Z_+</math>. | ||
Line 38: | Line 38: | ||
~Steven Chen (Professor Chen Education Palace, www.professorchenedu.com) | ~Steven Chen (Professor Chen Education Palace, www.professorchenedu.com) | ||
− | ==See Also== | + | ==Solution 2== |
+ | Arrange the positive integers into rows of <math>6</math>, like this: | ||
+ | <cmath> | ||
+ | \begin{array}{|c|c|c|c|c|c|} | ||
+ | \hline | ||
+ | 01 & 02 & 03 & 04 & 05 & \textcolor{red}{\boxed{06}} \\ | ||
+ | \hline | ||
+ | 07 & 08 & 09 & \textcolor{red}{\boxed{10}} & 11 & \textcolor{red}{\boxed{12}} \\ | ||
+ | \hline | ||
+ | 13 & 14 & \textcolor{red}{\boxed{15}} & \textcolor{red}{\boxed{16}} & 17 & \textcolor{red}{\boxed{18}} \\ | ||
+ | \hline | ||
+ | 19 & \textcolor{red}{\boxed{20}} & \textcolor{red}{\boxed{21}} & \textcolor{red}{\boxed{22}} & 23 & \textcolor{red}{\boxed{24}} \\ | ||
+ | \hline | ||
+ | \textcolor{red}{\boxed{25}} & \textcolor{red}{\boxed{26}} & \textcolor{red}{\boxed{27}} & \textcolor{red}{\boxed{28}} & 29 & \textcolor{red}{\boxed{30}} \\ | ||
+ | \hline | ||
+ | \textcolor{red}{\boxed{31}} & \textcolor{red}{\boxed{32}} & \textcolor{red}{\boxed{33}} & \textcolor{red}{\boxed{34}} & \textcolor{red}{\boxed{35}} & \textcolor{red}{\boxed{36}} \\ | ||
+ | \hline | ||
+ | \end{array} | ||
+ | </cmath> | ||
+ | <cmath> | ||
+ | \vdots | ||
+ | </cmath> | ||
+ | Observe that if any number can be made from a combination of <math>6</math>s, <math>10</math>s, and <math>15</math>s, then every number below it in the same column must also be possible to make, by simply adding 6s. | ||
+ | |||
+ | Thus, we will cross out any numbers that CAN be made as well as all numbers below it. | ||
+ | |||
+ | In column 1, <math>25</math> is possible <math>(10+15)</math> and so is everything below <math>25</math>. | ||
+ | |||
+ | Column 2 - cross out <math>20</math> | ||
+ | |||
+ | Column 3 - cross out <math>15</math> | ||
+ | |||
+ | Column 4 - cross out <math>10</math> | ||
+ | |||
+ | Column 5 - cross out <math>35</math> | ||
+ | |||
+ | Column 6 - cross all out. | ||
+ | |||
+ | The maximum number that remains is <math>29</math>. | ||
+ | Answer is <math>2+9= \boxed{\textbf{(D) 11}}</math>. | ||
+ | |||
+ | (sorry for the bad formatting - feel free to edit) | ||
+ | |||
+ | ~JN | ||
+ | |||
+ | ~format edit by ab_godder | ||
+ | |||
+ | ==Solution 3 (Modulo 6)== | ||
+ | Let the number of <math>6</math> cent coins be <math>a</math>, the number of <math>10</math> cent coins be <math>b</math>, and the number of <math>15</math> cent coins be <math>c</math>. We get the [https://artofproblemsolving.com/wiki/index.php/Diophantine_equation Diophantine equation] | ||
+ | |||
+ | <cmath>6a + 10b + 15c = k</cmath> | ||
+ | |||
+ | and we wish to find the largest possible value of <math>k</math> | ||
+ | |||
+ | Construct the following <math>\mod 6</math> table of <math>6</math>, <math>10</math>, and <math>15</math> | ||
+ | |||
+ | <cmath>\begin{array}{c|ccc} | ||
+ | & & & \\ | ||
+ | \text{number of coins} & 6 & 10 & 15 \\ | ||
+ | \hline | ||
+ | & & & \\ | ||
+ | 1 & 0 & 4 & 3\\ | ||
+ | & & & \\ | ||
+ | 2 & 0 & 2 & 0 \\ | ||
+ | \end{array}</cmath> | ||
+ | |||
+ | There are only <math>6</math> possible residues for <math>6</math>, they are: <math>0</math>, <math>1</math>, <math>2</math>, <math>3</math>, <math>4</math>, and <math>5</math>. | ||
+ | |||
+ | <math>0 \mod 6</math> | ||
+ | We can obtain any value that is <math>0 \mod 6</math> because we have <math>6</math> cent coins. | ||
+ | |||
+ | <math>1 \mod 6</math> | ||
+ | We can obtain values that equal <math>1 \mod 6</math> by using one <math>10</math> cent coin, one <math>15</math> cent coin, and as many <math>6</math> cent coins needed. | ||
+ | The smallest value that equals <math>1 \mod 6</math> we can obtain is <math>10+15 = 25</math>. Therefore, the largest value that equals <math>1 \mod 6</math> we cannot obtain is <math>25-6=19</math> | ||
+ | |||
+ | <math>2 \mod 6</math> | ||
+ | We can obtain values that equal <math>2 \mod 6</math> by using two <math>10</math> cent coins, and as many <math>6</math> cent coins as needed. | ||
+ | The smallest value that equals <math>2 \mod 6</math> we can obtain is <math>10+10 = 20</math>. Therefore, the largest value that equals <math>2 \mod 6</math> we cannot obtain is <math>20-6=14</math> | ||
+ | |||
+ | <math>3 \mod 6</math> | ||
+ | We can obtain values that equal <math>3 \mod 6</math> by using one <math>15</math> cent coin, and as many <math>6</math> cent coins as needed. | ||
+ | The smallest value that equals <math>3 \mod 6</math> we can obtain is <math>15</math>. Therefore, the largest value that equals <math>3 \mod 6</math> we cannot obtain is <math>15-6=9</math> | ||
+ | |||
+ | <math>4 \mod 6</math> | ||
+ | We can obtain values that equal <math>4 \mod 6</math> by using one <math>10</math> cent coin, and as many <math>6</math> cent coins as needed. | ||
+ | The smallest value that equals <math>4 \mod 6</math> we can obtain is <math>10</math>. Therefore, the largest value that equals <math>4 \mod 6</math> we cannot obtain is <math>10-6=4</math> | ||
+ | |||
+ | <math>5 \mod 6</math> | ||
+ | We can obtain values that equal <math>5 \mod 6</math> by using two <math>10</math> cent coins, one <math>15</math> cent coin, and as many <math>6</math> cent coins as needed. | ||
+ | The smallest value that equals <math>5 \mod 6</math> we can obtain is <math>10+10+15 = 35</math>. Therefore, the largest value that equals <math>5 \mod 6</math> we cannot obtain is <math>35-6=29</math> | ||
+ | |||
+ | Hence, the largest value in cents we cannot obtain using <math>6</math>, <math>10</math>, and <math>15</math> cent coins is <math>29</math>, <math>2 + 9 = \boxed{\textbf{(D) 11}}</math>. | ||
+ | |||
+ | ~[https://artofproblemsolving.com/wiki/index.php/User:Isabelchen isabelchen] | ||
+ | |||
+ | ==Solution 4== | ||
+ | We claim that the largest number that cannot be obtained using <math>6</math>, <math>10</math>, and <math>15</math> cent coins is <math>29</math>. | ||
+ | |||
+ | Let's first focus on the combination of <math>6</math>, <math>10</math>. As both of them are even numbers, we cannot obtain any odd numbers from these two but requires <math>15</math> to sum up to an odd number. Notice that by Chicken McNugget Theorem, the largest even number cannot be obtained by <math>6</math>, <math>10</math> is <math>2(3\cdot 5-3-5)=14</math>. Add this with <math>29</math>, we can easily verify that <math>29</math> cannot be obtained by <math>6</math>, <math>10</math>, and <math>15</math> as it needs at least one odd number, with the remaining part cannot be represented by <math>6</math> and <math>10</math>. | ||
+ | |||
+ | Let's show that any number greater than <math>29</math> can be obtained. First, any even numbers greater than <math>29</math> can be obtained by <math>6</math> and <math>10</math> by the Chicken McNugget Theorem. Next, any odd number greater than <math>29</math> can be obtained by adding one <math>15</math> with some <math>6</math>s and <math>10</math>s, which is also shown by the Chicken McNugget Theorem. This completes the proof. So the answer is <math>2+9 = \boxed{\textbf{(D) 11}}</math> | ||
+ | |||
+ | ~ZZZIIIVVV | ||
+ | |||
+ | ==Solution 4 (apply Chicken McNugget Theorem twice)== | ||
+ | |||
+ | First considering the two terms | ||
+ | |||
+ | 6a+10b = 2(3a+5b) | ||
+ | |||
+ | 3a+5b = (3-1)(5-1)+t = 8+t, t>=0 | ||
+ | |||
+ | Again applying the two variable formula for the terms in brackets we see that | ||
+ | |||
+ | 6a+10b+15c = 2(8+t) + 15c = 2t +15c + 16 = (2-1)(15-1) + s+ 16 = 30+s, s>=0 | ||
+ | |||
+ | so the given expression 6a+10b+15c produces all numbers from 30 and 29 is the largest number that could not be produced,so the answer is <math>2+9 = \boxed{\textbf{(D) 11}}</math> | ||
+ | |||
+ | ~[https://artofproblemsolving.com/wiki/index.php/User:Cyantist luckuso] | ||
+ | |||
+ | * Note: Chicken McNugget Theorem: any positive integer N= (a-1)(b-1)+t ( a,b co-prime, t>=0) can always be represented as N = aP+ bQ ( p,q are non-negative integer) | ||
+ | |||
+ | ==Video Solution 1 by OmegaLearn== | ||
+ | https://youtu.be/E8WsGfn95mk | ||
+ | |||
+ | ==Video Solution== | ||
+ | |||
+ | https://youtu.be/T5nqrNGvf4Q | ||
+ | |||
+ | ~Steven Chen (Professor Chen Education Palace, www.professorchenedu.com) | ||
+ | |||
+ | ==See Also== | ||
{{AMC12 box|year=2023|ab=B|num-b=15|num-a=17}} | {{AMC12 box|year=2023|ab=B|num-b=15|num-a=17}} | ||
{{MAA Notice}} | {{MAA Notice}} |
Latest revision as of 22:09, 15 November 2024
Contents
Problem
In the state of Coinland, coins have values and cents. Suppose is the value in cents of the most expensive item in Coinland that cannot be purchased using these coins with exact change. What is the sum of the digits of
Solution 1
This problem asks to find largest that cannot be written as where .
Denote by the remainder of divided by 2. Modulo 2 on Equation (1), we get By using modulus on the equation above, we get .
Following from Chicken McNugget's theorem, we have that any number that is no less than can be expressed in the form of with .
Therefore, all even numbers that are at least equal to can be written in the form of Equation (1) with . All odd numbers that are at least equal to can be written in the form of Equation (1) with .
The above two cases jointly imply that all numbers that are at least 30 can be written in the form of Equation (1) with .
Next, we need to prove that 29 cannot be written in the form of Equation (1) with .
Because 29 is odd, we must have . Because , we must have . Plugging this into Equation (1), we get . However, this equation does not have non-negative integer solutions.
All analysis above jointly imply that the largest that has no non-negative integer solution to Equation (1) is 29. Therefore, the answer is .
~Steven Chen (Professor Chen Education Palace, www.professorchenedu.com)
Solution 2
Arrange the positive integers into rows of , like this: Observe that if any number can be made from a combination of s, s, and s, then every number below it in the same column must also be possible to make, by simply adding 6s.
Thus, we will cross out any numbers that CAN be made as well as all numbers below it.
In column 1, is possible and so is everything below .
Column 2 - cross out
Column 3 - cross out
Column 4 - cross out
Column 5 - cross out
Column 6 - cross all out.
The maximum number that remains is . Answer is .
(sorry for the bad formatting - feel free to edit)
~JN
~format edit by ab_godder
Solution 3 (Modulo 6)
Let the number of cent coins be , the number of cent coins be , and the number of cent coins be . We get the Diophantine equation
and we wish to find the largest possible value of
Construct the following table of , , and
There are only possible residues for , they are: , , , , , and .
We can obtain any value that is because we have cent coins.
We can obtain values that equal by using one cent coin, one cent coin, and as many cent coins needed. The smallest value that equals we can obtain is . Therefore, the largest value that equals we cannot obtain is
We can obtain values that equal by using two cent coins, and as many cent coins as needed. The smallest value that equals we can obtain is . Therefore, the largest value that equals we cannot obtain is
We can obtain values that equal by using one cent coin, and as many cent coins as needed. The smallest value that equals we can obtain is . Therefore, the largest value that equals we cannot obtain is
We can obtain values that equal by using one cent coin, and as many cent coins as needed. The smallest value that equals we can obtain is . Therefore, the largest value that equals we cannot obtain is
We can obtain values that equal by using two cent coins, one cent coin, and as many cent coins as needed. The smallest value that equals we can obtain is . Therefore, the largest value that equals we cannot obtain is
Hence, the largest value in cents we cannot obtain using , , and cent coins is , .
Solution 4
We claim that the largest number that cannot be obtained using , , and cent coins is .
Let's first focus on the combination of , . As both of them are even numbers, we cannot obtain any odd numbers from these two but requires to sum up to an odd number. Notice that by Chicken McNugget Theorem, the largest even number cannot be obtained by , is . Add this with , we can easily verify that cannot be obtained by , , and as it needs at least one odd number, with the remaining part cannot be represented by and .
Let's show that any number greater than can be obtained. First, any even numbers greater than can be obtained by and by the Chicken McNugget Theorem. Next, any odd number greater than can be obtained by adding one with some s and s, which is also shown by the Chicken McNugget Theorem. This completes the proof. So the answer is
~ZZZIIIVVV
Solution 4 (apply Chicken McNugget Theorem twice)
First considering the two terms
6a+10b = 2(3a+5b)
3a+5b = (3-1)(5-1)+t = 8+t, t>=0
Again applying the two variable formula for the terms in brackets we see that
6a+10b+15c = 2(8+t) + 15c = 2t +15c + 16 = (2-1)(15-1) + s+ 16 = 30+s, s>=0
so the given expression 6a+10b+15c produces all numbers from 30 and 29 is the largest number that could not be produced,so the answer is
- Note: Chicken McNugget Theorem: any positive integer N= (a-1)(b-1)+t ( a,b co-prime, t>=0) can always be represented as N = aP+ bQ ( p,q are non-negative integer)
Video Solution 1 by OmegaLearn
Video Solution
~Steven Chen (Professor Chen Education Palace, www.professorchenedu.com)
See Also
2023 AMC 12B (Problems • Answer Key • Resources) | |
Preceded by Problem 15 |
Followed by Problem 17 |
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 | |
All AMC 12 Problems and Solutions |
The problems on this page are copyrighted by the Mathematical Association of America's American Mathematics Competitions.