Given a recursive relation $$a_n = \begin{cases} (1 - 2b_n)a_{n-1} + b_n, & n > 1 \\ \frac{1}{2}, & n =1 \end{cases} $$, how can I expression $a_n$ in term of $b_i, i \in \{1, 2, \dots n\}$?
2026-04-04 09:33:22.1775295202
How do I solve this recurrence relation?
61 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
2
Suppose that $a_n=\frac{1}{2}$ for some $n$. Then according to the recurrence:
\begin{align*} a_{n+1}&=(1-2b_{n+1})a_n+b_{n+1} \\ &= \frac{1}{2}-b_{n+1}+b_{n+1} \\ &= \frac{1}{2} \end{align*}
Since $a_1=\frac{1}{2}$, by induction this shows that $a_n=\frac{1}{2}$ for all $n$.