If a polynomial is evaluated over an interval (by the use of interval arithmetic and Horner's method), what does the result say about the polynomial's roots?
I mean, if the resulting interval contains zero, does it mean there must be one more more roots inside the original interval? Could it happen that there might be no zero?
If the resulting interval contains no zero (i.e. both of its end-points have the same sign), does it mean there is no polynomial root inside the original interval? What if one of the end-points of the result is zero?
Generally, the interval range enclosure won't be tight. Therefore,
There could be roots. Or not. It requires further (interval) analysis: monotonicity test using enclosure for the derivative and interval Newton method. But first bisect and calculate enclosures over smaller intervals until you arrive at the following, more favorable, situation:
Yes.