Questions: Richardson Extrapolation

5 questions to test your understanding

Score: 0 / 5
Question 1 Multiple Choice

A numerical method produces estimates A(h) = I + c₁h + c₂h² + ··· You compute A(h) and A(h/2). What does the Richardson extrapolation formula 2A(h/2) − A(h) produce, and why?

AAn average of the two estimates, which reduces random numerical noise
BAn estimate with error starting at O(h²) instead of O(h), because the O(h) terms cancel exactly
CThe exact value I, because combining two estimates eliminates all error
DAn estimate with error starting at O(h/2), because we used the smaller step size
Question 2 Multiple Choice

For Richardson extrapolation to dramatically improve accuracy, what must be known about the method being used?

AThe exact value of the true answer I, so that errors can be measured and corrected
BThe structure of the error expansion — specifically, that it takes the form c₁h^p + c₂h^q + ··· with known exponents
CThe values of the error coefficients c₁, c₂, … so the cancellation formula can be derived
DThat the step size h is already below machine epsilon, ensuring floating-point arithmetic is exact
Question 3 True / False

Richardson extrapolation improves accuracy by using results already computed at two step sizes, requiring no additional function evaluations beyond those two estimates.

TTrue
FFalse
Question 4 True / False

Richardson extrapolation works by averaging two numerical estimates, giving each estimate equal weight of 1/2.

TTrue
FFalse
Question 5 Short Answer

Why does Richardson extrapolation fail or behave unpredictably when applied to a method whose error expansion contains a logarithmic term (e.g., error ~ c₁h ln h + c₂h²) rather than a pure power series in h?

Think about your answer, then reveal below.