[Math] Can we take negative step size in Euler’s method

numerical methodsordinary differential equations

Thus far we've taken the step size $h$ to be positive, and therefore we've developed solutions to the right of the initial point. Is Euler's method valid if we use a negative step size $h<0$ and develop a solution to the left?

I think it is not possible.How we can explain that it is possible or not?

Thanks.

Best Answer

Yes, the process of computation stays the same when $h<0$; you get a solution to the left of the initial point. An adjustment in error bound formulas may be needed, since they are written under the assumption $h>0$. So, replace $\text{error}\le Ch$ with $\text{error}\le C|h|$.

As hardmath pointed out in a comment, using $h<0$ in Euler's method is different from using Backward (aka implicit) Euler method.

Related Question