An amplifier is an active electronic circuit that uses a small input signal to control a larger power supply, producing a proportionally larger output signal without altering the original waveform's shape.

What an Amplifier Actually Changes (And What It Isn't)

When you insert an amplifier into a real circuit, it changes the power level (voltage, current, or both) of the signal. It does this by modulating energy drawn from an external DC power rail to recreate the input waveform at a higher amplitude. The amplifier itself does not create energy; it acts as a control mechanism.

To visualize this, think of the DC power supply as a high-pressure municipal water main, and the amplifier's active components (transistors or tubes) as a massive valve. Your weak input signal is just the small hand-wheel used to turn the valve. The valve doesn't create water; it simply shapes the massive flow from the main to match the precise turning of the wheel.

The Transformer Confusion: Beginners frequently confuse amplifiers with step-up transformers. A transformer can increase AC voltage, but it strictly conserves power (if voltage goes up, current drops proportionally). An amplifier, however, actively pulls power from a DC source to increase both voltage and current simultaneously, resulting in a net increase in signal power.

The Math on the Bench: A Worked Numeric Example

Let's look at a classic voltage amplifier configuration using a Texas Instruments NE5532 dual operational amplifier. We will wire it as a non-inverting amplifier to boost a low-level audio signal.

The gain formula for a non-inverting op-amp is:

Gain = 1 + (Rf / Rin)

Component Value Purpose
U1 NE5532 Dual low-noise op-amp
Rf (Feedback Resistor) 10 kΩ Sets gain alongside Rin
Rin (Ground Resistor) 1 kΩ Sets gain alongside Rf
VCC / VEE ±12V DC Split rail power supply

The Calculation:
With a 10 kΩ feedback resistor and a 1 kΩ ground resistor, the voltage gain is 1 + (10,000 / 1,000) = 11.

If we feed a 0.2V RMS sine wave from a function generator into the non-inverting input, the output will be 0.2V × 11 = 2.2V RMS. Because the NE5532 is powered by ±12V rails, the maximum peak voltage swing is roughly ±10V (accounting for internal transistor saturation drops). Our 2.2V RMS output (which peaks at about 3.1V) has plenty of headroom, meaning the waveform will remain a clean sine wave with minimal Total Harmonic Distortion (THD).

Where You Meet Amplifiers in Practice

Amplifiers are categorized by what they prioritize: voltage swing or current delivery. Here is where you will encounter them on the bench or in the field:

  • Instrumentation (Voltage Focus): When reading a strain gauge or thermocouple, the signal might be in the microvolt range. You use an instrumentation amplifier like the TI INA128 (roughly $8 per IC) to boost the differential voltage while rejecting common-mode noise, without needing to drive heavy loads.
  • Audio Power (Current Focus): Driving an 8-ohm speaker requires serious current. While an op-amp can provide voltage, it will overheat trying to source the required amps. Here, you use a dedicated power amp like the PAM8403 Class D chip (about $1.50 on a breakout board) which efficiently switches the DC rail to deliver watts of acoustic power.
  • RF and SDR (High-Frequency Focus): In software-defined radio (SDR) front-ends, you need a Low Noise Amplifier (LNA) like the Mini-Circuits MAR-6. These are designed to amplify microvolt RF signals with minimal added noise figure, operating well into the GHz range.

Real-World Scenario Walkthrough: The Clipping Disaster

Theory is clean; the bench is messy. Here is a classic scenario that ruins speakers and burns fingers when builders forget to respect DC rail limits.

  1. The Setup: You are building a portable guitar practice amp on a breadboard using an LM386-N1 audio amplifier IC. You power it with a standard 9V alkaline battery and connect the output to an 8-ohm, 0.5W speaker. You leave pins 1 and 8 open, which sets the internal gain to 20.
  2. The Numbers: Your electric guitar's humbucker pickup outputs a transient peak voltage of 0.5V peak when you strike a chord hard. Mathematically, 0.5V × 20 = 10V peak expected at the output.
  3. The Outcome: Instead of a loud, clean guitar tone, the speaker emits a harsh, gated, square-wave buzz. The LM386 chip becomes too hot to touch within 30 seconds, and the audio drops out entirely until the chip cools down.
  4. What Went Wrong: You ignored the power supply headroom. A 9V alkaline battery sags to about 8.2V under a heavy audio load. The LM386 has an internal saturation voltage drop of roughly 1.5V from the rails. Therefore, the absolute maximum peak output swing is (8.2V / 2) - 1.5V = 2.6V peak. Your circuit demanded 10V, but the amp physically maxed out at 2.6V. This caused hard clipping, turning your smooth sine waves into square waves. Square waves contain massive high-frequency harmonic energy and a DC offset component, which rapidly overheated the speaker's voice coil and triggered the LM386's internal thermal shutdown.
The Fix: To fix this, you either need to reduce the input signal (add a 10kΩ volume potentiometer at the input), lower the gain by placing a 10µF capacitor between pins 1 and 8 (dropping gain to 200? No, wait, bypassing pins 1 and 8 sets gain to 200. Leaving them open is 20. To lower gain below 20 requires a different topology or simply attenuating the input), or upgrade to a higher voltage power supply (like a 12V DC wall adapter) to provide the necessary headroom.

Frequently Asked Questions

What is the difference between a voltage amplifier and a power amplifier?
A voltage amplifier (like a standard op-amp circuit) focuses on increasing the voltage swing of a signal but can only supply a few milliamps of current. A power amplifier (like a Class AB or Class D audio amp) is designed to source or sink large amounts of current (amps, not milliamps) to drive low-impedance loads like motors or speakers, even if the voltage gain is relatively low.

Why do some op-amps require a dual (split) power supply?
Op-amps like the TL072 or NE5532 are often run on split rails (e.g., +12V, GND, -12V) so the output can swing both positive and negative relative to ground. This allows AC signals (like audio) to center around 0V without requiring DC blocking capacitors at the output. If you run them on a single supply, you must create an artificial 'virtual ground' at half the supply voltage to bias the input.

What is slew rate and why does it cause distortion?
Slew rate is the maximum speed at which an amplifier's output voltage can change, measured in Volts per microsecond (V/µs). If you feed a high-frequency, high-amplitude signal into an op-amp with a slow slew rate (like the LM741 at 0.5 V/µs), the output cannot change fast enough to track the input. The peaks of the sine wave flatten out into triangles, causing severe high-frequency distortion known as slew-induced distortion.

For deeper reading on operational amplifier theory and internal transistor topologies, refer to the comprehensive guides at All About Circuits and Electronics Tutorials. Always check the specific datasheet for your IC to verify saturation voltages, absolute maximum ratings, and required decoupling capacitor placements before applying power.