The Direct Answer: What Is an Op Amp Amplifier?

An operational amplifier (op amp) is a high-gain, DC-coupled integrated circuit designed to amplify the voltage difference between two inputs. In a bare, open-loop state, a typical op amp has a voltage gain of 100,000 to 1,000,000 V/V. Because this raw gain is too high to be useful on its own, we use external resistors to create negative feedback, forcing the op amp to operate at a precise, predictable closed-loop gain.

On a schematic, the op amp symbol is a triangle pointing to the right. The two inputs are marked with a minus sign (inverting input) and a plus sign (non-inverting input). The output emerges from the tip of the triangle. For a complete circuit, the IC also requires power connections: a positive supply (V+) and a negative supply or ground (V-).

If you are looking at a standard dual op amp in a DIP-8 (8-pin) package—like the ubiquitous LM358—the physical pinout is standardized across almost all manufacturers:

  • Pin 1: Output A
  • Pin 2: Inverting Input A (-)
  • Pin 3: Non-Inverting Input A (+)
  • Pin 4: V- (Ground or Negative Supply)
  • Pin 5: Non-Inverting Input B (+)
  • Pin 6: Inverting Input B (-)
  • Pin 7: Output B
  • Pin 8: V+ (Positive Supply)

Safe Default Part Numbers and Operating Regions

Choosing the right op amp depends on your supply voltage and signal type. If you just need a part to test a concept on the bench, stick to these proven defaults. For deeper theory on how these internal transistor stages work, the All About Circuits semiconductor textbook provides excellent schematic breakdowns.

Table 1: Safe Default Op Amp ICs for the Workbench
Part NumberSupply RangeKey CharacteristicBest Application
LM3583V to 32V (Single) or ±1.5V to ±16V (Dual)Extremely cheap, robust, input common-mode includes ground.General purpose, single-supply battery circuits, basic sensors.
TL072±5V to ±18V (Dual supply required)Low noise (18 nV/√Hz), high slew rate (13 V/µs).Audio preamps, active filters, instrumentation.
MCP60021.8V to 5.5V (Single)Rail-to-Rail Input/Output (RRIO), low power.Interfacing 3.3V/5V sensors with ESP32 or Arduino ADCs.
OPA2134±2.5V to ±18VFET inputs, ultra-low distortion (0.00008%).High-end audio DAC buffers, precision DC measurement.

An op amp operates in one of three distinct regions depending on the differential input voltage and the feedback network. Understanding these regions is critical for debugging clipping or saturation issues.

Table 2: Op Amp Operation Regions (Assuming ±15V Supply, LM358/TL072)
RegionConditionTypical Output VoltageOutput Current Limit
Linear (Active)Feedback is connected; Vdiff is near zero.Between -13.5V and +13.5V (approx. 1.5V from rails)±20mA to ±30mA continuous
Positive SaturationV(+) > V(-) by more than a few millivolts without feedback.Clamps at ≈ +13.5V (V+ minus headroom)Sourcing up to 40mA (short-circuit protected)
Negative SaturationV(-) > V(+) by more than a few millivolts without feedback.Clamps at ≈ -13.5V (or +0.2V for single-supply LM358)Sinking up to 40mA

How to Bias and Wire an Op Amp (Inverting Amplifier Circuit)

Let's build a practical inverting amplifier with a closed-loop gain of -10. We will use an MCP6002 because it operates perfectly on a single 5V supply from an Arduino or ESP32, and its rail-to-rail output maximizes our voltage swing. For a comprehensive guide on calculating feedback networks, refer to the Analog Devices Beginner's Guide to Op Amps.

Component List:

  • 1x MCP6002 (DIP-8)
  • 1x 10kΩ resistor (R_in)
  • 1x 100kΩ resistor (R_f)
  • 1x 100nF (0.1µF) ceramic decoupling capacitor
  • 5V DC Power Supply
Callout Tip: Decoupling is Mandatory
Always place a 100nF ceramic capacitor physically as close to the V+ and V- pins of the IC as possible. Op amps have high internal gain; without this capacitor, power supply noise will couple into the output, causing high-frequency oscillation that looks like random noise on your oscilloscope.

Wiring Steps:

  1. Power the IC: Connect 5V to Pin 8 (V+). Connect Ground to Pin 4 (V-). Place the 100nF capacitor directly across Pin 8 and Pin 4.
  2. Set the Non-Inverting Bias: Connect Pin 3 (Non-Inverting Input +) directly to Ground. Because we are using a single supply, this biases the reference point at 0V. (Note: If using a dual ±15V supply, you would still tie this to ground, which is the midpoint between the rails).
  3. Wire the Input: Connect your AC or DC input signal to Pin 2 (Inverting Input -) through the 10kΩ resistor (R_in).
  4. Close the Feedback Loop: Connect the 100kΩ resistor (R_f) between Pin 2 (Inverting Input -) and Pin 1 (Output). This negative feedback forces the op amp to adjust its output to keep Pin 2 at the same voltage as Pin 3 (virtual ground).
  5. Verify the Math: The gain formula for an inverting amp is Gain = - (R_f / R_in). Here, - (100k / 10k) = -10. If you input 0.2V DC, the output at Pin 1 will be -2.0V. Wait! Because we are on a single 5V supply, the output cannot go below 0V. To fix this for AC signals on a single supply, you must bias Pin 3 to Vcc/2 (2.5V) using a voltage divider, allowing the output to swing above and below 2.5V.
