Solving a system of ODEs using Runge-Kutta

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
1 reply · 7K views
P_Sampras
Messages
1
Reaction score
0
Using the 4th-order Runge-Kutta method, I have been able to successfully compute the solutions to a coupled pair of two first order differential equations using the following formula:

T5JedKmm.png

MBFNciXm.png


When solving systems of ODEs with more than two equations I am unsure if I am properly expanding on the above ideas.

For example I am trying to find a system of three first order equations:

da/dx = 2bc + 3a

db/dx = 4ac +11b

dc/dx = 5ab + c

Using and expanding on the equations above would I be correct in the following:

K0 = 2bc + 3a
L0 = 4ac +11b
M0 = 5ab + c

k1 = 2*(b+(L0)/2)*(c+(M0)/2) + 3*(a+(K0)/2)
L1 = 4*(a+(K0)/2)*(c+(M0)/2) + 11*(b+(L0)/2)
M1 = 5*(a+(K0)/2)*(b+(L0)/2) + (c+(M0)/2)

And so on for K2,L2,M2 etc?

Hopefully that's fairly readable.

Is this the correct approach to take or am I making a glaring error somewhere?
 
Physics news on Phys.org
That looks rignt.

The basic idea is you first calculate all the "_0" quantities, then use them to calculate all the "_1"'s, etc.

Trying to do the calculations in a different order won't work, except in special cases and if you get lucky.