Can Euler Forward or 4th Order Runge-Kutta Methods Approximate Systems of ODEs?

worryingchem
Messages
41
Reaction score
1
My question is about whether it's possible to use the Euler Forward or 4th order Runge-Kutta Methods to approximate the following system ( where the differential of other equations are on the right hand side) :
$$
\begin{cases}
\frac{dy_1}{dt} = f_1(y_1,y_2,y'_2, ... , y_n, y'_n, t) \\
\frac{dy_2}{dt} = f_2(y_1,y'_1,y_2, ... , y_n, y'_n, t) \\
...\\
\frac{dy_n}{dt} = f_n(y_1,y'_1, ... , y_{n-1}, y'_{n-1}, y_n, t) \\
\end{cases}
$$
I know you can do it for the normal form: ## \frac{d^{(n)}y}{dt^{(n)}} = f(y, y', y'', ... , y^{(n)}, t) ## and it's also possible to analytically solve differential equations of that form using linear algebra, but I'm not sure when it's not in the normal form.
 
Physics news on Phys.org
Yes, you can use those schemes because you know and use all the quantities at the right hand side at timestep 't'. However, it will be difficult to determine the stability criterion for the timestep to use a priori.
 
Thank you, I forgot about the initial values used to approximate this.
 
There is the following linear Volterra equation of the second kind $$ y(x)+\int_{0}^{x} K(x-s) y(s)\,{\rm d}s = 1 $$ with kernel $$ K(x-s) = 1 - 4 \sum_{n=1}^{\infty} \dfrac{1}{\lambda_n^2} e^{-\beta \lambda_n^2 (x-s)} $$ where $y(0)=1$, $\beta>0$ and $\lambda_n$ is the $n$-th positive root of the equation $J_0(x)=0$ (here $n$ is a natural number that numbers these positive roots in the order of increasing their values), $J_0(x)$ is the Bessel function of the first kind of zero order. I...
Are there any good visualization tutorials, written or video, that show graphically how separation of variables works? I particularly have the time-independent Schrodinger Equation in mind. There are hundreds of demonstrations out there which essentially distill to copies of one another. However I am trying to visualize in my mind how this process looks graphically - for example plotting t on one axis and x on the other for f(x,t). I have seen other good visual representations of...
Back
Top