Crucial Rule for Unused Gates:
The MCP6002 is a dual op amp. If you only use 'A' (Pins 1, 2, 3), you must properly terminate 'B' (Pins 5, 6, 7). Never leave unused inputs floating. Floating inputs pick up EMI, causing the unused internal amplifier to rail-to-rail oscillate, which heats up the chip and injects noise into your active circuit. Tie the unused output (Pin 7) to its inverting input (Pin 6), and tie the non-inverting input (Pin 5) to Ground.

Failure Modes: How to Test an Op Amp with a Multimeter

Op amps rarely fail from old age; they fail from abuse. The most common killers are overvoltage on the inputs (destroying internal ESD protection diodes), shorting the output directly to ground or the opposite rail (melting internal bond wires), and exceeding the common-mode input range (which on older parts like the TL072 causes phase inversion, where the output violently flips to the wrong rail).

If you suspect a dead op amp on a PCB or breadboard, grab your digital multimeter (DMM) and follow this diagnostic path:

  1. De-energize and Discharge: Remove all power from the circuit. If large filter capacitors are present, discharge them with a bleeder resistor. Testing powered circuits with a DMM in resistance/diode mode will blow the meter's internal fuse.
  2. Test the Protection Diodes (Diode Mode): Set your DMM to Diode Test mode. Place the red probe on the Non-Inverting Input (Pin 3) and the black probe on V- (Pin 4). You should read a forward voltage drop of roughly 0.5V to 0.7V (the internal ESD diode). Reverse the probes; it should read 'OL' (Open Loop). Repeat this for the Inverting Input (Pin 2). If you read 0.00V (short) or 'OL' in both directions, the input stage is destroyed.
  3. Check the Output Stage (Resistance Mode): Set the DMM to measure resistance (Ohms). Measure between the Output pin (Pin 1) and V+ (Pin 8), then between Output and V- (Pin 4). You should see a high resistance (typically >10kΩ). If the output is shorted internally to a supply rail due to thermal failure, you will read < 50Ω. Replace the IC.
  4. The 'Virtual Short' Bench Test: If the DMM tests pass but the circuit still misbehaves, power it up. Configure it as a voltage follower (tie Output directly to Inverting Input). Apply 1.00V DC to the Non-Inverting Input. Measure the Output with the DMM. A healthy op amp will output exactly 1.00V (± a few millivolts of offset). If it outputs 0V or rails to 5V, the internal differential pair is dead.

Frequently Asked Questions

What is the difference between an op amp and a comparator?

While they share similar symbols and pinouts, their internal architectures are entirely different. An op amp is designed to operate in the linear region using negative feedback, and it includes internal frequency compensation to prevent oscillation. A comparator (like the LM393) is designed to operate open-loop, rapidly switching its output between the supply rails when one input crosses the other. Comparators have much faster slew rates and open-collector outputs, but if you try to use a comparator in a negative feedback linear circuit, it will usually oscillate violently. Conversely, using an op amp as a comparator results in slow switching times and potential phase-reversal glitches. Use the right tool for the job.

Why does my op amp output clip before reaching the supply voltage?

This is caused by the output stage's headroom limitation. Standard op amps like the LM358 or TL072 use bipolar junction transistors (BJTs) in their output push-pull stage. These transistors require a certain voltage drop (Vce_sat) to operate, meaning the output can typically only swing to within 1.5V of the positive rail and 0.5V of the negative rail. If you power an LM358 with 5V and ground, your maximum output swing is roughly 0.2V to 3.5V. If your application requires the output to reach exactly 0V and 5V, you must select a Rail-to-Rail Output (RRO) op amp like the MCP6002, which uses specialized CMOS output stages to swing within millivolts of the supply rails.

Can I use an op amp amplifier to drive a speaker or motor directly?

No. Standard op amps are voltage amplifiers, not power amplifiers. As shown in the operation regions table above, most general-purpose op amps max out at 20mA to 30mA of output current. An 8-ohm speaker driven by 1V RMS requires 125mA, which will instantly trigger the op amp's internal short-circuit protection or melt the silicon die. To drive low-impedance loads like speakers, motors, or high-power LEDs, use the op amp to buffer and amplify the voltage signal, then feed that signal into the base/gate of a power transistor (like a TIP31 BJT or IRF520 MOSFET) or a dedicated audio amplifier IC (like the LM386) that handles the heavy current lifting. For more on selecting specialized amplifier ICs, check the Microchip Amplifier Selection Guide.