I have this equation
$x^{5}+x^{3}+3=0$
and I'm supposed to find one root with a given accuracy using the secant method. I was wondering how I can localize a solution to an interval so I can apply the formula. I'm aware that I could separate the equation into two functions and plot both of them, but I think that can be hard sometimes when I don't have access to plotting tools like Desmos and my equation gets complicated.
Choose two points $x_0$and $x_1$
Here I choose $x_0=-1$ and $x_1=-2$ $$f(x_0)f(x_1)<0$$ Then apply the secant formula
$$x_n=\frac{x_{n-2}f(x_{n-1})-x_{n-1}f(x_{n-2})}{f(x_{n-1}-f(x_{n-2}))}$$
Thus $$x_2=-1.02631$$ $$x_3=-1.0464$$ $$x_4=-1.1130$$ $$x_5=-1.1045790$$ $$x_6=-1.1052901$$ $$x_7=-1.1052986$$ $$x_8=-1.1052985$$
Keep continuing until you get the root.