I need to solve a system of stiff ODE's using the RK4 method. I know how to solve a single ODE but am struggling with the concept of how to do a system. The equations are as follows: $\frac{dy_1}{dt}=-0.013y_1-10000y_1y_3$
$\frac{dy_2}{dt}=-2500y_2y_3$
$\frac{dy_3}{dt}=-0.013y_1-1000y_1y_3-2500y_2y_3$
Where: $ y_1(0)=1$, $ y_2(0)=1$, $ y_3(0)=0$
I don't need help programming, just some general advice about how to even set this problem up would be great.