Suppose we are employing Newton's method: $$ x_{k+1}=x_k - \frac{f(x_k)}{f'(x_k)}. $$
Suppose $f$ is twice differentiable, $f(c)=0$, $f'(x) \neq 0$ on $(c-h, c+h)$, and $x_1 \in (c-h, c+h)$. Let $\epsilon_k : = x_k - c$. We know that $$ |\epsilon_{k+1}| = \left| \frac{f''(\xi_k)}{2f'(x_k)} \right| {\epsilon_k} ^2, $$ for some $\xi_k$ between $c$ and $x_k$.
Therefore if $\displaystyle |\epsilon_1| \leq \frac{\sup\limits_{x\in (c-h,c+h)}|f''(x)|}{\inf\limits_{x\in (c-h, c+h)}|f'(x)|}$, then we will have convergence (in fact, quadratic convergence).
Another sufficient condition (I believe) is that $f$ is twice differentiable, $f'(x) \neq 0$ on $[c,c+h)$, $x_1 \in [c, c+h)$, and $ff'' > 0$ on $(c,c+h)$ (or similarly in a left-neighborhood), since in this case, we can show that $x_k$ is monotone increasing (decreasing) and bounded above (below) by $c$.
What are some other sufficient conditions for convergence of Newton's Method on $\mathbb{R}$?