The following is from a comp. sci. book that discusses regression. The passage seems to say that while a function fitted to a data set may be quadratic, it may yet be considered linear. This seems contradictory, and I'm not entirely sure what I'm missing. Could someone please point me in the right direction?
For example, when we fit a quadratic, we get a model of the form $y=ax^2 + bx +c$. In such a model, the value of the dependent variable $y$ is linear in the independent variables $x^2 , x^1$ and $x^0$ and the coefficients $a, b$ and $c$.
Linear in the coefficients $a,b,c$ not in $x$. So, any of the following models is a linear regression model
E.g. just rename $x_1:=\ln{x}$ in the first, to obtain $$y=β_0+β_1x_1+ε$$ or $x_1:=\exp(x), x_2:=\cos(x), x_3:=\sin(x)$ in the third to write it as $$y=β_0+β_1x_1+β_2x_2+β_3x_3+ε$$
Contrary the following model is not a linear regression model $$y=β_0+β_1^2x+ε$$ due to the $β^2_1$ term.