Ordinary Differential Equations in Python

William McNamara • February 3, 2021

A simple python script to solve, fit and analyze ordinary differential equation (ODE) models

Used to explain planetary movement, disease spreading, reaction kinetics just to name some examples. Differential equations are one of the most useful mathematical technique to model natural phenomena. A key part shared among differential equation models are the parameters that manage to control the behavior of the model. Those parameters can be approximated by a regression technique, using measurements of the appropriated natural phenomena. If the structure of the model can be known (the differential equation has an analytic solution) the regression problem can be easier to solve. However, some differential equation models don’t have an analytic solution, which results in the use of numerical methods to obtain an approximated solution. The following describes a python script to solve, fit and analyze a simple ordinary differential equation (ODE) model.


Defining and solving the model

As radioactive decay was my introduction to ODE modeling, I’m going to use it as an example (as my first post, I think kind of fit the theme). Radioactive decay is given by the ODE:

Where C is the amount of radioactive material and k is a positive material dependent constant. To solve that ODE, we need: create a function that calculates the right side of the equation, an array that contains the integration times, and the odeint function from scipy. Using the initial condition C0=0, and k=2, and solve the equation we get a curve like this.

Parameter estimation

Once we know how to numerically solve an ODE, we use the curve_fit function (also from scipy) to estimate. First, to generate some data, we add a uniform random number to the obtained solution. That will give us a data set to work with. Then just call the curve_fit function to estimate k, plotting the results we get a curve as follows.


Ideally, we’ll be working with experimental data, however as we are working with simulated data, we can explore some other aspects of ODE modeling.



Data size and parameter estimation error

Data acquisition is usually constrained by several factors that can diminish the number of data points that we are able to obtain. We can evaluate the impact of data acquisition by changing the number of data points that we generate. Using a similar strategy as described above we can observe that the absolute error of the estimation is around the same between 1000, 500,100, and 50 data points.


Residuals analysis

We already observe that with around 50 data points the estimation error converges to a minimum value. To determinate if the model correctly describes the data, we can perform a residual analysis. A residual is defined as the difference between the data and the regression model, and as we are working with simulated data, we should be able to get the same random noise that we add.


By its shape residuals can also tell us if the model lacks some terms. Adding a linear or a periodic term to the simulated data, residuals correctly reconstruct the provided term. Allowing us to make changes to the model based on the residuals, or to adjust the data acquisition

Concluding remarks

As described above, we already know how to solve and fit a simple ODE model, and some analysis techniques that can be applied to analyze any regression model. The complete code of this tutorial can be found at my GitHub by clicking here. And in the next entree of this series, I will show you how to solve and fit an ODE system using python, and some other analysis tools.


By William McNamara March 19, 2023
Like many music enthusiasts, the most used app on my phone by far is Spotify. One of my favorite features is their daily or weekly curated playlists based on your listening tastes. Spotify users can get as many as six curated ‘Daily Mixes’ of 50 songs, as well as a ‘Discover Weekly’ of 30 songs updated every Monday. That’s more than 2k songs a Spotify user will be recommended in a given week. Assuming an everage of 3 minutes per song, even a dedicated user would find themselves spending more than 15 hours a day to listen to all of that content. That…wouldn’t be healthy. But Spotify’s recommendations are good! And I always feel like I’m losing something when these curated playlists expire before I can enjoy all or even most of the songs they contain. Or at least I did, until I found a way around it. In this articule, I’m going to take you through Spotify’s API and how you can solve this problem with some beginner to intermediate Python skills. Introduction to Spotify’s API Spotify has made several public APIs for developers to interact with their application. Some of the marketed use cases are exploring Spotify’s music catalogue, queuing songs, and creating playlists. You can credential yourself using this documentation guide . I’d walk you through it myself but I don’t work for Spotify and I want to get to the interesting stuff. In the remainder of this article I will be talking leveraging Spotipy , an open source library for python developers to access Spotify’s Web API. NOTE : At the time of writing, Spotipy’s active version was 2.22.1, later versions may not have all of the same functionality available.
By William McNamara December 8, 2022
Evolutionary strategies for feature engineering
By William McNamara September 22, 2022
Another experiment with NASA data
By William McNamara September 17, 2022
creating synthetic data for incomplete NASA dataset
By William McNamara August 1, 2022
Speech given at the University of Virginia on July 31st, 2022
By William McNamara March 6, 2022
Online gaming communities need to work harder to close the gap for their female users.
By William McNamara February 15, 2022
Hospitals hold the key to predicting how long a product will be on the shelf.
By William McNamara June 5, 2021
The game you're playing has probably never been played before.
By William McNamara March 23, 2021
Exploring and classifying more covid genome data
By William McNamara December 21, 2020
Sometimes it's better to build it yourself.
Show More
Share by: