Difference between revisions of "1984 AIME Problems/Problem 7"
(→Solution 3) |
Orion 2010 (talk | contribs) m (→Solution 4 (Not really a solution, DON'T DO THIS ON A REAL TEST)) |
||
(8 intermediate revisions by 4 users not shown) | |||
Line 14: | Line 14: | ||
So this function reiterates with a period of 2 for <math>x</math>. It might be tempting at first to assume that <math>f(1004) = 1001</math> is the answer; however, that is not true since the solution occurs slightly before that. Start at <math>f^3(1004)</math>: | So this function reiterates with a period of 2 for <math>x</math>. It might be tempting at first to assume that <math>f(1004) = 1001</math> is the answer; however, that is not true since the solution occurs slightly before that. Start at <math>f^3(1004)</math>: | ||
<cmath>f^{3}(1004)=f^{2}(1001)=f(998)=f^{2}(1003)=f(1000)=\boxed{997}</cmath> | <cmath>f^{3}(1004)=f^{2}(1001)=f(998)=f^{2}(1003)=f(1000)=\boxed{997}</cmath> | ||
+ | |||
+ | Note that we should also be suspicious if our answer is <math>1001</math>- it is a <math>4</math>-digit number, and we were not asked to, say, divide our number by <math>13</math>. | ||
== Solution 2== | == Solution 2== | ||
Line 23: | Line 25: | ||
<cmath>f(996)=f(f(1001))=f(998)=997</cmath> | <cmath>f(996)=f(f(1001))=f(998)=997</cmath> | ||
− | Soon we realize the <math>f(k)</math> for integers <math>k<1000</math> either equal <math>998</math> or <math>997</math> based on | + | Soon we realize the <math>f(k)</math> for integers <math>k<1000</math> either equal <math>998</math> or <math>997</math> based on its parity. (If short on time, a guess of <math>998</math> or <math>997</math> can be taken now.) |
− | If <math>k</math> is even <math>f(k)=997</math> | + | If <math>k</math> is even, <math>f(k)=997</math>. If <math>k</math> is odd, <math>f(k)=998</math>. <math>84</math> has even parity, so <math>f(84)=997</math>. |
The result may be rigorously shown through induction. | The result may be rigorously shown through induction. | ||
− | |||
== Solution 3 == | == Solution 3 == | ||
Line 46: | Line 47: | ||
~ Nafer | ~ Nafer | ||
+ | |||
+ | == Solution 4 (really a solution, DO THIS ON A REAL TEST) == | ||
+ | |||
+ | Open up a coding IDE and use recursion to do this problem. The idea is to define a function (I called it <math>f</math>, you can call it whatever you want) with parameter <math>n</math> (or 84 in this case) and say if <math>n</math> is greater than 1000, then return <math>n-3</math>. Else, return <math>f(f(n + 5))</math>. If this doesn't make sense, then search 'Recursion' on YouTube and try to understand recursive functions. Python code: | ||
+ | |||
+ | def f(n): | ||
+ | if n >= 1000: | ||
+ | return n - 3 | ||
+ | else: | ||
+ | return f(f(n + 5)) | ||
+ | print(f(84)) | ||
+ | |||
+ | -NL008 | ||
+ | |||
+ | |||
+ | Or [python]def f(n): | ||
+ | if n < 1000: | ||
+ | return f(f(n + 5)) | ||
+ | else: | ||
+ | return n-3 | ||
+ | print(f(84))[/python] | ||
+ | |||
+ | -Sernegeti22 | ||
== See also == | == See also == |
Latest revision as of 22:31, 6 October 2024
Contents
Problem
The function f is defined on the set of integers and satisfies
Find .
Solution 1
Define , where the function is performed times. We find that . . So we now need to reduce .
Let’s write out a couple more iterations of this function: So this function reiterates with a period of 2 for . It might be tempting at first to assume that is the answer; however, that is not true since the solution occurs slightly before that. Start at :
Note that we should also be suspicious if our answer is - it is a -digit number, and we were not asked to, say, divide our number by .
Solution 2
We start by finding values of the function right under since they require iteration of the function.
Soon we realize the for integers either equal or based on its parity. (If short on time, a guess of or can be taken now.) If is even, . If is odd, . has even parity, so . The result may be rigorously shown through induction.
Solution 3
Assume that is to be performed times. Then we have In order to find , we want to know the smallest value of Because then From which we'll get a numerical value for .
Notice that the value of we expect to find is basically the smallest such that after is performed times and then is performed back times, the result is greater than or equal to .
In this case, the value of for is , because Thus
~ Nafer
Solution 4 (really a solution, DO THIS ON A REAL TEST)
Open up a coding IDE and use recursion to do this problem. The idea is to define a function (I called it , you can call it whatever you want) with parameter (or 84 in this case) and say if is greater than 1000, then return . Else, return . If this doesn't make sense, then search 'Recursion' on YouTube and try to understand recursive functions. Python code:
def f(n): if n >= 1000: return n - 3 else: return f(f(n + 5)) print(f(84))
-NL008
Or [python]def f(n):
if n < 1000: return f(f(n + 5)) else: return n-3
print(f(84))[/python]
-Sernegeti22
See also
1984 AIME (Problems • Answer Key • Resources) | ||
Preceded by Problem 6 |
Followed by Problem 8 | |
1 • 2 • 3 • 4 • 5 • 6 • 7 • 8 • 9 • 10 • 11 • 12 • 13 • 14 • 15 | ||
All AIME Problems and Solutions |