An amplifier is an electronic circuit that takes a low-power input signal and outputs a proportionally larger, higher-power replica of that signal using energy from an external power supply. In a real circuit, an amplifier changes the available power and drive capability, taking a weak voltage or current from a high-impedance source (like an electret microphone or an ESP32 DAC pin) and multiplying it to drive a heavy, low-impedance load (like an 8-ohm speaker or a 50-ohm RF antenna).
People frequently confuse amplification with stepping up voltage via a transformer. A transformer can increase AC voltage, but it strictly conserves power (minus core and copper losses); if the voltage goes up, the current drops proportionally. An amplifier actively adds power to the signal by drawing continuous energy from a separate DC power rail, allowing both voltage and current to increase simultaneously at the output.
The Core Mechanism: Modulating a Power Supply
To understand how an active amplifier works, use this single analogy: imagine a pressurized water main (your DC power supply) connected to a hose with a hand-operated valve (your active components, like transistors or MOSFETs). Your input audio signal is the hand turning the valve. The valve does not create water; it simply modulates the flow from the pressurized main based on the hand's movements. The water exiting the hose into a bucket (the load) is a high-power, exact replica of the hand's low-effort movements.
In solid-state electronics, this 'valve' is typically a bipolar junction transistor (BJT) or a Metal-Oxide-Semiconductor Field-Effect Transistor (MOSFET). A tiny current or voltage applied to the base or gate terminal controls a much larger current flowing from the collector/drain to the emitter/source. The ratio of the output signal amplitude to the input signal amplitude is known as the gain.
Worked Numeric Example: Sizing an Audio Amplifier
Let's look at a practical bench scenario. You are building a custom portable speaker and need to drive an 8-ohm, 1-watt RMS speaker using a standard single-supply amplifier IC. How much supply voltage do you actually need?
First, we calculate the required output voltage using the power formula $P = \frac{V_{rms}^2}{R}$:
- Target Power (P): 1 Watt
- Load Resistance (R): 8 Ohms
- Required $V_{rms}$: $\sqrt{1 \times 8} = \sqrt{8} \approx$ 2.83V RMS
Next, we convert RMS voltage to peak and peak-to-peak voltage to understand the physical swing required from the amplifier's output transistors:
- Peak Voltage ($V_{peak}$): $2.83V \times \sqrt{2} \approx 4.0V$
- Peak-to-Peak Voltage ($V_{p-p}$): $4.0V \times 2 = 8.0V$
If you are using a classic Class AB chip like the Texas Instruments LM386, the output transistors cannot swing perfectly to the supply rails. They suffer from saturation voltage drops (typically around 1.5V combined for the top and bottom transistors in the push-pull stage). Therefore, your minimum DC supply voltage ($V_{cc}$) must be:
$V_{cc(min)} = V_{p-p} + V_{saturation} = 8.0V + 1.5V = 9.5V$.
If you feed the LM386 exactly 9.5V, it will clip the peaks of your audio signal due to component tolerances and ripple. In practice, you would select a 12V DC power supply to provide clean headroom. Conversely, if you use a modern Class D bridge-tied load (BTL) amplifier like the TPA3116D2, the output swings differentially across the load, effectively doubling the voltage swing for a given rail, allowing you to achieve much higher power from the same 12V supply.
Where You Meet Amplifiers in Practice
Amplifiers are not just for audio. You will encounter them in three primary domains on the workbench:
- Signal Conditioning (Instrumentation Amplifiers): When reading a shunt resistor with an ADC, the voltage drop might be only 20mV. Chips like the INA219 or discrete instrumentation amps (like the AD620) amplify this micro-signal to a 0-3.3V range that a microcontroller can accurately digitize without noise corruption.
- Audio and RF Power Amplifiers: Driving speakers, headphones, or transmitting radio frequencies. This is where power efficiency and thermal management become the primary engineering constraints.
- Motor Drivers and Power Switching: A microcontroller GPIO pin can only source ~20mA. To drive a 2A stepper motor coil, you use a MOSFET driver circuit—which is fundamentally a high-current, low-gain DC amplifier acting as a switch.
Amplifier Classes at a Glance
The 'Class' of an amplifier dictates how its active devices are biased, which directly determines its efficiency, heat output, and audio fidelity. Below is a reference matrix for the most common topologies.
| Class | Theoretical Max Efficiency | Quiescent Current (Idle) | Primary Trade-off | Typical Use Case |
|---|---|---|---|---|
| Class A | 25% - 50% | Very High (Always fully on) | Massive heat generation; requires huge heatsinks. | High-end audiophile preamps, low-noise RF stages. |
| Class B | 78.5% | Zero (Devices turn off at 0V) | Severe crossover distortion where the waveform crosses zero. | Rarely used alone; forms the basis for Class AB. |
| Class AB | 50% - 78.5% | Moderate (Biased slightly on) | Compromise between Class A heat and Class B distortion. | Op-amps (NE5532), classic audio receivers, LM386. |
| Class D | 90% - 95%+ | Low (Switching losses dominate) | Requires output LC filters; generates high-frequency EMI. | Bluetooth speakers, subwoofers, battery-powered devices. |
For a deeper mathematical breakdown of these topologies, refer to the All About Circuits semiconductor textbook chapter on amplifier classes.
Frequently Asked Questions
What is the difference between amplifier gain and efficiency?
Gain and efficiency measure two completely different characteristics. Gain is the ratio of the output signal amplitude to the input signal amplitude (e.g., an input of 0.1V resulting in an output of 2.0V is a voltage gain of 20, or 26dB). It describes signal multiplication. Efficiency, on the other hand, is the ratio of useful AC power delivered to the load versus the total DC power drawn from the wall or battery. A high-gain amplifier can be terribly inefficient (like a Class A amp wasting 80% of its drawn power as heat), while a unity-gain buffer (gain of 1) can be highly efficient.
Why do Class AB amplifiers get hot even when not playing loud audio?
Class AB amplifiers get hot at idle because of their quiescent current. To eliminate the crossover distortion inherent in Class B designs, the output transistors in a Class AB amp are intentionally biased slightly 'on' even when the input signal is exactly zero volts. This means a continuous DC current is flowing from the positive supply rail, through the output transistors, to the negative rail (or ground), entirely bypassing the speaker. This idle current generates constant heat ($P = I_{quiescent} \times V_{supply}$), which is why a silent Class AB receiver still requires a substantial aluminum heatsink and adequate chassis ventilation.
How do I choose the right amplifier class for a battery-powered project?
If your project runs on a lithium-ion cell or AA batteries, you should almost exclusively choose a Class D amplifier (like the PAM8403 for low power or TPA3116D2 for higher power). Class D amps use Pulse Width Modulation (PWM) to switch the output MOSFETs fully on or fully off, minimizing the time they spend in the linear (high-resistance) region where power is wasted as heat. While Class AB amps will drain a 18650 cell in a matter of hours due to quiescent draw and low efficiency at moderate volumes, a Class D amp can run for days on the same battery, provided you include the necessary LC low-pass filter on the output to prevent the high-frequency PWM carrier from damaging your speaker voice coil.






