Suppose we want to find the best coefficients $a$ and $b$ that fits the data we have according to a model of the form $$ y = a t e^{bt} \text{ or } y = a e^{bt} \text{ or } y = a \left( \frac{x}{b+x} \right) $$ for example. Then I know we can linearize these non-linear least squares problems and find the linear regression of the transformed problem. My question is : will the values of $a$ and $b$ found by solving the linearized problem actually be the optimal parameters for the original non-linear least squares problem ?
I searched a lot on the Internet for information about this and it seems like in some cases we will get the exact values and in other not because the errors according to the linearized problem will behave differently compared to the original non-linear problem. For example computations seem to show that for the first model $y = ate^{bt}$, we get the same $b$ when solving the transformed linear model and numerically calculating the solution of the non-linear model, but $a$ differs a little. But, I do not quite understand. Any help will be very appreciated.