Can we estimate $ y = \beta_1\exp(x) + \beta_2\exp(-x) + \beta_3$ using Linear Regression

43 Views Asked by At

Can we estimate the following relationship using linear regression. Here, $\beta_1, \beta_2 $ and $\beta_3$ are parameters.

$$ y = \beta_1\exp(x) + \beta_2\exp(-x) + \beta_3$$

1

There are 1 best solutions below

0
On BEST ANSWER

This is just multilinear regression.

You have $n$ data points $(x_i,y_i)$. For each point, define $u_i=e^{x_i}$ and $v_i=e^{-x_i}$

$$y = \beta_1\,u + \beta_2\,v + \beta_3$$

Linearity is related to the parameters, not to the functions.