Error Propagation Calculator

Propagate measurement uncertainties through addition, multiplication, powers, logarithms, and exponentials with error budget analysis and step-by-step derivations.

Result
200.000000
Computed value
Absolute Uncertainty
± 2.061553
Propagated error
Relative Uncertainty
1.0308%
Percentage error
Result with Uncertainty
200.0000 ± 2.0616
Final reported value
Lower Bound
197.9384
Minimum plausible
Upper Bound
202.0616
Maximum plausible

Propagation Formula & Steps

δ(A±B) = √(δA² + δB²)
A = 150 ± 2
B = 50 ± 0.5
A + B = 200.0000
δ = √(2² + 0.5²) = √(4.000000 + 0.250000)
δ = 2.061553

Error Budget

SourceContributionShareBar
δA²4.00000094.1%
δB²0.2500005.9%

Common Error Propagation Formulas

OperationFormulaRule Type
A + B or A − BδQ = √(δA² + δB²)Addition in quadrature
A × B or A / BδQ/Q = √((δA/A)² + (δB/B)²)Relative errors in quadrature
AⁿδQ/Q = |n| × (δA/A)Multiply relative error by |n|
ln(A)δQ = δA / |A|Relative becomes absolute
eᴬδQ = |eᴬ| × δAAbsolute becomes relative
sin(A)δQ = |cos(A)| × δADerivative propagation
f(A,B,...)δQ = √(Σ(∂f/∂xᵢ × δxᵢ)²)General formula
Planning notes, formulas, and examples

About the Error Propagation Calculator

Error propagation determines how measurement uncertainties combine when you compute a derived quantity. If you measure mass with uncertainty ±2g and volume with uncertainty ±0.5mL, what's the uncertainty in the calculated density? This calculator answers that question for all common mathematical operations.

The calculator supports six operation types: addition/subtraction (errors add in quadrature), multiplication/division (relative errors add in quadrature), powers/roots, natural logarithm, exponential, and multi-variable mean with standard error. For each calculation, it shows the propagation formula, step-by-step derivation, and an error budget breaking down which measurement contributes most to the total uncertainty.

Understanding error propagation is essential for laboratory scientists, engineers, and any field where measurements are combined into derived results. The GUM (Guide to the Expression of Uncertainty in Measurement) standardizes these methods internationally, and this calculator implements its core formulas. Use the error budget to see which input dominates the final uncertainty and how much improvement you can expect from tightening a specific measurement.

When This Page Helps

Correct error propagation is required for every laboratory report, engineering tolerance analysis, and scientific publication. Doing it by hand is error-prone, especially for complex formulas. This calculator automates the process, shows the step-by-step derivation for learning, and identifies which measurement dominates the error budget.

The error budget feature is particularly valuable for experimental design: if you know which measurement contributes most to the final uncertainty, you can invest in improving that specific measurement rather than wasting effort on one that barely matters.

How to Use the Inputs

  1. Select the mathematical operation type from the dropdown.
  2. Use presets for common physics formulas: density, perimeter, kinetic energy, pH.
  3. Enter the measured values and their absolute uncertainties.
  4. For power operations, specify the exponent; for multi-variable mode, enter multiple measurements.
  5. Review the result with propagated uncertainty, relative error, and confidence bounds.
  6. Check the error budget to see which measurement contributes most to the total uncertainty.
  7. Use the reference table for formulas applicable to other operations.
Formula used
Addition/Subtraction: δ(A±B) = √(δA² + δB²) Multiplication/Division: δ(A×B)/(A×B) = √((δA/A)² + (δB/B)²) Power: δ(Aⁿ)/Aⁿ = |n| × δA/A Logarithm: δ(ln A) = δA/|A| Exponential: δ(eᴬ) = |eᴬ| × δA General: δf = √(Σ(∂f/∂xᵢ × δxᵢ)²)

Example Calculation

Result: 7500 ± 80.78 (1.077% relative uncertainty)

Multiplying A=150±2 by B=50±0.5: relative errors are 1.333% and 1.000%. Combined in quadrature: √(0.01333² + 0.01000²) = 1.077%. Applied to 7500 gives absolute uncertainty of 80.78. The error budget shows A contributes 64% and B contributes 36% of the total variance.

Tips & Best Practices

  • For addition/subtraction, the measurement with the larger ABSOLUTE uncertainty dominates.
  • For multiplication/division, the measurement with the larger RELATIVE uncertainty dominates.
  • Squaring a quantity doubles its relative error; cubing triples it.
  • Logarithms convert relative errors to absolute; exponentials do the reverse.
  • Always report results as "value ± uncertainty" in the same units.
  • Round the uncertainty to 1-2 significant figures, then round the value to match.

The GUM Framework

The "Guide to the Expression of Uncertainty in Measurement" (GUM), published by the Joint Committee for Guides in Metrology, is the international standard for evaluating and reporting measurement uncertainty. It classifies uncertainty evaluations into Type A (statistical analysis of repeated observations) and Type B (other methods: manufacturer specs, experience, calibration certificates). Both types feed into the same propagation formulas used by this calculator.

Common Laboratory Applications

In chemistry, error propagation determines uncertainty in molarity from mass and volume uncertainties. In physics, it combines timing and distance errors into velocity uncertainty. In engineering, it converts component tolerances into assembly tolerances. Medical diagnostics use it to establish confidence intervals for clinical measurements. Each field has domain-specific conventions, but the underlying mathematics is identical.

Monte Carlo vs. Analytical Propagation

For simple operations, the analytical formulas (used by this calculator) are exact for linear approximations. For highly nonlinear functions, Monte Carlo simulation — generating thousands of random samples from each input's distribution and computing the output distribution — can be more accurate. However, analytical propagation is sufficient for most practical applications and provides immediate insight through the error budget that Monte Carlo obscures.

Sources & Methodology

Last updated:

Frequently Asked Questions

  • Linear addition (δA + δB) gives the worst case if both errors are maximally correlated. Quadrature addition √(δA² + δB²) is appropriate when errors are independent and randomly distributed, which is the usual assumption for separate measurements. Quadrature gives a smaller, more realistic combined uncertainty.