How a Multimeter Measures Resistance: A Practical Guide
Explore how a multimeter measures resistance with a practical, step-by-step guide. Learn Ohm's law, setup tips, and common measurement pitfalls. Tips included.
A multimeter measures resistance by applying a small, known test current through the component under test, sensing the resulting voltage drop across it, and using Ohm's law (R = V/I) to calculate the resistance. The reading assumes the circuit is de-energized and the component is isolated from parallel paths that could skew results. This approach lets technicians and hobbyists quantify resistance quickly, safely, and with repeatable methodology.
Understanding the measurement principle
Resistance is defined by Ohm's law: R = V/I. In resistance mode, a multimeter injects a tiny, known test current into the path under test and measures the resulting voltage drop across the component. The meter then computes the resistance by dividing the measured voltage by the known current. Several factors can influence the reading, including the meter's range setting, lead resistance, and burden voltage (the voltage drop caused by the meter's internal series resistor and ADC input). The following examples illustrate the core calculation in software terms and show how a real device maps the physics into a user-friendly display.
def measure_resistance(voltage, current):
# Avoid division by zero
if current == 0:
raise ValueError('Current source cannot be zero')
return voltage / current
# Example usage
V = 0.75 # simulated volts across the test path
I = 0.010 # simulated test current in amperes
R = measure_resistance(V, I)
print(f'Resistance = {R:.3f} ohms')function measureResistance(voltage, current) {
if (current === 0) throw new Error('Current source cannot be zero');
return voltage / current;
}
console.log('R =', measureResistance(0.75, 0.01).toFixed(3), 'ohms');The equations here are simplified to illustrate the relation R = V/I. Real meters implement fixed test currents, precise ADC measurements, and automatic range selection to improve accuracy across different resistance ranges.
Steps
Estimated time: 15-25 minutes
- 1
Power down and prep the meter
Before starting, turn off the device under test and set the meter to resistance (Ω). Inspect probes for damage and ensure the test leads are fully inserted into the correct ports. This minimizes measurement errors from contact resistance and stray paths.
Tip: Verify you are on the correct measurement mode before touching the probes. - 2
Discharge the circuit
Discharge any capacitors in the circuit and ensure there is no stored energy that could affect readings. Capacitors can hold charge and introduce misleading low or high resistance readings.
Tip: If unsure, brief shorting with a known resistor to confirm behavior is safer than direct shorting. - 3
Connect probes across the test path
Place the red and black probes on opposite ends of the component or path you want to measure. Avoid touching metal parts with your fingers to prevent stray resistance from your body.
Tip: Keep leads short and steady for a stable reading. - 4
Read and interpret the value
Watch the display and note the resistance. If it remains unstable, re-check connections, range, and whether any parallel paths exist in-circuit.
Tip: Compare with expected values or a known reference for sanity check. - 5
Record results and double-check
Document the reading and, if possible, perform a second measurement after removing one end of the component to confirm isolation. This helps distinguish in-circuit effects from the component's true value.
Tip: Use a known-good reference resistor to validate the meter's accuracy.
Prerequisites
Required
- Basic safety knowledge for electrical testingRequired
- Multimeter with resistance (Ω) modeRequired
- Test probes with sharp tips and proper insulationRequired
- Understanding of Ohm's law (R = V/I)Required
Optional
- Optional: known reference resistors for calibrationOptional
Keyboard Shortcuts
| Action | Shortcut |
|---|---|
| Switch to resistance modeUse the dial or the dedicated button, model dependent | Mode → Ω |
| Zero/short testShort the probes to cancel offset and verify the meter reads near 0 Ω for near-zero paths | REL or zero button |
| Test across a componentEnsure power is off; hold probes steady for a stable reading | Place probes on component leads |
| Read the valueRecord the displayed value and note the range used | Observe display |
Your Questions Answered
Can I measure resistance in-circuit and expect a perfect value?
In-circuit measurements can be affected by parallel paths and other components. For the most accurate value, isolate one end of the component or remove it from the circuit before testing.
You can test in-circuit, but expect potential error from other paths; isolate for accuracy.
What does an open circuit reading indicate?
An open-circuit reading usually means there is no complete path for current, suggesting a broken component or very high resistance. Recheck connections and verify the component is not damaged.
Open means no path detected; check connections and component health.
Why might readings differ from resistor color code expectations?
Color codes indicate nominal value with tolerance. Real measurements can differ due to tolerance, temperature, and measurement method. Isolate components and measure with the proper range for accuracy.
Codes give rough values; meters show the actual value under test conditions.
How do I calibrate a multimeter's resistance mode?
Calibration depends on the model. Use known reference resistors and follow the manufacturer’s steps for a two-point or auto-calibration if supported.
Check your meter’s manual for calibration steps.
What is burden voltage and how does it affect low-ohm measurements?
Burden voltage is the voltage drop across the meter's internal series resistor. It can skew low-ohm readings. Use the correct range and test leads, especially for sub-ohm work.
Burden voltage can skew small-resistance results; mind the range.
Key Takeaways
- R = V/I is the core formula for resistance measurements
- Discharge capacitors and isolate components for accurate readings
- Burden voltage and lead resistance impact accuracy, especially on small values
- Auto-ranging meters simplify use, but understanding ranges improves reliability
- Always validate readings with a known reference when possible
