Need help solving a second order non-linear ODE in python
问题 I don't really know where to start with this problem, as I haven't had much experience with this but it is required to solve this part of the project using a computer. I have a 2nd order ODE which is: m = 1220 k = 35600 g = 17.5 a = 450000 and b is between 1000 and 10000 with increments of 500. x(0)= 0 x'(0)= 5 m*x''(t) + b*x'(t) + k*x(t)+a*(x(t))^3 = -m*g I need to find the smallest b such that the solution is never positive. I know what the graph should look like, but I just don't know how