If we select a model to our data of a kind other than linear i.e instead of the linear model y = ax + b we use y = ax^2 + bx + c
And use the same standard process of finding coefficients (least squares) should we be able to predict the best parameters a, b and c ?
In the section for Linear Regression in Wikipedia, in the Example section, they actually do this, but do not call it non-linear regression, so I wonder this:
- Can we use least squares method from linear regression with non-linear models ?
- Is the selection of a non linear model (like in the Wikipedia page) called non-linear regression or is it called something else?
- Or what are they suggesting ?
y = ag + bx + cwhere x^2 is g, otherwise seems to get one of the x as parameters, or some strange thing. @Dave – Minsky Jun 23 '23 at 17:46gvariable, knowing thatgequalsx^2. – Dave Jun 23 '23 at 18:03x^2asgwe can easily think also about x asuand then we havef(g,u) = ag + bu + cand then we will be fitting a plane to some extent. @Dave – Minsky Jun 23 '23 at 18:15