2024 AMC 10A Problems/Problem 10: Difference between revisions
| (32 intermediate revisions by 19 users not shown) | |||
| Line 1: | Line 1: | ||
== Problem == | == Problem == | ||
Consider the following operation. Given a positive integer < | Consider the following operation. Given a positive integer <imath>n</imath>, if <imath>n</imath> is a multiple of <imath>3</imath>, then you replace <imath>n</imath> by <imath> | ||
\frac{n}{3}</ | \frac{n}{3}</imath>. If <imath>n</imath> is not a multiple of <imath>3</imath>, then you replace <imath>n</imath> by <imath>n+10</imath>. Then continue this process. For example, beginning with <imath>n=4</imath>, this procedure gives <imath>4 \to 14 \to 24 \to 8 \to 18 \to 6 \to 2 \to 12 \to \cdots</imath>. Suppose you start with <imath>n=100</imath>. What value results if you perform this operation exactly <imath>100</imath> times? | ||
< | <imath>\textbf{(A) }10\qquad\textbf{(B) }20\qquad\textbf{(C) }30\qquad\textbf{(D) }40\qquad\textbf{(E) }50</imath> | ||
== Solution 1 ( | == Solution 1 (Fast Solution) == | ||
Let <math>s</math> be the number of times the operation is performed. Notice the sequence goes <math>100 \to 110 \to 120 \to 40 \to 50 \to 60 \to 20 \to 30 \to 10 \to 20 \to \cdots</math>. Thus, for <math>s \equiv 1 \pmod{3}</math>, the value is <math>30</math>. Since <math>100 \equiv 1 \pmod{3}</math>, the answer is <math>\boxed{\textbf{(C) }30}</math>. | Let <math>s</math> be the number of times the operation is performed. Notice the sequence goes <math>100 \to 110 \to 120 \to 40 \to 50 \to 60 \to 20 \to 30 \to 10 \to 20 \to \cdots</math>. Thus, for <math>s \equiv 1 \pmod{3}</math>, the value is <math>30</math>. Since <math>100 \equiv 1 \pmod{3}</math>, the answer is <math>\boxed{\textbf{(C) }30}</math>. | ||
~andliu766 | ~andliu766 ~minor fix by MID_HAT | ||
== Solution 2 (More Explanatory) == | == Solution 2 (More Explanatory) == | ||
Looking at the first few values of our operation, we get <math>100 \to 110 \to 120 \to 40 \to 50 \to 60 \to 20 \to 30 \to 10 \to 20</math>. We can see that <math>30</math> | Looking at the first few values of our operation, we get <math>100 \to 110 \to 120 \to 40 \to 50 \to 60 \to 20 \to 30 \to 10 \to 20</math>. We can see that <math>30</math> goes to <math>10</math>, then to <math>20</math>, then back to <math>30</math>, and the loop resets. After 7 operations, we reach <math>30</math>. We still have 93 operations left, so because the loop will run exactly <math>31</math> times <math>(93/3)</math>, we will reach <math>30</math> again. So, the answer is <math>\boxed{\textbf{(C) } 30}</math>. | ||
~Moonwatcher22 | ~Moonwatcher22 | ||
== Solution 3 (very slightly different than previous) == | == Solution 3 (very slightly different than previous) == | ||
Calculating the first few values, we get <math>100 \to 110 \to 120 \to 40 \to 50 \to 60 \to 20 \to 30 \to 10 \to 20</math>. We can see that <math>20</math> will go to <math>30</math>, then to <math>10</math>, then back to <math>20</math>, and then the loop resets. After <math>6</math> moves, we reach <math>20</math>, the start of the cycle. We still have <math>100- | Calculating the first few values, we get <math>100 \to 110 \to 120 \to 40 \to 50 \to 60 \to 20 \to 30 \to 10 \to 20</math>. We can see that <math>20</math> will go to <math>30</math>, then to <math>10</math>, then back to <math>20</math>, and then the loop resets. After <math>6</math> moves, we reach <math>20</math>, the start of the cycle. We still have <math>100-5</math> moves to go, so to find what number we land on after <math>95</math> more steps, we can do <math>95 \pmod {3} \equiv (9 + 4) \pmod {3} = 1</math>, meaning we go from <math>20 \to \boxed{\textbf{(C) } 30}</math>. | ||
~yuvag | ~yuvag | ||
~ | ~a lot of credit to Moonwatcher22 | ||
==Video Solution(Faster!)== | |||
https://youtu.be/l3VrUsZkv8I | |||
== Video Solution by Pi Academy == | |||
https://youtu.be/6qYaJsgqkbs?si=K2Ebwqg-Ro8Yqoiv | |||
== Video Solution 1 by Power Solve == | ==Video Solution 1 by Power Solve == | ||
https://youtu.be/wamtu7xm0eU | https://youtu.be/wamtu7xm0eU | ||
==See | == Video Solution by Daily Dose of Math == | ||
{{AMC10 box|year=2024|ab=A| | |||
https://youtu.be/17-o9qiprI0 | |||
~Thesmartgreekmathdude | |||
==Video Solution by SpreadTheMathLove== | |||
https://www.youtube.com/watch?v=_o5zagJVe1U | |||
==Video Solution by Just Math⚡== | |||
https://www.youtube.com/watch?v=lqZUYJPq_Jo | |||
==Video Solution by Dr. David== | |||
https://youtu.be/Q0LBITGGkGc | |||
== Video solution by TheNeuralMathAcademy == | |||
https://www.youtube.com/watch?v=4b_YLnyegtw&t=1547s | |||
==See Also== | |||
{{AMC10 box|year=2024|ab=A|before=[[2023 AMC 10B Problems]]|after=[[2024 AMC 10B Problems]]}} | |||
* [[AMC 10]] | |||
* [[AMC 10 Problems and Solutions]] | |||
* [[Mathematics competitions]] | |||
* [[Mathematics competition resources]] | |||
{{MAA Notice}} | {{MAA Notice}} | ||
Latest revision as of 20:31, 11 November 2025
Problem
Consider the following operation. Given a positive integer
, if
is a multiple of
, then you replace
by
. If
is not a multiple of
, then you replace
by
. Then continue this process. For example, beginning with
, this procedure gives
. Suppose you start with
. What value results if you perform this operation exactly
times?
Solution 1 (Fast Solution)
Let
be the number of times the operation is performed. Notice the sequence goes
. Thus, for
, the value is
. Since
, the answer is
.
~andliu766 ~minor fix by MID_HAT
Solution 2 (More Explanatory)
Looking at the first few values of our operation, we get
. We can see that
goes to
, then to
, then back to
, and the loop resets. After 7 operations, we reach
. We still have 93 operations left, so because the loop will run exactly
times
, we will reach
again. So, the answer is
.
~Moonwatcher22
Solution 3 (very slightly different than previous)
Calculating the first few values, we get
. We can see that
will go to
, then to
, then back to
, and then the loop resets. After
moves, we reach
, the start of the cycle. We still have
moves to go, so to find what number we land on after
more steps, we can do
, meaning we go from
.
~yuvag
~a lot of credit to Moonwatcher22
Video Solution(Faster!)
Video Solution by Pi Academy
https://youtu.be/6qYaJsgqkbs?si=K2Ebwqg-Ro8Yqoiv
Video Solution 1 by Power Solve
Video Solution by Daily Dose of Math
~Thesmartgreekmathdude
Video Solution by SpreadTheMathLove
https://www.youtube.com/watch?v=_o5zagJVe1U
Video Solution by Just Math⚡
https://www.youtube.com/watch?v=lqZUYJPq_Jo
Video Solution by Dr. David
Video solution by TheNeuralMathAcademy
https://www.youtube.com/watch?v=4b_YLnyegtw&t=1547s
See Also
| 2024 AMC 10A (Problems • Answer Key • Resources) | ||
| Preceded by 2023 AMC 10B Problems |
Followed by 2024 AMC 10B Problems | |
| 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 10 Problems and Solutions | ||
These problems are copyrighted © by the Mathematical Association of America.