An inverting amplifier op amp outputs a scaled, 180-degree phase-shifted replica of the input signal, governed by the gain formula Av = -Rf / Rin. Unlike non-inverting configurations, the signal is applied to the inverting (-) input, while the non-inverting (+) input is tied to a reference voltage (usually ground or a virtual ground). This topology creates a 'virtual ground' at the inverting input, keeping the input node at a stable reference potential and making it highly predictable for signal scaling, summing, and current-to-voltage conversion.

While the math is simple, the physical reality of silicon limits what you can actually build. This guide skips the abstract physics and focuses on how to select the right part, bias it correctly for single or dual supplies, and troubleshoot it when the oscilloscope trace doesn't match your math.

Anatomy, Pinout, and Safe Default Part Numbers

The standard symbol for an op-amp is a triangle. The inverting input is marked with a minus (-), the non-inverting with a plus (+), and the output emerges from the tip. In the ubiquitous 8-pin DIP (Dual In-line Package) format, the pinout is standardized across almost all general-purpose op-amps:

  • Pin 1 & 5: Offset Null (used to trim DC errors; often left unconnected in hobby circuits)
  • Pin 2: Inverting Input (-)
  • Pin 3: Non-Inverting Input (+)
  • Pin 4: V- (Negative supply rail or GND in single-supply)
  • Pin 6: Output
  • Pin 7: V+ (Positive supply rail)
  • Pin 8: NC (No Connect)

Choosing the right silicon is where most beginners fail. Do not just grab an LM741; it is an obsolete 1960s design with terrible noise and output swing limitations. Here are the safe defaults for modern bench work, complete with the ratings you actually need to check on the manufacturer datasheet:

Part NumberTopologyMax Supply (Total)GBW (Gain-Bandwidth)Slew RateBest ApplicationApprox. Cost
LM358Bipolar (Dual)32V (or 3-32V single)1 MHz0.3 V/µsSingle-supply DC sensors, slow control loops$0.15
TL072JFET (Dual)36V (Dual supply req.)3 MHz13 V/µsAudio preamps, active filters, AC signals$0.60
OPA2134FET (Dual)36V (Dual supply req.)8 MHz20 V/µsHigh-fidelity audio, precision instrumentation$4.50
MCP6002CMOS (Dual)6V (Rail-to-Rail I/O)1 MHz0.6 V/µs3.3V/5V microcontroller interfacing$0.40

Operation Regions and Biasing for the Job

An op-amp doesn't just amplify infinitely; it is bound by its power rails. Understanding the three operation regions is critical for predicting when your signal will distort.

Operation RegionConditionOutput BehaviorTypical Voltage Limits (on +/- 12V rails)
Linear (Active)Vout is within rail limitsVout = -Vin × (Rf / Rin)Approx. -10.5V to +10.5V (depends on headroom)
Positive SaturationCalculated Vout > V+ railClips at positive rail limitClips hard at ~ +10.5V
Negative SaturationCalculated Vout < V- railClips at negative rail limitClips hard at ~ -10.5V

How to Bias: Dual vs. Single Supply

Dual Supply (+/- V): The easiest way to bias an inverting amplifier for AC signals. Tie Pin 3 (Non-inverting) directly to 0V (system ground). The input signal swings positive and negative around 0V, and the output swings symmetrically around 0V. Use this for audio and AC-coupled sensor signals.

Single Supply (+V and GND): If you only have a 5V or 9V battery, you cannot swing below 0V. You must create a 'virtual ground' at VCC/2. You do this by placing two equal resistors (e.g., 47kΩ) in a voltage divider between VCC and GND, and tying Pin 3 to their midpoint. Crucial step: You must AC-couple your input signal with a series capacitor so the DC bias of your source doesn't fight the op-amp's virtual ground.

Bench Tip: Always place a 10µF to 100µF bypass capacitor from your virtual ground node to actual ground. Without it, any signal current returning through the ground path will modulate your bias voltage, causing severe low-frequency 'motorboating' oscillation.

Building the Circuit: A Complete Audio Preamp Example

Let's build a practical inverting amplifier to boost a low-level microphone signal (approx. 10mV peak) to a line-level signal (approx. 1V peak). We need a gain of -100. We will use a TL072 on a +/- 12V dual supply.

