Uncertainty is not a technical extra that you add at the end of a lab report. It is part of the measurement itself. This guide shows how to estimate uncertainty in physics lab work, how to propagate it through calculations, and how to report results in a way that is both honest and useful. You will find a repeatable method, common formulas, worked examples, and practical advice on percent error vs uncertainty, so you can reuse the page whenever your data, instrument resolution, or analysis method changes.
Overview
In a physics lab, every measured value comes with limits. A meter stick has markings of finite size. A stopwatch depends on reaction time. A sensor has calibration drift and electronic noise. When you calculate a new quantity from measured ones, those limits carry through to the final answer. That process is called error propagation or uncertainty propagation.
The main goal is simple: if your result is written as x = value ± uncertainty, the uncertainty should reflect how precisely you know that value. Done well, this makes your lab report more trustworthy and helps you compare your result with theory, classmates, or published values.
A few terms matter from the start:
- Error often means the difference between a measured value and an accepted value. In many labs, though, people use “error” informally to mean uncertainty. It is better to keep the two ideas separate.
- Uncertainty is the estimated range within which the true value is likely to lie, based on your measurement process.
- Random uncertainty comes from scatter in repeated measurements.
- Systematic uncertainty comes from consistent bias, such as a zero offset, miscalibration, or a flawed method.
- Percent error compares your result to an accepted value.
- Percent uncertainty compares the uncertainty to the measured value.
This distinction matters because a result can have low percent uncertainty but still show large percent error if there is a systematic issue. For example, a scale that is consistently offset by the same amount may give tightly grouped readings that are still wrong.
As a working habit, think in this order:
- Identify what you measured directly.
- Assign uncertainty to each direct measurement.
- Use the relevant propagation rule for the calculated quantity.
- Report the final value with matching precision.
- Interpret whether the result is reasonable.
If you also need help visualizing data with uncertainty, a useful companion is How to Plot Physics Data in Python: Error Bars, Fits, and Residuals.
How to estimate
Here is a practical method you can use in most introductory and intermediate physics labs.
1. Start with direct measurements
Write down each measured variable and assign an uncertainty to it. Common approaches include:
- Instrument resolution: For a ruler marked in millimeters, a common estimate is ±0.5 mm if you read between marks by eye, or ±1 mm if your lab uses the smallest division as the uncertainty.
- Repeated measurements: If you measure the same quantity several times, use the spread of the data. In many student labs, the sample standard deviation or the standard error of the mean is used, depending on course instructions.
- Manufacturer or calibration information: Digital sensors and multimeters may list precision directly.
Always follow your course convention if one is given. Different labs use slightly different uncertainty rules, and consistency is usually more important than choosing the most advanced method.
2. Decide whether the uncertainty is absolute or relative
An absolute uncertainty is written in units, such as 2.50 ± 0.02 V. A relative uncertainty is a fraction or percentage, such as 0.02/2.50 = 0.008 = 0.8%.
Relative uncertainty is especially useful for multiplication, division, and powers.
Percent uncertainty formula:
percent uncertainty = (absolute uncertainty / measured value) × 100%
3. Use the basic propagation rules
For many lab reports, the following rules cover most calculations.
Addition and subtraction
If
q = a + b or q = a - b,
then absolute uncertainties combine.
A common introductory rule is:
Δq = Δa + Δb
This gives a conservative estimate and is often accepted in first-year labs.
A more statistical rule for independent random uncertainties is:
Δq = √[(Δa)2 + (Δb)2]
If your class has not introduced quadrature, use the simpler rule unless told otherwise.
Multiplication and division
If
q = ab or q = a/b,
then relative uncertainties combine.
Conservative rule:
Δq/q = Δa/a + Δb/b
Quadrature rule for independent random uncertainties:
Δq/q = √[(Δa/a)2 + (Δb/b)2]
Powers
If
q = an,
then
Δq/q = |n|(Δa/a)
Example: if area A = πr2, then the relative uncertainty in area is twice the relative uncertainty in radius, assuming π is exact.
General formula using partial derivatives
For more advanced labs, if q = f(x, y, ...), then for independent uncertainties:
Δq = √[(∂q/∂x · Δx)2 + (∂q/∂y · Δy)2 + ...]
This is the standard propagation formula and becomes important in upper-level lab courses, data analysis, and computational work.
4. Match the uncertainty to your reporting precision
Do not report more digits than the uncertainty justifies. A common style is:
- Round the uncertainty to one significant figure, or two if the first digit is 1 or 2.
- Round the central value to the same decimal place as the uncertainty.
For example, if your result is 9.8472 with uncertainty 0.312, report it as 9.85 ± 0.31, or sometimes 9.8 ± 0.3 depending on your lab convention.
5. Separate uncertainty from percent error
Students often mix these up.
Percent error formula:
percent error = |measured value - accepted value| / accepted value × 100%
Percent uncertainty formula:
percent uncertainty = uncertainty / measured value × 100%
Percent error tells you how close you were to an accepted value. Percent uncertainty tells you how precise your own measurement was. They answer different questions.
Inputs and assumptions
Before doing any calculation, be clear about what assumptions you are making. Most confusion in uncertainty in physics lab work comes not from algebra, but from hidden choices.
Instrument inputs
For each measured variable, note:
- The instrument used
- The smallest division or display increment
- Whether the value was measured once or many times
- Any visible zero offset or calibration issue
- Whether the reading depends on human timing or alignment
Examples:
- Length with ruler: uncertainty often tied to scale divisions and parallax.
- Voltage with digital multimeter: uncertainty may come from display resolution and stated meter precision.
- Time with handheld stopwatch: reaction time may dominate over display resolution.
Assumption 1: independence
Many measurement uncertainty formulas assume uncertainties are independent. That means an error in one variable does not automatically push another variable in the same direction. If variables are correlated, the simple propagation formulas can understate or overstate the result.
In introductory labs, independence is usually assumed unless the setup clearly links measurements.
Assumption 2: small uncertainties
The standard propagation rules work best when uncertainties are small compared with the measured values. If uncertainties are very large, or if the function is highly nonlinear over the uncertainty range, a simple linear approximation may not be enough. In that case, numerical methods or simulation may be better.
Assumption 3: exact constants
Lab calculations often treat constants like π, 2, or defined unit conversions as exact. That is usually fine. But if you use a fitted slope from data or a calibration constant from another measurement, that constant may itself carry uncertainty and should be included.
Assumption 4: random vs systematic effects
Repeated trials help estimate random uncertainty, but they do not automatically reveal systematic bias. A shifted zero point, a stretched spring scale, or a camera angle error can affect every trial the same way. In a strong physics lab report uncertainty section, mention possible systematic effects separately, even if they are hard to quantify.
A simple lab checklist
Before finalizing numbers, ask:
- Did I use the correct uncertainty for each instrument?
- Did I confuse standard deviation with standard error?
- Am I combining absolute or relative uncertainties appropriately?
- Did I round only at the end?
- Did I distinguish uncertainty from percent error?
- Have I mentioned likely systematic sources?
This checklist alone prevents many common lab-report mistakes.
Worked examples
The best way to learn error propagation physics is to see it in context. These examples use common lab situations and keep the arithmetic readable.
Example 1: Speed from distance and time
You measure a cart moving 1.20 ± 0.01 m in 2.40 ± 0.05 s. Find the speed and its uncertainty.
Step 1: Calculate the speed
v = d/t = 1.20/2.40 = 0.50 m/s
Step 2: Use relative uncertainty for division
Relative uncertainty in distance = 0.01/1.20 = 0.0083 = 0.83%
Relative uncertainty in time = 0.05/2.40 = 0.0208 = 2.08%
Using the conservative rule:
Relative uncertainty in speed = 0.83% + 2.08% = 2.91%
Absolute uncertainty in speed = 0.0291 × 0.50 = 0.0146 m/s
Rounded result:
v = 0.50 ± 0.01 m/s or v = 0.50 ± 0.02 m/s depending on your rounding convention
Interpretation: The time measurement contributes more than the distance measurement, so improving timing would reduce the final uncertainty more effectively.
Example 2: Density from mass and volume
You measure mass as 45.2 ± 0.1 g and volume as 16.0 ± 0.5 cm3. Density is ρ = m/V.
Step 1: Calculate density
ρ = 45.2/16.0 = 2.825 g/cm3
Step 2: Relative uncertainties
Mass: 0.1/45.2 ≈ 0.22%
Volume: 0.5/16.0 = 3.125%
Relative uncertainty in density is dominated by volume.
Using the conservative rule:
0.22% + 3.125% = 3.345%
Absolute uncertainty:
0.03345 × 2.825 ≈ 0.0945 g/cm3
Rounded result:
ρ = 2.83 ± 0.09 g/cm3
Interpretation: Better volume measurement would improve the final density much more than better mass measurement.
Example 3: Area of a circular aperture
You measure radius r = 2.50 ± 0.05 cm. Area is A = πr2.
Step 1: Calculate area
A = π(2.50)2 ≈ 19.63 cm2
Step 2: Use power rule
Relative uncertainty in radius = 0.05/2.50 = 0.02 = 2%
Relative uncertainty in area = 2 × 2% = 4%
Absolute uncertainty in area = 0.04 × 19.63 ≈ 0.79 cm2
Rounded result:
A = 19.6 ± 0.8 cm2
Interpretation: Squaring a quantity amplifies its relative uncertainty. This is why precise radius measurements matter in optics and wave experiments.
Example 4: Difference between two positions
You record initial position x1 = 12.4 ± 0.1 cm and final position x2 = 18.1 ± 0.1 cm. Displacement is Δx = x2 - x1.
Step 1: Calculate displacement
Δx = 18.1 - 12.4 = 5.7 cm
Step 2: Add absolute uncertainties for subtraction
Conservative estimate:
uncertainty = 0.1 + 0.1 = 0.2 cm
Result:
Δx = 5.7 ± 0.2 cm
Interpretation: Even though you are subtracting values, uncertainties do not cancel just because the numbers do.
Example 5: Percent error vs uncertainty
Suppose a pendulum experiment gives g = 9.62 ± 0.08 m/s2, and your lab compares it with an accepted value of 9.81 m/s2.
Percent error
= |9.62 - 9.81| / 9.81 × 100%
≈ 1.94%
Percent uncertainty
= 0.08 / 9.62 × 100%
≈ 0.83%
This tells a useful story. Your result is fairly precise, but it is still offset from the accepted value by more than your quoted uncertainty. That can suggest a systematic effect in the experiment or in the model assumptions.
For concept reviews tied to common lab topics, see Simple Harmonic Motion Explained: Springs, Pendulums, and Energy, Geometric Optics Explained: Mirrors, Lenses, and Image Formation, and Electric Fields and Electric Potential Explained with Visual Intuition.
When to recalculate
This topic is worth revisiting whenever any input to your measurement changes. Uncertainty is not a one-time formula to memorize and forget. It should be recalculated whenever your measurement conditions, instrument limits, or analysis method change.
Recalculate your uncertainty when:
- You switch instruments. A motion sensor, ruler, and video analysis tool can give different uncertainty structures.
- You take more trials. Repeated data may reduce random uncertainty in the mean, though not systematic bias.
- You change the calculation model. For example, using a linear fit instead of two-point slope changes both the value and its uncertainty.
- You include new variables. A correction factor, calibration constant, or angle measurement adds another source of uncertainty.
- Your data range changes. Measurements made over longer times or distances often have different dominant uncertainties.
- You identify a systematic issue. Zero offsets, alignment errors, friction, heat loss, and timing delays can change how you discuss the result.
A practical action plan for your next lab
- Make a table of all measured quantities with units and uncertainties.
- Convert each uncertainty to a relative uncertainty if the calculation involves multiplication, division, or powers.
- Use the correct propagation rule for the equation you actually used.
- Round only after the final uncertainty is found.
- Report final values with sensible significant figures.
- Add one sentence on dominant uncertainty sources.
- Add one sentence on possible systematic effects.
If your course uses graph-based analysis, revisit uncertainty again when you fit a line, estimate a slope, or compare model residuals. For that workflow, How to Plot Physics Data in Python: Error Bars, Fits, and Residuals is a strong next step.
And if you are building broader study habits around labs and problem solving, these resources may help: Best Physics Textbooks by Subject and Level and Best Physics YouTube Channels, Simulations, and Free Learning Tools.
The key idea to keep: a measurement without uncertainty is incomplete. Once you start treating uncertainty as part of the result rather than decoration around it, your lab work becomes clearer, more defensible, and much easier to improve from one experiment to the next.