Like a lot of people around the globe, I'm a little worried about the Coronavirus spreading and I thought rather than reading statistics from the news and media, I would take matters into my own hands and work things out (approximately).
I am trying to express an exponential virus growth in a population. So every day, the number of people infected doubles and once people have recovered they cannot re catch it. However, when I try and formulate the problem, I feel that my functions start to get recursive and that I am doing something wrong.
This is what I have tried so far and I am feeling confused by it.
p is the population of the country and k is the duration of viral infection in days.
$$ p = 6.6\times10^{7}\, $$ $$ k = 14 $$ $$ Y(d) = (1-(Y(d-1)/p)) 2^{d} - Y(d-k)\, $$
I thought I would see something in this kind of shape:
Please help.
