Questions: Euler's Method for ODEs (Error Analysis)

5 questions to test your understanding

Score: 0 / 5
Question 1 Multiple Choice

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?

AApproximately 0.04 — halving the step size halves the global error for a first-order method
BApproximately 0.002 — halving the step size reduces the global error by a factor of 4 for a first-order method
CApproximately 0.08 — the global error is determined by the ODE, not the step size
DApproximately 0.016 — halving h reduces global error by a factor of 5 due to error cancellation
Question 2 Multiple Choice

Why is Euler's method called 'first-order' when its local truncation error at each step is O(h²)?

ABecause the method was first published in the first volume of Euler's collected works
BBecause the global error is O(h¹) — one power lower than the local error — due to accumulation of O(1/h) local errors over the integration interval
CBecause Euler's method uses only first-order Taylor expansion terms to compute f(x, y)
DBecause the method is only accurate to first decimal place regardless of step size
Question 3 True / False

The global error of Euler's method is the same order as its local truncation error: both are O(h²).

TTrue
FFalse
Question 4 True / False

Halving the step size in Euler's method approximately halves the global error at the end of the integration interval.

TTrue
FFalse
Question 5 Short Answer

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?

Think about your answer, then reveal below.