Implicit Methods for ODEs

Computational Math
Differential Equations
Euler's Method
Implicit Methods
Initial Value Problems
Author

Apurva Nakade

Published

July 13, 2026

Implicit Euler (backward Euler) uses the slope at the end of the step, \(y_{i+1} = y_i + h\, f(t_{i+1}, y_{i+1})\), which requires solving for \(y_{i+1}\) at each step (this page uses a few steps of Newton’s method) — but buys stability that explicit Euler lacks. The default example, \(y' = -5y\), is chosen to make this visible: try dragging \(n\) down to see explicit Euler destabilize while implicit Euler stays smooth.