How to solve four first order coupled non-linear differential equations using python or SageMath? Please suggest some references if available. Thank you very much for answering.
Asked
Active
Viewed 74 times
-1
-
Welcome to SO. Please take the [tour](https://stackoverflow.com/tour) and take the time to read [How to Ask](https://stackoverflow.com/help/how-to-ask) and the other links found on that page. – Humayun Ahmad Rajib Jun 08 '20 at 08:12
1 Answers
0
You can use Python and the scipy module's odeint, import as follows:
from scipy.integrate import odeint
A fun example is that of "Modeling a zombie apocalypse, see: https://scipy-cookbook.readthedocs.io/items/Zombie_Apocalypse_ODEINT.html

Gustav Rasmussen
- 3,720
- 4
- 23
- 53