I'm currently researching glucose-insulin regulation system and I came across this homogeneous system of linear differential equations: \begin{array}{lr} x'&=&-\alpha x-\beta y\\ y'&=&\gamma x-\delta y \end{array} Here $x$ and $y$ are the difference in the concentrations of glucose and insulin from their equilibrium levels respectively. $\alpha$ is the rate constant related to the efficiency that the liver absorbs glucose, $\beta$ to the rate at which glucose is absorbed by muscle, $\gamma$ to the rate that insulin is produced by the pancreas and $\delta$ the rate at which insulin is degraded by the liver.
I want to find the parameters $\alpha, \beta, \gamma,$ $\delta$, but I have absolutely no idea how to do so. I tried to integrate them and plug in the initial conditions and other values, but I wasn't able to find them. Can you please help me find these constants? Thank you.
Note: the data is summarized in the table below
P.S. In the case that this problem cannot be solved by hand, would it be possible to use computer to solve it?


Off hand I would suggest that you (i) use your table of numerical data to try to estimate the time rates of change that appear on the left side of your model such as $\frac{dx}{dt}\approx \frac{ \Delta x}{\Delta t}$; then (ii) attempt to fit a pair of linear equations in $x$ and $y$ to that estimated data. The standard method for performing (ii) is called linear regression (based on least-squared error minimization). You could collaborate with someone versed in statistics to execute the details.