I have a system of 10 ordinary differential equations of the form,
$$\frac{dy_1}{dt} = f1(V1,k1,y1,y2)\\ \vdots \\ \frac{dy_{10}}{dt} = f_{10}(V_{10},k_{10},y_{9},y_{10}) $$
I want to estimate the parameters $V_1 ,V_6,V_7,V_{10}$ using a global fit.
From the approaches suggested in the literature, I understand least-squares error minimization is commonly used. However, I'm not able to understand how optimization problem is actually formulated.
Cost function = $\Sigma_{i=1}^{10} (y_i^\text{experiment} - y_i^\text{model})^2$
Where, $y_i^\text{experiment}$ is the steady-state value obtained from experiments and not the time series data of $y_i$. Could someone explain how $y_i^\text{model}$ is expressed in terms of the parameters that are to be estimated?
Is is differential equation,(say) $\frac{dy_1}{dt} = f1(V1,k1,y1,y2)$
expanded using Taylor polynomial to find $y_1^\text{model}$?
Could someone provide an example?