|
1 | 1 | # Using Next Generation Matrices
|
2 | 2 |
|
3 |
| -The NGM for a 4-Group Infectious Disease Model with compartments $S_g$, $I_g$, $R_g$: Susceptible, Infected, and Recovered compartments in the $G$ groups $g = 1, \dots, G$. Where possible we try to be general, otherwise we will take $G = 4$ |
| 3 | +The NGM for a 4-Group Infectious Disease Model with compartments $S_i$, $I_i$, $R_i$: Susceptible, Infected, and Recovered compartments. |
4 | 4 |
|
5 |
| -Dynamics for $I_g$ in each group given by: |
| 5 | +Dynamics for $I_i$ in each group given by: |
6 | 6 |
|
7 | 7 | $$
|
8 |
| -\frac{d I_g}{dt} = \sum_{j} \frac{\beta_{jg} S_j I_j}{N_j} - \gamma_g I_g |
| 8 | +\frac{d I_i}{dt} = \sum_{j} \frac{\beta_{ij} S_i I_j}{N_j} - \gamma_i I_i |
9 | 9 | $$
|
10 | 10 |
|
11 | 11 | where:
|
12 | 12 |
|
13 |
| -- $\beta_{jg}$: Transmission rate from group $j$ to group $g$, |
| 13 | +- $\beta_{ij}$: Transmission rate from group $j$ to group $i$, |
14 | 14 | - $S_j$: Susceptible population in group $j$,
|
15 | 15 | - $N_j$: Total population in group $j$,
|
16 |
| -- $\gamma_g$: Recovery rate in group $g$. |
| 16 | +- $\gamma_i$: Recovery rate in group $i$. |
17 | 17 |
|
18 | 18 | The NGM is calculated at the disease free equilibrium (DFE) where
|
19 | 19 |
|
20 | 20 | $$
|
21 |
| -I_g = 0, S_g = N_g \ \text{for all\ } g |
| 21 | +I_i = 0, S_i = N_i \ \text{for all\ } i |
22 | 22 | $$
|
23 | 23 |
|
24 |
| ---- |
25 |
| - |
26 | 24 | And then the NGM `R` is given by:
|
27 | 25 |
|
28 | 26 | $$
|
29 |
| -\mathbf{R} = \mathbf{F} \mathbf{V}^{-1} |
30 |
| -$$ |
31 |
| - |
32 |
| -where $\mathbf{F}$ is the matrix of new infections and $\mathbf{V}$ is the matrix of transitions between compartments, not representing new infections. |
33 |
| - |
34 |
| -The elements of $\mathbf{F}$ are |
35 |
| - |
36 |
| -$$ |
37 |
| -\mathbf{F}_{ij} = \frac{\beta_{ij} S_{j}}{N_{j}} |
| 27 | +\mathbf{R}_{ij} = \frac{\beta_{ij} S_{i}}{\gamma N} |
38 | 28 | $$
|
39 | 29 |
|
40 |
| -while $\mathbf{V}$ is a diagonal matrix with $\mathbf{V}_{ii} = \gamma$ where the recovery rate is shared among all groups $g$. |
41 |
| - |
42 |
| -Since $\mathbf{V}$ is diagonal, its inverse is as well, with $(\mathbf{V}^{-1})_{ij} = 1 / \gamma_i$. |
43 |
| - |
44 |
| -If all $\gamma_i = \gamma$, $\mathbf{R}$ is given by |
45 |
| - |
46 |
| -$$ |
47 |
| -\mathbf{R}_{ij} = \frac{\beta_{ij} S_{j}}{\gamma N_{j}} |
48 |
| -$$ |
| 30 | +If all $\gamma_i = \gamma$ and we assume SIR dynamics. |
49 | 31 |
|
50 | 32 | The basic reproductive number $R_0$ is calculated as the dominant eigenvalue of $R$.
|
51 | 33 |
|
52 |
| -This model incorporates vaccination by recalculating the distribution of susceptible individuals $S_g / N_g$ when $v_g$ vaccinations have been administered to each group $g$ (assuming all or nothing vaccination, with vaccine efficacy given by $ve$): |
| 34 | +This model incorporates vaccination by recalculating the distribution of susceptible individuals in each group $S_{i}^{vax}$ (assuming all or nothing vaccination, with vaccine efficacy given by $ve$): |
53 | 35 |
|
54 | 36 | $$
|
55 |
| -\mathbf{S_{g}^{vax}} = S_{g}^{initial} - v_{g} * ve |
| 37 | +\mathbf{S_{i}^{vax}} = S_{i}^{initial} * (1 - v_{i} * ve) |
56 | 38 | $$
|
57 | 39 |
|
58 | 40 | Then $R_ij$ with vaccination factored in is given by
|
59 | 41 |
|
60 | 42 | $$
|
61 |
| -\mathbf{R}_{ij}^{vax} = \frac{\beta_{ij} S_{j}^{vax}}{\gamma N_{j}^{vax}} |
| 43 | +\mathbf{R}_{ij}^{vax} = \frac{\beta_{ij} S_{i}^{vax}}{\gamma N} |
62 | 44 | $$
|
63 | 45 |
|
64 | 46 |
|
|
0 commit comments