Simple contagion

guillefix 4th November 2016 at 2:43pm

A simple contagion, is a property that spreads between individuals in such a way that an individual can get infected by simple exposure to another infected individual (possibly with a certain probability or rate). These are mostly compartmental models, and their extensions are used to model mostly biological contagions (like infectious diseases), as well as some IT contagions (like computer viruses). Often the model lives on a network that determines which individuals (nodes) interact (edges).

Compartmental models are those in which the individuals can be on any of a number of states (often "susceptible", "infected", or "recovered"), and there are certain rules for the contagion.

SI model

a.k.a susceptible-infected model. Just two states, "susceptible" and "infected". Susceptible individuals can get infected by infected individuals.

Fully mixed SI model

Assumes every individual has an equal probability (per unit time, i.e. rate) of meeting any other individual. A description is then made using a pair of Rate equations:

dXdt=βSXn\frac{d X}{dt} = \beta \frac{S X}{n} or dxdt=βsx\frac{dx}{dt}= \beta s x

where SS and XX are the average number of susceptible and infected individuals, respectively, in a population of nn individuals, and s=S/ns=S/n and x=X/nx=X/n. Furthermore, I+S=nI+S=n is unchanged in time, so s=1xs=1-x, and the above equation is equivalent to:

dxdt=β(1x)x\frac{dx}{dt}= \beta (1-x) x

which is the logistic growth equation.

SIR model

a.k.a susceptible-infected-recovered model or susceptible-infected-removed model. Adds the possibility of recovery (and subsequent immunity). Three states: "susceptible", "infected", and "recovered". Susceptible individuals can get infected by infected individuals. Individuals can recover after some time, and then become immune to new infections.

The model can also be applied to when the third state corresponds to a dead individual, as in this case the individual also doesn't participate in the network of possible infectious transmissions (though there are some subtleties in some cases, see note in page 632 on Newman's book). For this reason the R sometimes refer to "removed", encompassing both cases.

SIS model

SIRS model