An amplifier is an active electronic circuit that uses a small input signal to control a larger power source, producing an output signal that is a scaled-up replica of the input. In a real circuit or installation, it changes the signal’s amplitude—increasing voltage, current, or total power—while preserving the original waveform's frequency and phase characteristics. People commonly confuse an amplifier with a step-up transformer; while a transformer can increase AC voltage, it is a passive device that cannot increase total power, whereas an amplifier actively draws from a DC power supply to inject real energy into the signal.
The Core Math: Voltage Gain and Power Output
To move beyond a basic amplifier def and actually design circuits, you need to calculate gain. Voltage gain ($A_v$) is the ratio of output voltage to input voltage. In operational amplifiers (op-amps), this is set by external feedback resistors.
Let’s look at a worked numeric example using a classic NE5532 dual low-noise op-amp (costing roughly $0.80 per unit in 2026) wired in a non-inverting configuration. This is a standard topology for audio preamps and sensor buffering.
- Feedback Resistor ($R_f$): 10 kΩ
- Ground Resistor ($R_i$): 1 kΩ
- Input Signal: 0.5V peak sine wave from a DAC
- Power Supply: ±12V dual rail
The Math:
The formula for non-inverting gain is $A_v = 1 + (R_f / R_i)$.
$A_v = 1 + (10,000 / 1,000) = 11$.
The output voltage will be $0.5V \times 11 = 5.5V \text{ peak}$.
Headroom Check: The NE5532 typically has about 2V of headroom loss from the supply rails. On a ±12V supply, the maximum clean output swing is roughly ±10V. Since our 5.5V peak output is well below the 10V ceiling, the signal will remain perfectly clean without clipping.
If you were to increase the input to 1.0V peak, the math dictates an 11V output. However, because the op-amp cannot output voltage higher than its supply rails minus headroom, the waveform would "flat-top" at ±10V. This is known as clipping, and it introduces harsh harmonic distortion into the circuit.
Amplifier Classes at a Glance
Not all amplifiers operate the same way. The "class" of an amplifier defines how its active devices (transistors or MOSFETs) conduct current relative to the input waveform. This directly dictates efficiency, heat dissipation, and fidelity. Below is a data-dense breakdown of the primary classes you will encounter on the bench.
| Class | Conduction Angle | Max Theoretical Efficiency | Crossover Distortion | Common 2026 IC / Module Example |
|---|---|---|---|---|
| Class A | 360° (Always on) | 25% (resistive load) | None | Discrete JLH1969 designs |
| Class B | 180° (Half wave) | 78.5% | Severe (at zero-crossing) | Rarely used standalone |
| Class AB | >180° to <360° | ~50% to 78.5% | Minimal (biased past cutoff) | TDA2030, LM3886, NE5532 |
| Class D | PWM Switching | >90% | High-frequency switching noise | TPA3116D2, MAX98357A |
For high-fidelity audio where heat is manageable, Class AB remains the benchmark. However, for portable Bluetooth speakers, subwoofers, and high-power DIY installs, Class D dominates. A modern TPA3116D2 Class D board delivers 2 \times 50W of RMS power, runs cool enough to not require a heatsink, and costs between $12 and $18 on the maker market. According to All About Circuits, the shift toward Class D in consumer and DIY audio is driven by these massive efficiency gains, though it requires careful LC low-pass filtering to strip the ultrasonic PWM carrier frequency before it reaches the speaker voice coil.
Where You Meet Amplifiers in Practice
Understanding the amplifier definition theoretically is only half the battle. Here is where you will physically wire them into projects and installations:
- Audio Output Stages: Microcontrollers and DACs (like the ESP32's internal DAC or an external PCM5102) output line-level signals (~1V to 2V RMS) that cannot drive a 4-ohm or 8-ohm speaker. You must interpose a power amplifier (like the MAX98357A I2S amp) to convert that voltage signal into the high-current power required to move a speaker cone.
- Instrumentation and Sensor Buffering: When measuring a thermocouple or a strain gauge, the signal might be in the microvolt or low millivolt range. A standard op-amp will drown this in common-mode noise. Instead, you use an instrumentation amplifier like the INA128. As detailed in Analog Devices' instrumentation guides, these chips feature a Common-Mode Rejection Ratio (CMRR) of 120 dB, effectively ignoring the 60Hz mains hum picked up by long sensor wires while amplifying the tiny differential signal.
- RF and Communications: In radio frequency circuits, Low Noise Amplifiers (LNAs) are placed immediately after the antenna. Their job is not necessarily to create massive power, but to amplify the microvolt RF signal above the noise floor of the subsequent mixer stages without adding their own internal thermal noise (measured as Noise Figure).
Bench Troubleshooting and Common Failures
When your amplifier circuit fails to perform as the math dictates, the issue is rarely the silicon itself. It is almost always a supporting component or layout failure. Here is a decision path for the most common bench headaches.
Cause: You have exceeded the slew rate or the voltage rails.
Fix: Check your power supply with a multimeter under load. If you are feeding a 5V single-supply op-amp (like an LM358) with a 2.5V biased input and expecting a 4V peak output, it will clip. The LM358 cannot swing to the positive rail. Switch to a "rail-to-rail" output op-amp like the MCP6002, or increase the supply voltage.
Symptom: The amplifier oscillates at high frequencies (visible only on an oscilloscope) or outputs a high-pitched whine.
Cause: Power supply decoupling failure or parasitic feedback.
Fix: High-gain amplifiers will turn their own power supply noise into an oscillator if the rails aren't stabilized. You must place a 100nF (0.1µF) ceramic capacitor as physically close to the VCC and GND pins as possible. For high-current audio amps like the LM3886, you also need a bulk 100µF electrolytic capacitor near the board to handle transient bass current draws. Furthermore, ensure your input traces are not routed parallel to your output traces, which creates parasitic capacitance and unintended positive feedback.
Symptom: The output is incredibly noisy or has a 60Hz/50Hz hum.
Cause: Ground loops or improper shielding.
Fix: If you are using a single-supply audio amp, ensure your input signal is AC-coupled through a series capacitor (e.g., 1µF to 10µF film or electrolytic) to block the DC bias offset. If the hum persists, check your grounding topology. All audio grounds should route back to a single "star ground" point to prevent return currents from one stage modulating the ground reference of another. For a deeper dive into precision signal chains, the Texas Instruments Precision Labs video series offers excellent visual breakdowns of grounding and noise mitigation in op-amp circuits.






