I have a non-linear differential system :
- (1)
f''(t)=r(f(t))
and - (2)
g''(t)=s(f(t),g(t))
where s(f(t),g(t))
may be s(f(t),g(t))=f(t)*g(t)
or s(f(t),g(t)) = cos(f(t))*sin(g(t))
... and we know g and s. I want to solve this system with Python but I don't know how. The first equation can be easily solved with scipy.integrate.odeint
but I don't know how to solve the whole system.