Explicit Euler Method
The explicit Euler method (also called forward Euler) is the simplest first-order numerical method for solving ODEs of the form .
It uses the forward difference approximation for the derivative, so all quantities on the right-hand side are known at step - making it fully explicit.
Order
The explicit Euler method is first-order: Global truncation error , Local truncation error .
Stability
For the test ODE (with ), the method gives
The amplification factor is . The method is unstable when , i.e. when
So the explicit Euler method is conditionally stable - there is a maximum allowable step size. Compare with the Implicit Euler method, which is unconditionally stable.
See Stability of a method for the general framework.
Implicit Euler method | Finite differences | Runge-Kutta methods | Local truncation error | Global truncation error | Stability of a method | Order of a method