We all know that we can fit a linear regression model even in cases when our predictors are not linearly related to the dependent. Like the example below (polynomial regression) -
(y = a + b X^2) can be written as (y = a + b Z) where Z = X^2
My question is, can there be changes to the form of the Beta coefficients as well?
More over, I am thinking of a few peculiar cases like this -
y = a + e^b X (where e is the Euler number)
would this still qualify for a linear regression or these mutations cannot be applied on the coefficients?
Thank you.