I'm not sure why you're looking for a bracketing interval. That doesn't necessarily help for Newton's method. Consider, for example,
$$f(x) = -8 x^3+12 x^2-2.$$
It's easy to show by direct computation that $x=1/2$ is a simple root of $f$ and that $[0,1]$ is a bracketing interval. Unfortunately, $0$ and $1$ are both poor starting points for Newton's method here, since $f'(0)=f'(1)=0$.
Newton's method requires a single starting point. For this particular example, I took a look and thought - maybe $x_0$ should be around $$\sqrt[4]{20000} = 10\times \sqrt[4]{2},$$ which is probably just a little bit bigger than $10$. So I tried $x_0=12$ and it worked.
Application of Newton's method to arbitrarily contrived examples like this will almost certainly require ad hoc methods. When working with some particular family of functions that arise from an actual application, however, it's quite common that you can find reasonable starting values for that application. For example, this answer describes how Newton's method can be used to solve an equation that arises in the context of fractal dimension.