Numerical method to solve a fourth order ODE

rsluijs
Messages
1
Reaction score
0
I've got the following ODE:

K*w''''+c*w = q

I can solve this with DSolve (from Matlab), but how can I solve this in a numerical way?

Thanks!
 
Physics news on Phys.org
Welcome to PF!

rsluijs said:
I've got the following ODE:

K*w''''+c*w = q

I can solve this with DSolve (from Matlab), but how can I solve this in a numerical way?

Thanks!

Hi rsluijs! Welcome to PF! :smile:

To solve K*w''''+c*w = 0, you can replace ' by the operator D, giving the "characteristic polynomial" (KD4 + C)w = 0,

and you factor that to (D + a)(D + b)(D + c)(D + d)w = 0,

and then solve each individual (D + a)w = 0 etc, and add linear combinations of those solutions. :wink:
 
Thread 'Direction Fields and Isoclines'
I sketched the isoclines for $$ m=-1,0,1,2 $$. Since both $$ \frac{dy}{dx} $$ and $$ D_{y} \frac{dy}{dx} $$ are continuous on the square region R defined by $$ -4\leq x \leq 4, -4 \leq y \leq 4 $$ the existence and uniqueness theorem guarantees that if we pick a point in the interior that lies on an isocline there will be a unique differentiable function (solution) passing through that point. I understand that a solution exists but I unsure how to actually sketch it. For example, consider a...

Similar threads

Back
Top