🔄 Endemic Persistence: Modeling Disease Dynamics with Population Renewal 📈

Classic epidemic models often assume a closed population over short timescales where demographic factors are negligible. For analyzing long-term behavior or diseases that persist for years, the inclusion of Vital Dynamics—recruitment (birth) and natural death—is essential. These mechanisms allow the model to maintain a continuous influx of susceptible individuals, enabling endemic persistence even after the epidemic phase has faded.


🔗 Compartmental Structure and Flow Explanation

The baseline Susceptible–Infectious–Recovered (SIR) model is augmented to incorporate demographic flows, enabling the population size N to vary or remain dynamically sustained.

CompartmentNotationFlow Description
SusceptibleSIndividuals enter through recruitment (Λ) and exit through infection (β) or natural death (μS).
InfectiousIIndividuals become infected from the susceptible class (β) and are removed via recovery (γ) or natural death (μ).
RecoveredRIndividuals gain immunity through recovery (γ) and leave via natural death (μ).

In this model, a disease can become endemic if the inflow of new susceptibles consistently replenishes the population faster than immunity accumulates.


🧮 Mathematical Formulation (ODEs)

The SIR model with constant recruitment (Λ) and natural mortality (μ) is given by:

dS/dt = Λ − β (S I / N) − μ S
dI/dt = β (S I / N) − (γ + μ) I
dR/dt = γ I − μ R

A common assumption is Λ = μ N, which maintains a constant total population size (N).


⚗ Parameter Definitions and Ranges

ParameterDefinitionTypical Range (per day)
βTransmission rate coefficient0.2 – 1.0
γRecovery rate0.14 – 0.5
μNatural death rateapproximately 1/27,000
ΛRecruitment rateapproximately μ N (for constant N)

These parameters link biological infection processes with demographic turnover, enabling long-term dynamic behavior.


🎯 Applicability and Limitations

Applications

  1. Endemic State Analysis
    Used to determine conditions under which a disease stabilizes at a positive endemic equilibrium, instead of fading out.
  2. Long-Term Forecasting
    Appropriate for diseases with recurrent patterns or multi-year persistence.
  3. Immigration and Renewal Effects
    Useful when modeling the introduction of new individuals into susceptible or infected classes, representing migration or inflow.

Key Assumptions and Weaknesses

  1. Homogeneous Mixing
    Assumes individuals mix uniformly, neglecting behavioral or spatial variation.
  2. Constant Parameters
    Parameters such as β, γ, Λ, and μ are typically assumed time-invariant, excluding seasonal variation or behavioral changes.
  3. Endemic Threshold Behavior
    When constant immigration of infectives is included, a disease-free equilibrium may vanish entirely.

📚 Selected References

  1. Kermack, W. O., & McKendrick, A. G. A contribution to the mathematical theory of epidemics.
  2. Hethcote, H. W. The mathematics of infectious diseases.
  3. Wang, W., & Ruan, S. Bifurcations in an epidemic model with constant removal rate of the infectives.
  4. Brauer, F., & Castillo-Chavez, C. Mathematical Models in Population Biology and Epidemiology.
  5. Arino, J., Brauer, F., van den Driessche, P., Watmough, J., & Wu, J. A final size relation for epidemic models.

Leave a Comment