Python Forum
2nd order differential equations - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: Homework (https://python-forum.io/forum-9.html)
+--- Thread: 2nd order differential equations (/thread-10812.html)



2nd order differential equations - hoshos27 - Jun-07-2018

I want to solve 2nd order differential equations without using scipy.integrate.odeint
so I need to know how scipy.integrate.odeint works or any other way(mathematical to solve these equations


RE: 2nd order differential equations - Larz60+ - Jun-07-2018

There is a python example here: https://apmonitor.com/wiki/index.php/Apps/2ndOrderDifferential
click on 'Solution to 2nd-Order Differential Equation in Python' to get python code


RE: 2nd order differential equations - hoshos27 - Jun-07-2018

no man,he's using odeint not what I want