5 questions to test your understanding
You use Euler's method to solve an ODE over [0, 1] with step size h = 0.1 and find the global error at x = 1 is approximately 0.08. If you repeat the computation with h = 0.05, what global error do you expect?
Why is Euler's method called 'first-order' when its local truncation error at each step is O(h²)?
The global error of Euler's method is the same order as its local truncation error: both are O(h²).
Halving the step size in Euler's method approximately halves the global error at the end of the integration interval.
Explain why the global error of Euler's method is O(h) rather than O(h²), despite each individual step having local truncation error of O(h²). What happens to the local errors over the course of the integration?