Question

In: Advanced Math

A SIS disease spreads through a population of size K = 30, 000 individuals. The average...

A SIS disease spreads through a population of size K = 30, 000 individuals. The average time of recovery is 10 days and the infectious contact rate is 0.2 × 10^(−4) individuals^(−1) day^(−1) . (a) The disease has reached steady-state. How many individuals are infected with the disease? (b) What is the minimum percentage reduction in the infectious contact rate that is required to eliminate the disease? (c) By implementing a raft of measures it is proposed to reduce the value of the infectious contact rate to one percent of its initial value. Will this be sufficient to eliminate the disease within twenty-eight days? (d) Is it feasible to eliminate the disease within twenty-eight days solely by reducing the value of the pairwise contact rate? (e) How may days will the ‘raft of measures’ have to be maintained if we are to eliminate the disease?

Solutions

Expert Solution

According to the SIS model, the modelling equations are

where, is the susceptible population, is the infected population,

In steady state,

Therefore,

Therefore, either or , Given, Therefore, . Therefore, at steady state 1/4th of the population is susceptible. So, not everyone is infected.

===================================================

According to the SIS model, the modelling equations are

where, is the susceptible population, is the infected population,

Given, ,

(a) In steady state,

Therefore,

This means either the infected population goes to zero or,

Clearly, since , we approach a solution where the infected population reaches 0.

Therefore, there are no infected individuals.

------------------------------

(b) Clearly, the steady state solution has I = 0. So no change is required.

------------------------------

(c) The new contact rate is

We require that

Here is the MATLAB Code to simulate this system, in order to find if the proposal is feasible

SIS.m --

function dSIdt = SIS(~, SI)
    beta = 0.2e-6;
    gamma = 0.1;
    K = 30000;
    dSIdt = zeros(2, 1);
    dSIdt(1) = -(beta/K)*SI(2)*SI(1) + gamma*SI(2);
    dSIdt(2) = (beta/K)*SI(2)*SI(1) - gamma*SI(2);
end

solution.m --

init = [0 30000];
t = [0 28];
[T, SI] = ode45(@SIS, t, init);

% Plot Solution
plot(T, SI(:,1), 'b-'); % Plot S
hold on;
plot(T, SI(:,2), 'r-'); % Plot I
legend;

disp( SI(end, 2) );

We find that at the end of 28 days the population infected is

1824.3 Therefore, the measures are not suitable.

----------------------------

(d) The effect of the contact rate is dominant only when there is a large enough susceptible population. Since 28 days is not enough of a recovery time for the susceptible population to have effect on the rate of change. It is not feasible to solely rely on reducing the contact rate.

------------------------------

(e) Using numerical simulation for different values of time using the above MATLAB Code, we have

for t = [0 96], that SI(end, 2) = 0.92181.

Therefore, we require 96 days.


Related Solutions

A SIS disease spreads through a population of size K = 30, 000 individuals. The average...
A SIS disease spreads through a population of size K = 30, 000 individuals. The average time of recovery is 10 days and the infectious contact rate is 0.2 × 10^(−4) individuals^(−1) day^(−1) . (a) The disease has reached steady-state. How many individuals are infected with the disease? (b) What is the minimum percentage reduction in the infectious contact rate that is required to eliminate the disease? (c) By implementing a raft of measures it is proposed to reduce the...
1. the way a disease spreads throughout a population is the: the portal of entry the...
1. the way a disease spreads throughout a population is the: the portal of entry the mode of transmission the reservoir of infection 2. the original source of a disease is the: the mode of transmission the portal of entry the reservoir of infection
Currently, among the 20 individuals of a population, 2 have a certain infection that spreads as...
Currently, among the 20 individuals of a population, 2 have a certain infection that spreads as follows: Contacts between two members of the population occur in accordance with a Poisson process having rate ?. When a contact occurs, it is equally likely to involve any of the possible pairs of individuals in the population. If a contact involves an infected and a non-infected individual, then, with probability p the non-infected individual becomes infected. Once infected, an individual remains infected throughout....
In a large population of people, some individuals are infected with a rare disease and some...
In a large population of people, some individuals are infected with a rare disease and some are not. Let POS represent the event that an individual is infected, and let NEG represent the event that an individual is not infected.   A blood test can be administered to try to find out whether an individual is infected. Let represent the event that the test result is positive [i.e., the test indicates that the individual is infected] and let represent the event...
In a large population of people, some individuals are infected with a rare disease and some...
In a large population of people, some individuals are infected with a rare disease and some are not. Let POS represent the event that an individual is infected, and let NEG represent the event that an individual is not infected.   A blood test can be administered to try to find out whether an individual is infected. Let represent the event that the test result is positive [i.e., the test indicates that the individual is infected] and let represent the event...
In a simple random sample of size 50, taken from a population, 23 of the individuals...
In a simple random sample of size 50, taken from a population, 23 of the individuals met a specified criteria. a) What is the margin of error for a 90% confidence interval for p, the population proportion? Round your response to at least 3 decimal places.     b) What is the margin of error for a 95% confidence interval for p? Round your response to at least 3 decimal places.    
A population of a certain size (say, 500 individuals) is more likely to go extinct if...
A population of a certain size (say, 500 individuals) is more likely to go extinct if it has suffered a bottleneck effect in the recent past than if it has maintained a similar population size for many generations. Why?
Suppose we find that, the average engine size in our sample of size n = 30...
Suppose we find that, the average engine size in our sample of size n = 30 is 192 cubic inches, with a standard deviation of 104 cubic inches. Use these statistics to compute a 90% confidence interval of population mean, that is, the average engine size for all.
A sample of n = 16 individuals is selected from a population with µ = 30....
A sample of n = 16 individuals is selected from a population with µ = 30. After a treatment is administered to the individuals, the sample mean is found to be M = 33. A. Assume that the sample variance is s2 = 16. Compute a single sample t-test to evaluate if the treatment produced a significant effect and calculate r2 to measure the size of the treatment effect. Use a two-tailed test with α = .05. B. Now, assume...
A sample of n = 16 individuals is selected from a population with µ = 30....
A sample of n = 16 individuals is selected from a population with µ = 30. After a treatment is administered to the individuals, the sample mean is found to be M = 33. A. Assume that the sample variance is s2 = 16. Compute a single sample t-test to evaluate if the treatment produced a significant effect and calculate r2 to measure the size of the treatment effect. Use a two-tailed test with α = .05. B. Now, assume...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT