September 2014
Intermediate to advanced
512 pages
12h 39m
English
Here, we will conduct a brief analytical study of a famous nonlinear differential system: the Lotka-Volterra equations, also known as predator-prey equations. These equations are first-order differential equations that describe the evolution of two interacting populations (for example, sharks and sardines), where the predators eat the prey. This example illustrates how to obtain exact expressions and results about fixed points and their stability with SymPy.
For this recipe, knowing the basics of linear and nonlinear systems of differential equations is recommended.
In [1]: from sympy import * init_printing() ...
Read now
Unlock full access