Given a set of data and training points, suppose we obtain a polynomial regression of the form
$$f(x) = w_0 + w_1 x + \ldots w_n x^n$$
Is there a rule of thumb as to what order of the polynomial is it more likely to overfit? For example, can we say that as the order of the polynomial grow, the likelihood of overfitting increases?
Also, is it common to observe explosive behavior for higher order polynomials? For example, your data is concentrated between range $[-5, +5]$. Could the polynomial regression explode to the range of say $[-1000, 1000]$ due to the higher order terms $x^n$, the weights, and possibly the outliers in the training data?