Example: Assume you have data points (x, y): (-1, 0.5), (0.9, 0.31) and (1, 0.5) and try to fit a second order polynomial (y = f(x) ) to these (for instance f(x) = x^2 - 0.5) . Then, there are c such that f(c) < 0 for instance c = 0 even though all your y data are positive.
More information (like a minimal running code example) would be useful in order to provide more hints.