Most classical epidemic models such as SIR and variants are formulated as differential equations. However, to me discrete-time models feel more natural to measure the evolution of a disease on a day-by-day basis:
- human activity come in daily cycles, so that most people are active by day and sleep at night, hence infections have at minimum a highly daily seasonality.
- all available data such as the number of new positive tests have a time resolution of one day.
- since there is a long delay between infection and infectivity period, the behavior on a very short time-scale is unlikely to matter.
- in the end, differential equations have to be discretized to simulate them. Even if one can do more sophisticated things than simple time-stepping (Runge-Kutta methods, for instance), the seasonality of the data and the fact that we rarely need to simulate for longer than approx. 100-day period suggest that the time accuracy obtained in solving a differential equation exactly is unlikely to matter.
- checking if a continuous-time model converges to zero is no simpler than checking if a discrete-time one does.
So why do people use SIRs and variants rather than equivalent discrete-time models? What is the advantage I am missing?