An amplifier is an active electronic circuit that uses a small input signal to control a larger external power source, delivering an output signal with greater voltage, current, or power. In a real circuit, it changes the magnitude of a signal without (ideally) altering its underlying waveform, frequency, or phase. People commonly confuse amplifiers with step-up transformers; while a transformer can increase AC voltage, it cannot increase total power due to the conservation of energy. An amplifier, by contrast, actively draws power from a DC supply rail to boost the signal's actual wattage.
The Core Math: Voltage, Current, and Power Gain
To understand amplifier performance, we look at gain—the ratio of output to input. Gain can be expressed as a raw multiplier or in decibels (dB), which compresses massive ratios into manageable numbers and allows us to cascade stages by simply adding their dB values.
Let's look at a concrete numeric example using a basic audio preamplifier stage driving a power amp input:
- Input Signal: 50 mV RMS (from a microphone or DAC)
- Output Signal: 2.0 V RMS
- Load: 8-ohm speaker
The voltage gain ($A_v$) is simply $V_{out} / V_{in}$. Here, $2.0 / 0.050 = 40$. The amplifier multiplies the input voltage by 40. To express this in decibels, we use the formula $20 \times \log_{10}(A_v)$. 20 * log10(40) = 32.04 dB of voltage gain.
But voltage alone doesn't tell the whole story; we need to know the power delivered to the load. Using the power formula $P = V^2 / R$, we calculate $2.0^2 / 8 = 0.5 \text{ Watts}$. If the input impedance of the amplifier was 10 k$\Omega$, the input power was a negligible 0.25 $\mu$W. The amplifier has taken a microwatt-level signal and delivered half a watt to the speaker, drawing the difference from its DC power supply.
Where You Meet Amplifiers in Practice
Amplifiers are not just for driving speakers. They are the fundamental building blocks of almost every mixed-signal and power electronics system on your bench:
- Instrumentation and Sensor Scaling: A thermocouple might output 15 mV at your target temperature. An instrumentation amplifier (like the INA128) amplifies this to a clean 0–3.3V signal that an ESP32 or Arduino ADC can safely read without noise drowning out the measurement.
- Motor Control and Gate Driving: A microcontroller GPIO pin can only source about 20 mA at 3.3V. To switch a high-power BLDC motor via a MOSFET, you use a gate driver (like the IR2110), which is essentially a specialized high-current amplifier that boosts the 3.3V logic signal to the 12V–15V and 2A peak current required to rapidly charge the MOSFET's gate capacitance.
- RF and Wireless: In long-range LoRa or WiFi setups, a Low Noise Amplifier (LNA) boosts microvolt signals from the antenna before the receiver's internal mixer processes them, drastically improving the signal-to-noise ratio (SNR).
Amplifier Classes: The Efficiency vs. Fidelity Trade-Off
Not all amplifiers operate the same way. The 'Class' of an amplifier dictates how its active components (transistors or tubes) are biased, which directly impacts efficiency, heat dissipation, and signal distortion. For a deeper dive into the semiconductor physics behind these topologies, the All About Circuits semiconductor textbook provides excellent foundational diagrams.
| Class | Conduction Angle | Theoretical Max Efficiency | Typical Use Case | Common IC Example |
|---|---|---|---|---|
| Class A | 360° (Always on) | 25% - 50% | High-end audiophile preamps, ultra-low noise RF | Discrete JFETs, LM386 (wired Class A) |
| Class AB | 180° - 360° | 50% - 78.5% | Consumer audio, op-amp output stages | LM386, TDA2030, LM1875 |
| Class D | Switching (PWM) | > 90% | Portable Bluetooth speakers, subwoofers, EV motor drives | TPA3116D2, MAX98357A |
Bench Walkthrough: Pushing a Class-D Audio Amp to Clipping
Theory is clean; the workbench is messy. Let's walk through a real-world scenario where understanding amplifier limits prevents hardware destruction. We will use a Texas Instruments TPA3116D2 Class-D evaluation board, a staple for DIY audio projects.
1. The Setup: Power the TPA3116D2 board with a bench power supply set to 24V DC, capable of delivering 5A. Connect an 8-ohm, 50W dummy load resistor to the speaker terminals. Hook up a function generator to the audio input, set to a 1 kHz sine wave at 500 mV peak-to-peak (Vpp). Connect an oscilloscope across the dummy load.
2. The Baseline Numbers: At 500 mV input, the scope shows a clean 1 kHz sine wave at the output. The RMS voltage reads 4.0V. Power delivered to the load is $4.0^2 / 8 = 2.0\text{W}$. The IC is barely warm to the touch.
3. Pushing the Limits: We want to find the maximum clean power. The theoretical maximum RMS voltage for a 24V rail in a bridge-tied load (BTL) Class-D configuration is roughly $V_{cc} / \sqrt{2}$, but practical MOSFET $R_{DS(on)}$ drops reduce this. We slowly increase the function generator amplitude.
The Outcome: As the input reaches 1.8 Vpp, the output waveform on the oscilloscope stops growing in height. The peaks and troughs of the sine wave flatten out horizontally. The RMS voltage maxes out at 14.5V. The calculated power is $14.5^2 / 8 = 26.2\text{W}$. The IC's exposed thermal pad reads 68°C on an IR thermometer.
What Went Wrong (Clipping): The amplifier has hit its supply rail limit; it physically cannot output more than ~24V peak. By pushing the input signal beyond the amplifier's linear range, we forced it into clipping. The flattened sine wave is mathematically equivalent to a sine wave plus a series of high-frequency odd harmonics (square wave characteristics).
Common Confusions and Amplifier FAQs
Can an amplifier create energy?
No. An amplifier obeys the first law of thermodynamics. It acts as a valve. The 'extra' power at the output is drawn directly from the DC power supply (the 24V rail in our bench example). If your amplifier outputs 30W into a speaker, and is 80% efficient, it must draw at least 37.5W from your battery or power supply, dissipating the remaining 7.5W as heat.
Why do some op-amps require dual (split) power supplies?
Operational amplifiers (like the classic TL072) are often used to amplify AC signals that swing both positive and negative relative to ground. If you power an op-amp with a single 0V to 12V supply, it cannot output a negative voltage. By using a split supply (e.g., +12V, GND, -12V), you bias the input at 0V (GND), allowing the output to swing symmetrically into the negative rail, perfectly reproducing AC waveforms without needing DC-blocking capacitors.
What is the difference between an amplifier and a comparator?
While both use differential inputs and high gain, an amplifier is designed to operate in its linear region, outputting a precise, scaled replica of the input. A comparator (like the LM393) is designed to operate in saturation; it simply looks at the two inputs and snaps its output to the positive or negative rail to indicate which input is higher. Never use a standard comparator as a linear amplifier—the internal frequency compensation and output stage topology will cause severe ringing and instability.






