- #1
Jwill
- 39
- 0
I have a large project involving Runge Kutta numerical solutions of differential equations. I understand the Runge Kutta method and I've done it before, but my problem involves taking the differential equation
y''=sin(3y(t)), t>=0
and reexpressing this IVP into coupled first order equations. I have seen examples where people have done something similar like set
z'=sin(3y(t))
y'=z
and there is a guy in my class that swears that this is right, but frankly that doesn't make sense to me in this case. If someone could help me understand how to do this correctly, I feel like I have a decent understanding of the numerical solution method. I have been asked to use the first order Runge Kutta method, but I have never used this method with coupled equations that looks anything like this...
y''=sin(3y(t)), t>=0
and reexpressing this IVP into coupled first order equations. I have seen examples where people have done something similar like set
z'=sin(3y(t))
y'=z
and there is a guy in my class that swears that this is right, but frankly that doesn't make sense to me in this case. If someone could help me understand how to do this correctly, I feel like I have a decent understanding of the numerical solution method. I have been asked to use the first order Runge Kutta method, but I have never used this method with coupled equations that looks anything like this...