#series
15 messages · Page 1 of 1 (latest)
for solving a complex recurrence relation, sometimes the best approach is to calculate the first few terms and look for a pattern.
in (3), u_1~u_4 are as follows
$u_1=1 \ u_2=-7/4 \ u_3=-32/11 \ u_4=-99/25$
へいほー
from this, we can presume that u_n will be like -n + (small value)
so now, let u_n = v_n -n
and ...
In (4), the relation is not as complex as the one in (3).
and when we decompose frac in right side into partial fracs,
we can easily presume that the original relation will be like
$u_{n+1}-\frac{A}{n+2}=\frac{2}{3}\left(u_n -\frac{A}{n+1}\right)$
へいほー
and ...