A non-inverting operational amplifier is a closed-loop circuit where the input signal is applied to the high-impedance positive (non-inverting) terminal, producing an output that scales in magnitude but perfectly preserves the original signal's phase. Unlike an inverting amplifier that flips the signal polarity, this configuration maintains the phase relationship while providing massive input impedance—often exceeding 1 MΩ for bipolar inputs and reaching 10^12 Ω for CMOS FET inputs. Think of it like a transparent acoustic amplifier: it makes the sound louder without changing the timing of the sound wave hitting your ear.

What this configuration fundamentally changes in a real circuit is the loading effect on your source. Because the input draws virtually zero current, you can connect a high-impedance sensor directly to the op-amp without the sensor's voltage sagging. According to Texas Instruments Precision Labs, understanding input impedance and bias current is the most critical step in preventing DC offset errors in non-inverting topologies.

Gain Calculations and Standard Resistor Pairs

The closed-loop voltage gain (Av) of a non-inverting amplifier is determined entirely by the feedback network connected between the output, the inverting (-) input, and ground. The formula is straightforward:

Av = 1 + (Rf / Ri)

Where Rf is the feedback resistor (output to inverting input) and Ri is the ground resistor (inverting input to ground). Notice that the gain can never be less than 1. If you need attenuation, you must place a voltage divider before the non-inverting input.

When designing on the bench, you rarely have the exact theoretical resistor values in your bin. Below is a data-dense reference table using standard E24 series (5% tolerance) resistors to achieve common target gains. This table also includes the minimum Gain Bandwidth Product (GBWP) required if you intend to pass a full 20 kHz audio signal without high-frequency roll-off.

Target Gain (Av) Feedback Resistor (Rf) Ground Resistor (Ri) Actual Achieved Gain Gain Error Min GBWP for 20kHz BW
2.0x 10 kΩ 10 kΩ 2.00 0.0% 40 kHz
5.0x 20 kΩ 5.1 kΩ 4.92 -1.6% 100 kHz
10.0x 91 kΩ 10 kΩ 10.10 +1.0% 200 kHz
11.0x 100 kΩ 10 kΩ 11.00 0.0% 220 kHz
100.0x 100 kΩ 1.0 kΩ 101.00 +1.0% 2.02 MHz
Bench Tip: Resistor Thermal Noise
When designing low-noise preamps, keep your feedback resistors as low as practically possible. A 100 kΩ resistor generates roughly 40 nV/√Hz of thermal noise at room temperature. Dropping Rf to 10 kΩ and Ri to 1 kΩ maintains the same gain but cuts the resistor thermal noise by a factor of 10, provided your op-amp can drive the lower impedance load.

Worked Numeric Example: Audio Preamp Design

Let’s design a microphone preamp stage using the classic TL072 JFET-input dual op-amp, powered by a standard ±15V dual supply. We have an electret microphone capsule delivering a 0.25V RMS AC signal, and we want to amplify it to roughly 1.4V RMS to drive the next stage.

  1. Select Resistors: From our E24 table, a target gain of ~5x uses Rf = 20 kΩ and Ri = 5.1 kΩ.
  2. Calculate Exact Gain: Av = 1 + (20,000 / 5,100) = 1 + 3.921 = 4.921.
  3. Calculate Output Voltage: Vout = Vin × Av = 0.25V × 4.921 = 1.23V RMS.
  4. Check Supply Rails: The peak voltage of a 1.23V RMS sine wave is 1.23 × √2 = 1.74V. Since our TL072 is powered by ±15V (and can swing to within ~1.5V of the rails), a 1.74V peak output is well within the safe linear operating range. No clipping will occur.
  5. Verify Bandwidth: The TL072 has a typical GBWP of 3 MHz. The closed-loop bandwidth will be 3,000,000 / 4.921 = 609 kHz. This is vastly wider than the 20 kHz audio band, ensuring flat frequency response.

Where You Meet Non-Inverting Amplifiers in Practice

You will rarely see a non-inverting op-amp used just to 'make a voltage bigger' in digital logic circuits; its true domain is analog signal conditioning where source impedance and phase matter. As detailed in Electronics Tutorials, the topology is the backbone of precision analog front-ends.

1. Piezoelectric and Sensor Buffering

Piezo vibration sensors and glass pH electrodes have incredibly high output impedances (often >10 MΩ). If you connect them to an inverting amplifier (which has an input impedance equal to its input resistor, say 10 kΩ), the sensor's voltage will instantly collapse to near zero. By using a non-inverting configuration with a CMOS op-amp like the LMC6482 (input bias current of just 0.02 pA), the circuit draws virtually zero current, allowing the full sensor voltage to appear at the op-amp's input.

2. Active Sallen-Key Filters

If you are building an active low-pass or high-pass filter to remove 60 Hz mains hum from a DC sensor reading, the Sallen-Key topology is the industry standard. This filter architecture inherently relies on a non-inverting op-amp configuration (often set to unity gain) to provide a low-impedance output while the RC network shapes the frequency response.

3. Single-Supply AC Amplification

When running an op-amp from a single 5V or 3.3V supply (like an ESP32's VDD), a 0V-referenced AC signal will immediately clip on the negative half-cycle. In practice, you must create a 'virtual ground' at VCC/2 using a buffered voltage divider, and AC-couple your input signal through a series capacitor. The non-inverting input is biased to this VCC/2 mid-rail, allowing the AC signal to swing symmetrically above and below the bias point without hitting the 0V or 5V rails.

Common Confusions: Non-Inverting vs. Inverting vs. Unity Gain

What do people commonly confuse the non-inverting configuration with?

Beginners frequently confuse the non-inverting amplifier with the inverting amplifier and the voltage follower (unity gain buffer). While they all use the same physical IC, their wiring and electrical behaviors are vastly different.

Feature Non-Inverting Amp Inverting Amp Voltage Follower (Buffer)
Input Pin Used Positive (+) Negative (-) Positive (+)
Signal Phase Preserved (0° shift) Inverted (180° shift) Preserved (0° shift)
Input Impedance Extremely High (Op-amp Zin) Low (Equal to Rin) Extremely High (Op-amp Zin)
Minimum Gain 1.0 (Unity) 0 (Attenuation possible) Exactly 1.0 (Fixed)
Primary Use Case Sensor buffering, preamps Summing mixers, DACs Impedance matching, isolation

Is a voltage follower just a non-inverting amp with no resistors?

Yes. A voltage follower is simply a non-inverting amplifier where Rf = 0 Ω (a direct wire from output to inverting input) and Ri = ∞ Ω (the inverting input has no path to ground). The math holds up: Av = 1 + (0 / ∞) = 1. It provides zero voltage gain, but it provides massive current gain and impedance transformation, which is why Analog Devices frequently recommends them for driving heavy capacitive loads like long coaxial cables or ADC sample-and-hold circuits.

Why does my non-inverting amp output a DC voltage when the input is grounded?

This is caused by input bias current flowing through your feedback resistors, creating an unwanted DC offset voltage. If your non-inverting input is grounded through a 100 kΩ resistor (perhaps for AC coupling bias), and your inverting input sees a parallel combination of 10 kΩ and 100 kΩ, the mismatched impedances will cause the op-amp's internal bias currents to generate different voltage drops. The fix is to ensure the DC resistance seen by the non-inverting pin exactly matches the Thevenin equivalent resistance seen by the inverting pin.