Skip to main content

Error estimate

An error estimate is a number or formula that tells you how far an approximate solution is from the exact solution. In Linear Algebra and Differential Equations, it is used to judge the accuracy of numerical methods for IVPs and systems.

Last updated July 2026

What is error estimate?

An error estimate is the amount, or bound, for how wrong an approximate answer is in Linear Algebra and Differential Equations. When you solve a differential equation numerically, you usually do not get the exact solution, so you need a way to measure the gap between your approximation and the true value.

That gap can be written as an absolute error, which is just the difference between the exact and approximate values, or as a relative error, which compares that difference to the size of the exact value. In a differential equations class, error estimates show up when you are checking whether Euler’s method, a multistep method, or another algorithm is giving a trustworthy result.

The most common place you meet this term is with multistep methods. These methods use earlier points to predict the next point, so an error made at one step can affect later steps too. A local truncation error estimate tells you how much error one step adds if everything before that step were perfect. A global error estimate looks at the accumulated effect over many steps.

This is where stability comes in. If a method is stable, small errors stay under control instead of growing wildly from step to step. If a method is unstable, even a tiny rounding error or truncation error can get amplified and ruin the approximation.

A simple way to think about it is this: the numerical method gives you an answer, and the error estimate tells you how much faith to place in that answer. If the estimate is too large, you may need a smaller step size or a higher-order method. If it is small, your approximation is probably close enough for the problem you are solving.

For example, if two step sizes give noticeably different answers for the same initial value problem, the larger difference is a warning that the error is not under control yet. That is a practical signal to adjust the method before moving on.

Why error estimate matters in Linear Algebra and Differential Equations

Error estimates are the bridge between a numerical method and a trustworthy solution. In differential equations, you often cannot solve an equation exactly, so the whole point is not just to get an answer, but to know how good that answer is.

This matters most when you compare methods. A low-order method may be fast, but its error estimate may be too large for the accuracy you need. A higher-order method usually gives a smaller error for the same step size, which is why order of accuracy matters so much in this unit.

Error estimates also tell you whether a method is behaving well over time. In multistep methods, a small local truncation error can still lead to a poor overall result if the method is unstable and the error keeps growing. That is why stability analysis and error analysis are taught together.

You will also use error estimates when deciding whether to refine a step size, compare a numerical answer to a known exact solution, or explain why two approximations disagree. In other words, this term is not just about being "close enough". It is about measuring closeness in a way that matches the method, the problem, and the level of precision you need.

Keep studying Linear Algebra and Differential Equations Unit 12

How error estimate connects across the course

Truncation Error

Truncation error is the error created when a formula replaces an exact process with a finite numerical step. Error estimate often measures or bounds that truncation error, especially in one step of a method. If you know the truncation error, you can predict how much the method is drifting away from the exact solution before those mistakes start piling up.

Local Truncation Error

Local truncation error focuses on the error made in a single step, assuming the earlier values were exact. That makes it a cleaner way to study the quality of a multistep method. Error estimate is the broader idea, while local truncation error gives you a step-by-step view of where the error enters.

Stability

Stability asks whether errors stay small or grow as you keep iterating a numerical method. An error estimate tells you how large the error is at a point in time, while stability explains what happens to that error later. A method can have a small initial error estimate and still fail if the method is unstable.

Order of Accuracy

Order of accuracy tells you how quickly the error shrinks when you make the step size smaller. Higher-order methods usually produce smaller error estimates for the same step size. This is why order of accuracy is one of the first things you check when comparing numerical methods in differential equations.

Is error estimate on the Linear Algebra and Differential Equations exam?

A problem set question may give you two numerical approximations and ask you to estimate the error, decide which method is more accurate, or explain how changing the step size affects the result. You might also be asked to interpret a local truncation error formula or say why a multistep method becomes unreliable after several iterations. In those problems, the move is simple: identify whether the question wants absolute error, relative error, or a bound on accumulated error, then connect it to stability or order of accuracy. If a method is unstable, mention that even a small initial error can grow from step to step. If the method is higher order, say that the error should shrink faster as the step size gets smaller.

Error estimate vs truncation error

Truncation error is the error introduced by using an approximate numerical formula instead of an exact one. Error estimate is the broader measurement or bound for how far off the approximation is. In practice, truncation error is often one source of the total error estimate.

Key things to remember about error estimate

  • An error estimate tells you how far an approximate numerical answer is from the exact solution.

  • In differential equations, error estimates are used to judge whether a step-by-step method is accurate enough to trust.

  • Local truncation error measures the error from one step, while global error tracks the accumulated effect over many steps.

  • Stability matters because even a small error estimate can grow if the method amplifies errors from step to step.

  • Smaller step sizes and higher-order methods usually give smaller error estimates, which improves accuracy.

Frequently asked questions about error estimate

What is error estimate in Linear Algebra and Differential Equations?

It is a measure of how close a numerical approximation is to the exact solution of a problem. In this course, you usually see it when solving differential equations with methods like Euler’s method or multistep methods. The estimate tells you whether your approximation is reliable or whether the error is getting too large.

Is error estimate the same as truncation error?

Not exactly. Truncation error is the error caused by cutting off an exact process and replacing it with a finite numerical step. An error estimate is the measured or predicted size of that error, or of the total error in the approximation. Truncation error is often one part of the estimate.

How do you reduce error estimate in a numerical method?

You can usually reduce it by using a smaller step size or by switching to a higher-order method. In multistep methods, better stability also helps keep the error from growing. If the estimate drops when you refine the mesh or shorten the step, that is a sign the method is behaving better.

Why does error estimate matter for multistep methods?

Multistep methods reuse previous values, so an early error can affect later calculations. The estimate helps you see whether those errors are staying under control or spreading through the computation. That is why error analysis and stability analysis are paired in this topic.