Stability of an ODE and Euler's method

Master J
Messages
219
Reaction score
0
I have been thinking about numerical methods for ODEs, and the whole notion of stability confuses me.

Take Euler's method for solving an ODE:

U_n+1 = U_n + h.A.U_n

where U_n = U_n( t ), A is the Jacobian and h is step size.

Rearrange:

U_n+1 = ( 1 + hA ).U_n

This method is only stable if (1 + hA) < 1 ( using the eigenvalues of A). But what does this mean!?? Every value of my function that I am numerically getting is less than the previous value. This seems rather useless, I don't get it? It appears to me that this method can only be used on functions that are strictly decreasing for all increasing t ?
 
Physics news on Phys.org
Master J said:
This seems rather useless

Yup. Euler's (forward difference) method IS "rather useless". In fact compared with almost any other numerical integration method, its not so much "rather useless" as "completely useless".

But it's a nice example of something that "obviosuly" look like a good idea, but turns out not to be.
 
Well, I'm still confused.

Say I have an ODE who's solution family y(t) is unstable. That is, for increasing t, the solution curves diverge from each other. In this case, J = df(y, t)/dy < 0.

So does this mean that ANY numerical method I use to solve this ODE will be unstable? With reference to http://courses.engr.illinois.edu/cs450/sp2010/odestability.pdf? there is a condition for all the methods, even the trapezoid rule etc. to be stable. And in each of these it implies that numerical values for each succesive value of y(t) are less than the previous, ie. y(t+h) < y(t).

So, in essence, what I gather here is that unless an ODE has the property that the magnitude of each value of the function y is LESS than the previous value, then it CANNOT be solved with a numerical method accurately?
Or, in another way, errors will always grow in solving an unstable ODE?

All this seems rather strange to me then. We cannot solve an ODE accurately unless the function is monotonically decreasing? What rather tiny area of applicability then!
 
Last edited:
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

Replies
6
Views
2K
Replies
5
Views
2K
Replies
4
Views
1K
Replies
4
Views
2K
Replies
5
Views
5K
Replies
11
Views
3K
Back
Top