Difference between revisions of "2024 AMC 12A Problems/Problem 21"
(→Solution 5 (transform)) |
|||
(6 intermediate revisions by 3 users not shown) | |||
Line 4: | Line 4: | ||
<math>\textbf{(A) } 338{,}550 \qquad \textbf{(B) } 338{,}551 \qquad \textbf{(C) } 338{,}552 \qquad \textbf{(D) } 338{,}553 \qquad \textbf{(E) } 338{,}554</math> | <math>\textbf{(A) } 338{,}550 \qquad \textbf{(B) } 338{,}551 \qquad \textbf{(C) } 338{,}552 \qquad \textbf{(D) } 338{,}553 \qquad \textbf{(E) } 338{,}554</math> | ||
− | ==Solution== | + | ==Solution 1== |
Multiply both sides of the recurrence to find that <math>n(a_n-1)=(n-1)(a_{n-1}+1)=(n-1)(a_{n-1}-1)+(n-1)(2)</math>. | Multiply both sides of the recurrence to find that <math>n(a_n-1)=(n-1)(a_{n-1}+1)=(n-1)(a_{n-1}-1)+(n-1)(2)</math>. | ||
Line 67: | Line 67: | ||
==Solution 2== | ==Solution 2== | ||
+ | According to the equation given, | ||
+ | |||
<cmath>\frac{a_n - 1}{n - 1} = \frac{a_{n - 1} + 1}{n}</cmath> | <cmath>\frac{a_n - 1}{n - 1} = \frac{a_{n - 1} + 1}{n}</cmath> | ||
Line 73: | Line 75: | ||
<cmath>na_n - (n - 1)a_{n - 1} = 2n - 1</cmath> | <cmath>na_n - (n - 1)a_{n - 1} = 2n - 1</cmath> | ||
− | Suppose <math>{b_n}</math>, <math>b_n = na_n</math>, then <math>b_n - b_{n - 1} = 2n - 1</math>, where <math>b_1 = 1 \cdot a_1 = 2</math>, then we obtain that | + | Suppose <math>\{b_n\}</math>, <math>b_n = na_n</math>, then <math>b_n - b_{n - 1} = 2n - 1</math>, where <math>b_1 = 1 \cdot a_1 = 2</math>, then we obtain that |
<cmath>b_n = b_1 + (b_2 - b_1) + (b_3 - b_2) + \cdots + (b_n - b_{n - 1})</cmath> | <cmath>b_n = b_1 + (b_2 - b_1) + (b_3 - b_2) + \cdots + (b_n - b_{n - 1})</cmath> | ||
Line 105: | Line 107: | ||
~[https://artofproblemsolving.com/wiki/index.php/User:Reda_mandymath reda_mandymath] | ~[https://artofproblemsolving.com/wiki/index.php/User:Reda_mandymath reda_mandymath] | ||
+ | |||
+ | ==Solution 3 (lazy + quick)== | ||
+ | |||
+ | We'll first try to isolate <math>a_n</math> in terms of <math>a_{n-1}</math>. | ||
+ | |||
+ | <math>(a_n-1)(n-1+1)=(n-1)(a_{n-1}+1)</math> | ||
+ | |||
+ | <math>a_n-1=\frac{(n-1)(a_{n-1}+1)}{n}</math> | ||
+ | |||
+ | <math>a_n=\frac{n-1}{n}(a_{n-1}+1)+1</math> | ||
+ | |||
+ | <math>a_n=\frac{n-1}{n}(a_{n-1})+\frac{n-1}{n}+1</math> | ||
+ | |||
+ | <math>a_n=\frac{n-1}{n}(a_{n-1})+\frac{2n-1}{n}</math> | ||
+ | |||
+ | Now, as with many, many of these large summation problems, if we just evaluate the first few values in the series, a pattern should emerge quickly. Here it works out well since our product on the LHS cancels out. | ||
+ | |||
+ | <math>a_1=2</math> | ||
+ | |||
+ | <math>a_2=\frac{1}{2}(2)+\frac{3}{2}=\frac{5}{2}</math> | ||
+ | |||
+ | <math>a_3=\frac{2}{3}(\frac{5}{2})+\frac{5}{3}=\frac{10}{3}</math> | ||
+ | |||
+ | <math>a_4=\frac{3}{4}(\frac{10}{3})+\frac{7}{4}=\frac{17}{4}</math> | ||
+ | |||
+ | Here it becomes glaringly obvious that <math>a_n=\frac{n^2+1}{n}=n+\frac{1}{n}</math>. | ||
+ | |||
+ | So, <math>a_n^2=n^2+\frac{1}{n^2}+2</math>. | ||
+ | |||
+ | We proceed with the same summation strategy as Solution 1 and get our answer of <math>\boxed{\textbf{(B) }338551}</math>. | ||
+ | |||
+ | *Note: You only have find the answer's units digit from the answer choices; that's <math>0+1+0</math> for each sum, giving choice B. | ||
+ | |||
+ | ~nm1728 | ||
+ | |||
+ | ==Solution 4 (transform)== | ||
+ | |||
+ | <cmath>n a_{n} - n = (n-1) a_{n-1} + n-1 </cmath> | ||
+ | <cmath>n \cdot a_{n} - n^2 = (n-1) a_{n-1} - n^2 +2n-1 </cmath> | ||
+ | <cmath>n \cdot a_{n} - n^2 = (n-1) a_{n-1} - (n-1)^2 </cmath> | ||
+ | Set <cmath> b_{n} = n a_{n} - n^2 </cmath> | ||
+ | <cmath>n a_{n} - n^2 = b_{n} = b_{n-1}= ... = b_{1} =1 </cmath> | ||
+ | <cmath> a_{n} = \frac{1}{n} + n </cmath> | ||
+ | <cmath> a_{n}^2 = \frac{1}{n^2} + n^2 +2 </cmath> | ||
+ | |||
+ | <cmath> Sum = 1^2 + 2^2 + ... + 100^2 + 2* 100 + 1^2 + 1 / 2^2 + ... + 1/ 100^2 = 100 * 101 *201 / 6 + 200 + 1 + ... = 338551.xxx \boxed{\textbf{(B) }338551} </cmath> | ||
+ | |||
+ | ~[https://artofproblemsolving.com/wiki/index.php/User:Cyantist luckuso] | ||
+ | |||
+ | ==Solution 5 (transform)== | ||
+ | |||
+ | According to the equation given, | ||
+ | |||
+ | <cmath>\frac{a_n - 1}{n - 1} = \frac{a_{n - 1} + 1}{n}</cmath> | ||
+ | |||
+ | <cmath>na_n = (n - 1)a_{n - 1} + 2n - 1 = (n - 2)a_{n - 2} + (2n-3) + (2n - 1) = 1*a_{1} + 1 + 3 + ... + 2n - 1 = 1 + \frac{1+ (2n-1)*n}{2} = n^2+ 1 </cmath> | ||
+ | |||
+ | <cmath>a_n =n + \frac{1}{n}</cmath> | ||
+ | |||
+ | The rest continues similar to Solution 1 or 2 | ||
+ | |||
+ | ~[https://artofproblemsolving.com/wiki/index.php/User:Cyantist luckuso] | ||
==See also== | ==See also== | ||
{{AMC12 box|year=2024|ab=A|num-b=20|num-a=22}} | {{AMC12 box|year=2024|ab=A|num-b=20|num-a=22}} | ||
{{MAA Notice}} | {{MAA Notice}} |
Latest revision as of 17:33, 17 November 2024
Contents
Problem
Suppose that and the sequence satisfies the recurrence relation for all What is the greatest integer less than or equal to
Solution 1
Multiply both sides of the recurrence to find that .
Let . Then the previous relation becomes
We can rewrite this relation for values of until and use telescoping to derive an explicit formula:
Summing the equations yields:
Now we can substitute back into our equation:
Thus the sum becomes
We know that , and we also know that , so the requested sum is equivalent to . All that remains is to calculate , and we know that this value lies between and (see the note below for a proof). Thus,
so
and thus the answer is .
~eevee9406
Note: . It is obvious that the sum is greater than 1 (since it contains as one of its terms).
If you forget this and have to derive this on the exam, here is how:
and it is clear that . ~eevee9406
Solution 2
According to the equation given,
Suppose , , then , where , then we obtain that
Hence,
Notice that,
so
and thus the answer is .
Solution 3 (lazy + quick)
We'll first try to isolate in terms of .
Now, as with many, many of these large summation problems, if we just evaluate the first few values in the series, a pattern should emerge quickly. Here it works out well since our product on the LHS cancels out.
Here it becomes glaringly obvious that .
So, .
We proceed with the same summation strategy as Solution 1 and get our answer of .
- Note: You only have find the answer's units digit from the answer choices; that's for each sum, giving choice B.
~nm1728
Solution 4 (transform)
Set
Solution 5 (transform)
According to the equation given,
The rest continues similar to Solution 1 or 2
See also
2024 AMC 12A (Problems • Answer Key • Resources) | |
Preceded by Problem 20 |
Followed by Problem 22 |
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.