4/14/2019
Topics Covered: Euler's method for approximation Curve fitting Relating Model Parameters to Data Defining the "contact" coefficients Tools/Resources used: MATLAB Duke University's SIR guide Keeling and Rohani's Modeling Infectious Diseases In Humans and Animal This past week, I was able to finally apply some of the resources and tools I have acquired to make progress on intuitively understanding the SIR model for infectious diseases. After understanding how the model is broken down mathematically, I needed to understand how the system of ODEs (ordinary differential equations) interacted with each other. There are many ways to solve systems of ODEs, i.e. laplace, eigenvalues, matrix manipulation, etc. For the purpose of approximating the solutions to these differential equations at given times, we will be using Euler's method. In fact, Euler's method is simple and direct. It involves relating the slope to the step size. Unfortunately, it can b...