AMC12 2024 A
AMC12 2024 A · Q21
AMC12 2024 A · Q21. It mainly tests Sequences & recursion (algebra), Fractions.
Suppose that $a_1 = 2$ and the sequence $(a_n)$ satisfies the recurrence relation \[\frac{a_n -1}{n-1}=\frac{a_{n-1}+1}{(n-1)+1}\]for all $n \ge 2.$ What is the greatest integer less than or equal to \[\sum^{100}_{n=1} a_n^2?\]
假设 $a_1 = 2$,序列 $(a_n)$ 满足递推关系
\[\frac{a_n -1}{n-1}=\frac{a_{n-1}+1}{(n-1)+1}\]
对所有 $n \ge 2$。求 $\left\lfloor \sum^{100}_{n=1} a_n^2 \right\rfloor$ 的值。
(A)
338{,}550
338{,}550
(B)
338{,}551
338{,}551
(C)
338{,}552
338{,}552
(D)
338{,}553
338{,}553
(E)
338{,}554
338{,}554
Answer
Correct choice: (B)
正确答案:(B)
Solution
Multiply both sides of the recurrence to find that $n(a_n-1)=(n-1)(a_{n-1}+1)=(n-1)(a_{n-1}-1)+(n-1)(2)$.
Let $b_n=n(a_n-1)$. Then the previous relation becomes
\[b_n=b_{n-1}+2(n-1)\]
We can rewrite this relation for values of $n$ until $1$ and use telescoping to derive an explicit formula:
\[b_n=b_{n-1}+2(n-1)\]
\[b_{n-1}=b_{n-2}+2(n-2)\]
\[b_{n-2}=b_{n-3}+2(n-3)\]
\[\cdot\]
\[\cdot\]
\[\cdot\]
\[b_2=b_1+2(1)\]
Summing the equations yields:
\[b_n+b_{n-1}+\cdots+b_2=b_{n-1}+b_{n-2}+\cdots+b_1+2((n-1)+(n-2)+\cdots+1)\]
\[b_n-b_1=2\cdot\frac{n(n-1)}{2}\]
\[b_n-1=n(n-1)\]
\[b_n=n(n-1)+1\]
Now we can substitute $a_n$ back into our equation:
\[n(a_n-1)=n(n-1)+1\]
\[a_n-1=n-1+\frac{1}{n}\]
\[a_n=n+\frac{1}{n}\]
\[a_n^2=n^2+\frac{1}{n^2}+2\]
Thus the sum becomes
\[\sum^{100}_{n=1} a_n^2= \sum^{100}_{n=1} n^2+ \sum^{100}_{n=1} \frac{1}{n^2}+ \sum^{100}_{n=1} 2\]
We know that $\sum^{100}_{n=1} n^2=\frac{100\cdot101\cdot201}{6}=338350$, and we also know that $\sum^{100}_{n=1} 2=200$, so the requested sum is equivalent to $\sum^{100}_{n=1} \frac{1}{n^2}+338550$. All that remains is to calculate $\sum^{100}_{n=1} \frac{1}{n^2}$, and we know that this value lies between $1$ and $2$ (see the note below for a proof). Thus,
\[\sum^{100}_{n=1} a_n^2= \sum^{100}_{n=1} \frac{1}{n^2}+338550<2+338550=338552\]
\[\sum^{100}_{n=1} a_n^2= \sum^{100}_{n=1} \frac{1}{n^2}+338550>1+338550=338551\]
so
\[\sum^{100}_{n=1} a_n^2\in(338551,338552)\]
and thus the answer is $\boxed{\textbf{(B) }338551}$.
Note: $\sum^{100}_{n=1} \frac{1}{n^2}< \sum^{\infty}_{n=1} \frac{1}{n^2}=\frac{\pi^2}{6}<2$. It is obvious that the sum is greater than 1 (since it contains $\frac{1}{1^2}$ as one of its terms).
将递推关系的两边相乘,得 $n(a_n-1)=(n-1)(a_{n-1}+1)=(n-1)(a_{n-1}-1)+(n-1)(2)$。
令 $b_n=n(a_n-1)$。则前述关系变为
\[b_n=b_{n-1}+2(n-1)\]
我们可以将此关系写到 $n=1$ 并使用伸缩和来推导显式公式:
\[b_n=b_{n-1}+2(n-1)\]
\[b_{n-1}=b_{n-2}+2(n-2)\]
\[b_{n-2}=b_{n-3}+2(n-3)\]
\[\cdot\]
\[\cdot\]
\[\cdot\]
\[b_2=b_1+2(1)\]
将这些方程相加得:
\[b_n+b_{n-1}+\cdots+b_2=b_{n-1}+b_{n-2}+\cdots+b_1+2((n-1)+(n-2)+\cdots+1)\]
\[b_n-b_1=2\cdot\frac{n(n-1)}{2}\]
\[b_n-1=n(n-1)\]
\[b_n=n(n-1)+1\]
现在将 $a_n$ 代回:
\[n(a_n-1)=n(n-1)+1\]
\[a_n-1=n-1+\frac{1}{n}\]
\[a_n=n+\frac{1}{n}\]
\[a_n^2=n^2+\frac{1}{n^2}+2\]
因此和为
\[\sum^{100}_{n=1} a_n^2= \sum^{100}_{n=1} n^2+ \sum^{100}_{n=1} \frac{1}{n^2}+ \sum^{100}_{n=1} 2\]
我们知道 $\sum^{100}_{n=1} n^2=\frac{100\cdot101\cdot201}{6}=338350$,且 $\sum^{100}_{n=1} 2=200$,所以所需和等价于 $\sum^{100}_{n=1} \frac{1}{n^2}+338550$。剩下的是计算 $\sum^{100}_{n=1} \frac{1}{n^2}$,我们知道此值在 $1$ 和 $2$ 之间(下注证明)。因此,
\[\sum^{100}_{n=1} a_n^2= \sum^{100}_{n=1} \frac{1}{n^2}+338550<2+338550=338552\]
\[\sum^{100}_{n=1} a_n^2= \sum^{100}_{n=1} \frac{1}{n^2}+338550>1+338550=338551\]
所以
\[\sum^{100}_{n=1} a_n^2\in(338551,338552)\]
因此答案是 $\boxed{\textbf{(B) }338551}$。
注:$\sum^{100}_{n=1} \frac{1}{n^2}< \sum^{\infty}_{n=1} \frac{1}{n^2}=\frac{\pi^2}{6}<2$。显然该和大于 $1$(因为包含 $\frac{1}{1^2}$)。
Topics
Related Questions
Practice full AMC exams on amcdrill.
Try full-length practice and diagnostics at www.amcdrill.com.