Can anyone explain me why does that limit is actually solving square root :
$\lim_{n\rightarrow \infty}{x}_{n} = \sqrt{a} \\{x}_{0} = \frac{a}{2}; \quad {x}_{n} = 0.5*({x}_{n-1} + \frac{a}{{x}_{n-1}}); \\n = 1, 2, ...$
I was not able to find anything else except binary search for square root problem, so I have no idea how the limit will turn out to be the right answer.
note that $$\frac{1}{2}\left(x_{n-1}+\frac{a}{x_{n-1}}\right)\geq \sqrt{a}$$