Explicit Methods for ODEs

Computational Math
Differential Equations
Euler's Method
Runge-Kutta Methods
Initial Value Problems
Author

Apurva Nakade

Published

July 13, 2026

Given \(y' = f(t, y)\), \(y(0) = y_0\), an explicit method computes each \(y_{i+1} \approx y(t_{i+1})\) directly from already-known values. Compare Euler’s method (one slope evaluation per step), Improved Euler (averages the slope at both endpoints), and RK4 (averages four slope estimates) — more evaluations per step buys higher accuracy.