There are 1,000 students in a college dormitory, and some
students have been diagnosed with meningitis, a highly contagious
disease. A model for how many students will have the disease after
n days is
m[n + 1] = m[n] + 0.00090*m[n]*(1000 - m[n]);
m[n + 1] = m[n] + 0.00090 m[n] (1000 - m[n])
Two students returned from spring break with meningitis.
What would be the model of the number of infected students(m(n)) versus the number of days that have passed?
Get Answers For Free
Most questions answered within 1 hours.