I was given three functions:
dx/dt = a(y-x)
dy/dt = x(b-z)-y
dz/dt = xy-cz
All the variables are set by the user. I can do it if its just the basic one-equation problem. But now, i need to make a program using the improved Euler's method. Can the method solve three functions at the same time? Or can I use the Runge-Kutta method?