题目
Problem
A sequence is defined by
(a) Find the value of , the value of and the value of .
(b) Find the value of .
(5)
题目中文翻译
数列 定义如下:
,
(a) 求 、 和 的值。
(b) 求 的值。
(5分)
解答
解法一
思路
递推数列问题。逐项计算几项后会发现数列以3为周期循环,利用周期性可以简化前100项的求和。
答题过程
(a) Using the recurrence relation with :
u_2 =&\, 2 - \frac{4}{u_1} = 2 - \frac{4}{3} = \frac{2}{3} \\[2mm] u_3 =&\, 2 - \frac{4}{u_2} = 2 - \frac{4}{\frac{2}{3}} = 2 - 6 = -4 \\[2mm] u_4 =&\, 2 - \frac{4}{u_3} = 2 - \frac{4}{-4} = 2 + 1 = 3 \end{align*}$$ $$u_2 = \dfrac{2}{3}, \quad u_3 = -4, \quad u_4 = 3$$ **(b)** Since $u_4 = u_1 = 3$, the sequence is periodic with period 3. The sum of one complete period is: $$\begin{align*} u_1 + u_2 + u_3 =&\, 3 + \frac{2}{3} + (-4) = -\frac{1}{3} \end{align*}$$ 100 terms contain 33 complete periods and 1 remaining term: $$\begin{align*} \sum_{r=1}^{100} u_r =&\, 33 \times \left(-\frac{1}{3}\right) + u_{100} \\ =&\, -11 + u_1 \\ =&\, -11 + 3 \\ =&\, -8 \end{align*}$$