Math Problem Statement
A new infectious disease has arrived in Australia. The effects of the disease are mild, but it is highly infectious. Epidemiologists have developed a model for the spread of the disease. They classify the population in 3 groups: ut the number of people that have never been infected by day t, st the number of people sick on day t, and rt the number of people that have recovered from one (or more) previous bouts of the disease by day t. They estimate that each day 20% of uninfected people fall sick, as well as 10% of those that have recovered from a previous bout. Each day 70% of those currently sick (st), recover. The disease arrives on day 0.
Find a matrix A in such a way that (u_t+1, s_t+1, r_t+1) = A(u_t, s_t, r_t)
Solution
Ask a new question for Free
By Image
Drop file here or Click Here to upload
Math Problem Analysis
Mathematical Concepts
Matrix Algebra
Epidemiology Modeling
Formulas
u_(t+1) = 0.8 * u_t
s_(t+1) = 0.2 * u_t + 0.3 * s_t + 0.1 * r_t
r_(t+1) = r_t + 0.7 * s_t
Theorems
Matrix Representation of Linear Systems
Suitable Grade Level
University Level (Mathematics and Epidemiology)
Related Recommendation
Epidemic Model with Vaccination: Constant Population Proof and Parameter Definitions
Local Stability of Endemic Equilibrium in Epidemiological Models
SIR Model for Infectious Disease: Solving for State Variables Over 60 Days
Local Stability Analysis of Disease-Free Equilibrium in Epidemiology Model
Simulating SEIR Epidemiology Model with Python