Intuition

The order of consistency tells us how quickly the error of a numerical method decreases as we make the step size smaller.

Examples from ODE Methods:

  1. Euler Method (Order 1)
  • Halving error reduces by factor 2
  • Simple but not very accurate
  1. Euler-Heun Method (Order 2)
  • Halving error reduces by factor 4
  • Much more accurate than Euler
  1. Classical Runge-Kutta (Order 4)
  • Halving error reduces by factor 16
  • Very high accuracy

Definition to be corrected

center