I am currently struggling with the following exercise:
Let $z_0 = x_0+iy_0 \ne 0$ be a complex number and let the sequence $(z_n)_n$ be recursively defined as
$$z_{n+1} = \frac{1}{2} \left( z_n+\frac{1}{z_n} \right)$$
for $n \ge 0$. Show that if $x_{0} > 0$ then $\lim_{n \to \infty} \ z_n = 1$.
$\\$
I do not know how to work with complex recursive sequences, but I suppose that, as in the real-valued case, a solution will require proving that the limit exists and then to solve the recurrency $$l = \frac{1}{2} \left( l + \frac{1}{l} \right)$$ In the real valued case I would try to prove that $(z_n)_n$ is monotone and bounded, but since there is no order relation in $\mathbb{C}$ I can not use this apporoach here. Could you help me?
Edit: Thanks to Ahmad Bazzi's answer I now have an idea on how to prove that $(z_n)_n$ converges: If I can prove that both sequences $(x_n)_n$ and $(y_n)_n$ (these sequences are the real and imaginary parts of each $z_n$) converge I could deduce that $(z_n)_n$ converges. To prove that both $(x_n)_n$ and $(y_n)_n$ converge I would show that these sequences are both bounded and monotone (via induction). But unfortunately I do not get far with this approach because the definitions of these sequences is interwined, i.e.: \begin{align} x_{n+1} &= \frac{1}{2}(x_n + \frac{x_n}{x_n^2 + y_n^2})\\ y_{n+1} &= \frac{1}{2}(y_n - \frac{y_n}{x_n^2 + y_n^2}) \end{align} and I do not know how to go on from there. Any help would be appreciated.