I want to prove the convergence of the newton method for a convex function.
Let $f: [a,b] \to \mathbb R$ be a differentiable, convex function with $f(a) \gt 0$ and $f(b) \lt 0$. Let $(x_n)_n$ be the sequence
$$x_0 = a, \quad x_{n+1} = x_n - \frac{f(x_n)}{f'(x_n)}$$
Show that $(x_n)_n$ converges to the unique zero of the function $f$.
I understand the geometric intuition with $(x_n)_n$ being the sequence of zeros of the tangent lines of the function. But I struggle proving it mathematically.
I already know, that $f$ has a unique zero $c \in (a,b)$. Proceeding from there I want to show that if $(x_n)_n$ converges, then $\lim_{n \to \infty} (x_n)_n = c$ and also that $(x_n)_n$ is increasing and bounded. Then it follows that $\lim_{n \to \infty} (x_n)_n = c$.
I found this question but the proof restricts itself to different cases and uses just geometric arguments for the increasingness and boundness of $(x_n)_n$. I'm worried that this won't be rigorously enough.
How can I prove the above theorem? I tried proving the first statement below.
What I have so far:
Lemma 1: If $(x_n)_n$ converges then it converges to the zero of $f$.
Assume $(x_n)_n$ converges with $\lim_{n \to \infty} x_n = c$. Then it follows that $\lim_{n \to \infty} (x_n - x_{n+1}) = 0$. Also $f'$ is bounded since it's monotonously increasing on a compact interval. Therefore
$$0 = \lim_{n \to \infty} f'(x_n) (x_n - x_{n+1}) = \lim_{n \to \infty} f(x_n) = f(c)$$
where the last equality follows from the continuity of $f$.