- #1
- 6
- 0
How can I use finite difference to discretize a system of fourth order differential equations?
for example:
y(4)+5y(3)-2y''+3y'-y=0
for example:
y(4)+5y(3)-2y''+3y'-y=0
Thanks for the reply Chet. Actually, I had thought that given an example of one the system of equations might suffice for a demonstration. In any case, a better representation of the system goes thus:This doesn't look like a system of 4th order ODEs. It looks like a single 4th order ODE.
Chet
If you're trying to solve this numerically, one way it is often done is to convert to a set of first order ODEs. In this particular case, there would be 12 first order ODEs to integrate.Thanks for the reply Chet. Actually, I had thought that given an example of one the system of equations might suffice for a demonstration. In any case, a better representation of the system goes thus:
y1(4)=a1y1''+a2y2''+a3y3''+a4y1+a5y2+a6y3+a7
y2(4)=b1y1''+b2y2''+b3y3''+b4y1+b5y2+b6y3+b7
y3(4)=c1y1''+c2y2''+c3y3''+c4y1+c5y2+c6y3+c7
where a, b and c terms are constant coefficients