Suppose that we have a bounded polynomial defined on $[0,1]$. I think because it is just polynomial, root finding algorithms would easily and without any instability find all its roots. Am I right? And what is the fastest and most stable root-finding algorithm for my problem?
Edit: I introduce my polynomial as: $$ f(x) = B_n(x) - x$$
$B_n(x)$ is a bernstein polynomial with positive and strictly increasing coefficients $a_k$:
$$B_n(x) = \sum_{k=1}^n \binom n ka_kx^k (1-x)^{n-k}$$
$$a_0=0 < a_1 < a_2 < ... < a_n=1$$