I am new to Mathematica and am trying to figure out how to dynamically generate a system of ODEs. For example I have a system of 100 equations where every 10 are essentially the same but with slightly different parameters that can be read from a vector (of length 10). I would like to write the 10 equations out, then loop over some iterator to generate all 100 equations. Is there a standard way to do this?
For example, here is a system of 30 equations (for i in 1:10):
dX_i/dt = -\beta*X_i*Y_i + \delta_{i-1}*X_{i-1} - \delta_i*X_{i}
dY_i/dt = \beta*X_i*Y_i - \gamma_i*Y_i + \delta_{i-1}*Y_{i-1} - \delta_i*Y_{i}
dZ_i/dt = \gamma_i*Y_i + \delta_{i-1}*Z_{i-1} - \delta_i*Z_{i}
It seems redundant to copy paste new equations if I increase the i to say, 100 (i.e. giving us three hundred ODEs).