An inst amp (instrumentation amplifier) is a precision closed-loop differential amplifier designed to extract microvolt-level signals from high-noise environments by offering extremely high input impedance and massive common-mode rejection. If you are trying to read a load cell, a thermocouple, or a high-side current shunt, a standard operational amplifier will usually fail you; the inst amp is the dedicated tool that changes your circuit from a noise-ridden mess into a stable, high-resolution measurement system.
The Core Job: What an Inst Amp Changes in Your Circuit
The most common mistake hobbyists and junior engineers make is confusing an integrated inst amp with a standard differential amplifier circuit (a single op-amp surrounded by four external resistors). While both subtract one voltage from another, their real-world performance is vastly different.
A standard single-op-amp differential circuit relies entirely on the matching of those four external resistors to reject common-mode noise. Even with 1% tolerance resistors, your Common-Mode Rejection Ratio (CMRR) will top out around 60dB. Furthermore, its input impedance is relatively low and unbalanced, which will load down high-impedance sensors and introduce offset errors.
An integrated inst amp solves this by using a 3-op-amp topology (or a specialized current-feedback equivalent). It places non-inverting buffer stages on the inputs, providing gigaohm-level input impedance so it doesn't load your sensor. Inside the silicon, laser-trimmed resistors are matched to 0.01% or better, pushing the CMRR to 100dB–140dB. Think of CMRR like active noise-canceling headphones: the amplifier "hears" the loud 60Hz mains hum (common-mode noise) equally on both inputs and electronically subtracts it, leaving only the quiet microvolt signal (differential) you actually want to record.
Spec-Sheet Showdown: Popular Inst Amp ICs
Choosing the right silicon depends on your supply voltage, required bandwidth, and budget. Below is a data-dense comparison of industry-standard inst amps you will find in stock at major distributors in 2026.
| Part Number | Manufacturer | Supply Range | Min CMRR (G=10) | Gain Bandwidth | Input Bias Current | Approx. Unit Price |
|---|---|---|---|---|---|---|
| INA128 | Texas Instruments | ±2.25V to ±18V | 120 dB | 1 MHz | ±5 nA | $6.50 |
| AD620 | Analog Devices | ±2.3V to ±18V | 100 dB | 1 MHz | ±1 nA | $8.50 |
| INA333 | Texas Instruments | 1.8V to 5.5V (Single) | 110 dB | 150 kHz | ±20 pA | $4.20 |
| INA828 | Texas Instruments | ±2.25V to ±36V | 140 dB | 2 MHz | ±3 nA | $5.80 |
Worked Numeric Example: Strain Gauge Signal Conditioning
Let's wire up a 10kg load cell to a 3.3V ADC on an ESP32. The load cell is a Wheatstone bridge with a sensitivity of 2mV/V. We will use a 5V excitation voltage and the classic TI INA128 inst amp.
1. Calculate the Sensor Output
At full scale (10kg), the differential output voltage ($V_{diff}$) is:
$V_{diff} = \text{Sensitivity} \times \text{Excitation} = 2\text{mV/V} \times 5\text{V} = 10\text{mV}$.
2. Determine Required Gain
Our ESP32 ADC reads 0V to 3.3V. We want the 10mV full-scale signal to map to roughly 3.0V to leave headroom for noise and over-range.
$\text{Gain (G)} = 3.0\text{V} / 0.010\text{V} = 300$.
3. Calculate the Gain Resistor ($R_G$)
The INA128 gain equation is $G = 1 + (49.4\text{k}\Omega / R_G)$.
$300 = 1 + (49400 / R_G)$
$299 = 49400 / R_G$
$R_G = 165.21\Omega$
4. Select the Physical Resistor
We select a standard 1% tolerance metal film resistor of 165Ω. This yields an actual gain of 300.2, which is well within our ADC headroom.
Where You Meet This in Practice
You will rarely see an inst amp used for general audio or high-speed RF. They are purpose-built for DC and low-frequency precision measurements. Common bench and jobsite encounters include:
- High-Side Current Sensing: Measuring the tiny voltage drop (e.g., 50mV) across a shunt resistor sitting on top of a 24V or 48V battery bus. The inst amp rejects the 48V common-mode and passes only the 50mV differential to your microcontroller.
- Biopotential Sensors (ECG/EMG): Extracting millivolt heart or muscle signals from skin electrodes while rejecting the massive 50/60Hz electromagnetic interference picked up by the human body acting as an antenna.
- RTD Temperature Sensors: Reading 3-wire or 4-wire Platinum RTDs where lead wire resistance must be canceled out via differential measurement.
- Industrial 4-20mA Loops: Dropping a 4-20mA signal across a precision 100Ω shunt resistor (yielding 0.4V to 2.0V) and using an inst amp to isolate and amplify it for an ADC.
Wiring Gotchas and Common Mistakes
Even with a perfect IC, poor PCB layout or wiring mistakes will destroy your CMRR. Avoid these two classic errors:
1. Floating Inputs and Bias Currents
An inst amp has incredibly high input impedance, but it is not infinite. The internal transistors still require a tiny DC path to flow their input bias current ($I_B$). If you AC-couple your sensor through capacitors, or use a transformer, the inputs will "float" until they hit the supply rails, and the output will peg to the maximum voltage. The fix: Always provide a DC return path to ground (or mid-supply) using high-value resistors (e.g., 1MΩ) on both the non-inverting and inverting inputs.
2. Abusing the Reference (REF) Pin
The REF pin allows you to level-shift the output (e.g., shifting a bipolar ±10mV signal to a unipolar 0-3.3V range for an ADC). The output equation is $V_{out} = (G \times V_{diff}) + V_{ref}$.
Many beginners wire a simple resistive voltage divider to the REF pin to generate a 1.65V offset. Do not do this. The REF pin drives the internal summing node of the output stage. If the impedance driving the REF pin is not near zero ohms, you unbalance the internal resistor bridge, and your 120dB CMRR will plummet to 60dB. The fix: Always buffer your REF voltage with a dedicated, low-impedance op-amp voltage follower before feeding it to the inst amp's REF pin.
For a deeper dive into the internal topology and layout practices, the Analog Devices Designer's Guide to Instrumentation Amplifiers remains the definitive reference text for bridging the gap between datasheet theory and physical PCB reality.