Component Values:

  • U1: TL072 (Pins 4 to -12V, Pin 7 to +12V)
  • Rin (Input Resistor): 10kΩ (Sets input impedance to 10kΩ)
  • Rf (Feedback Resistor): 1MΩ (Gain = -1,000,000 / 10,000 = -100)
  • Cin (Input Coupling Cap): 1µF film (Blocks DC, forms high-pass filter with Rin at ~15Hz)
  • Cf (Feedback Cap): 15pF ceramic (Placed in parallel with Rf to roll off high-frequency noise above 10kHz)
  1. Establish Power: Connect your bench power supply to provide +12V and -12V. Connect the 0V center tap to your breadboard's common ground rail. Place 100nF ceramic decoupling capacitors directly across Pins 4 and 7 of the TL072 to ground.
  2. Set the Reference: Tie Pin 3 (Non-inverting input) directly to the common ground rail.
  3. Wire the Input: Connect the microphone signal through the 1µF Cin capacitor to Pin 2 (Inverting input).
  4. Close the Loop: Connect the 1MΩ Rf resistor from Pin 2 to Pin 6 (Output). Solder the 15pF Cf directly across the legs of the 1MΩ resistor to minimize stray capacitance.
  5. Verify: Power on the circuit. With no audio input, measure the DC voltage at Pin 6 with your multimeter. It should read within 5mV of 0.00V.

Real-World Scenario: When the Math Meets the Bench

Theory is clean; the bench is messy. Here is a real-world failure mode that traps engineers transitioning from simulation software to physical hardware.

The Setup: A hobbyist is designing a motor controller feedback loop. They need to invert and amplify a 1Vpp 20kHz square wave from a current shunt by a factor of -10. They use the ubiquitous LM358 because they have a drawer full of them. They power it with a +/- 12V dual supply. The math says the output should be a 10Vpp square wave (+/- 5V).

The Numbers: The LM358 datasheet specifies a typical slew rate of 0.3 V/µs. This means the output voltage can only change by 0.3 volts every microsecond. To swing the full 10V (from -5V to +5V), the op-amp requires 10 / 0.3 = 33.3 µs.

The Outcome: A 20kHz square wave has a total period of 50 µs, meaning each half-cycle (the time the signal stays high or low) is only 25 µs. The input flips polarity before the LM358 has finished transitioning. On the oscilloscope, instead of a crisp 10Vpp square wave, the hobbyist sees a 7.5Vpp triangle wave. The motor controller reads the wrong current thresholds and faults out.

What Went Wrong & The Fix: The builder designed for DC gain but ignored the AC slew rate limit. The fix is to swap the LM358 for a TL072 (slew rate 13 V/µs) or an NE5532 (slew rate 9 V/µs). With a TL072, a 10V swing takes only 0.76 µs, easily settling well before the 25 µs half-cycle ends, yielding a perfect square wave. As detailed in the All About Circuits semiconductor guide, bandwidth and slew rate are just as critical as DC gain in dynamic circuits.

Failure Modes and Multimeter Testing

Op-amps rarely fail silently. When they do fail, they usually short internally or latch up. Here is how to test an inverting amplifier circuit using a standard digital multimeter (DMM).

1. The Power-Off Diode Test (Checking for Silicon Shorts)

If your circuit is drawing massive current or the op-amp is hot to the touch, power down and discharge all capacitors. Set your DMM to Diode Test mode.

  • Place the red probe on Pin 2 (Inverting) and black on Pin 4 (V-). Note the reading.
  • Reverse the probes. You should see an 'OL' (Open Loop) in one direction and a diode drop (0.6V - 0.8V for bipolar, higher for FET) in the other.
  • Repeat between Pin 3 (Non-inverting) and Pin 4.
  • The Verdict: If you read 0.00V (dead short) or identical low resistance in both directions across the input pins relative to the rails, the input differential pair is blown. Desolder and replace the chip.

2. The Power-On Virtual Ground Check

If the circuit is intact but the output is pinned to one of the rails, the feedback loop is likely broken, or the bias is wrong.

  1. Power the circuit on. Set your DMM to DC Volts.
  2. Measure Pin 3 (Non-inverting). It should read exactly 0.00V (dual supply) or exactly VCC/2 (single supply). If it's floating, your bias resistor is broken.
  3. Measure Pin 2 (Inverting). Because of negative feedback, the op-amp will drive its output to force Pin 2 to match Pin 3. This is the 'virtual ground'. If Pin 3 is at 2.5V, Pin 2 must be at 2.5V (± a few millivolts).
  4. The Verdict: If Pin 3 is at 2.5V but Pin 2 is at 0V or 5V, and the output is slammed against a rail, your feedback resistor (Rf) is open, or the op-amp output stage is dead. Check Rf with an ohmmeter (power off). If Rf is good, the op-amp is dead.
Safety Caveat: When testing circuits powered by mains-derived linear power supplies (e.g., a transformer yielding +/- 15V), ensure your DMM is rated CAT II or higher. Never probe the primary side of the power supply while testing the low-voltage op-amp feedback loop.

Mastering the inverting amplifier means looking past the ideal gain equation. By selecting the right part for your slew-rate and supply constraints, properly managing your virtual ground, and knowing how to isolate a blown silicon junction with a DMM, you can debug analog circuits with the same confidence you apply to digital code.