- We’ll start with a very simple model, a population of entities (pathogens/immune cells/humans/animals) that grow or die.
- We’ll implement the model as a discrete time equation, given by:
\[ P_{t+dt} = P_t + dt ( g P_t - d_P P_t ) \]
- \(P_t\) are the number of pathogens in the population at current time \(t\), \(dt\) is some time step and \(P_{t+dt}\) is the number of pathogens in the future after that time step has been taken.
- The processes/mechanisms modeled are growth at rate \(g\) and death at rate \(d_P\).