I'm given $$u_{n+1} = \sqrt {\sum_{k=0}^n u_k} $$ and $u(0) > 0.$ I have to find the recurrence relation between $u(n)$ and $u(n+1)$, but I can't manage to find it ... would be glad to have some help ! (btw this is just an intermediate questions for this problem)
2026-04-13 10:04:14.1776074654
Find the recurrence reaction between u(n+1) and u(n)
44 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
3
$$u_{n+1} = \sqrt {\sum_{k=0}^n u_k} $$ $$\implies u^2_{n+1} = \sum_{k=0}^n u_k \tag1$$ Similarly we have that, $$ u^2_{n} = \sum_{k=0}^{n-1} u_k \tag2$$ So, we can say that $$(1)-(2) \implies u_n=u^2_{n+1}-u^2_{n}$$ $$\implies u^2_{n+1}=u^2_n+u_{n}$$ $$\implies u_{n+1}=\sqrt {u^2_n+u_{n}}$$ This is the required recurrence relation.
Hope this helps you.