I want to find the limit of a recursive sequence given below: $$p_{n+1}=\frac{p_n^2+k}{2p_n}, \ \ \forall k \in \mathbb{R}$$ How would I go about it? I know this converges because it is the NR approximation for square roots. Thus, I ask too, if whether the limit of that relation above will give me the square root of $k$.
If you could write it in the most elementary of terms and with as much intuition as possible, that would be appreciated.
If you’ve proven the limit $L$ exists you can let $n\to \infty$ so the recurrence becomes $$L=\frac{L^2+k}{2L}$$ So $L^2=k$. Provided $p_n>0$ and $k>0$ you can conclude $L=\sqrt{k}$