An amplifier is an active electronic circuit that increases the voltage, current, or power amplitude of an input signal to drive a heavier load without altering the original waveform's shape. While passive components like resistors or transformers can only divide or step up voltage at the expense of current, an amplifier actively changes the energy profile of a circuit by using a weak input signal to modulate a separate, higher-energy DC power supply. The most common misconception among beginners is confusing an amplifier with a step-up transformer. A transformer strictly conserves power (if voltage goes up, current drops proportionally), whereas an amplifier outputs more total power than it receives at the input by drawing the difference from its DC supply rails.
The Core Job: Signal Control and Power Gain
To understand how an amplifier works, think of the DC power supply as a pressurized water main, the output load as a hose, and the input signal as your hand turning the valve. Your hand uses very little physical energy, but it controls a massive flow of water. In electronics, a tiny AC voltage from a sensor or microphone acts as the 'hand,' instructing internal transistors to chop a large DC voltage into a high-power replica of the input wave.
Let’s look at a worked numeric example: driving an 8-ohm bookshelf speaker from a dynamic microphone. The mic generates a weak 10 mV RMS signal at roughly 1 mA, yielding just 10 µW (microwatts) of input power. To produce audible sound, we need to deliver 1 Watt of power to the 8-ohm speaker.
Target Power ($P$) = 1W
Load Resistance ($R$) = 8Ω
Required RMS Voltage: $V = \sqrt{P \times R} = \sqrt{1 \times 8} = 2.83V_{RMS}$
Required Current: $I = V / R = 2.83 / 8 = 353 mA$
The amplifier must provide a voltage gain of 283x (from 10mV to 2.83V) and a current gain of 353x (from 1mA to 353mA). The total power gain is 100,000x, or 50 dB. The amplifier achieves this by drawing current from a 12V DC wall adapter, dissipating the excess energy as heat or switching losses to perfectly match the 2.83V AC output requirement.
Amplifier Topologies and Efficiency Specs
Not all amplifiers handle that excess energy the same way. The 'class' of an amplifier dictates how its internal transistors conduct, which directly impacts efficiency, heat dissipation, and audio fidelity. According to All About Circuits, choosing the right topology is the most critical decision in analog design, as it determines your thermal management requirements and battery life.
| Class | Conduction Angle | Max Theoretical Efficiency | Typical Real-World Efficiency | Common IC Example | Primary Application |
|---|---|---|---|---|---|
| Class A | 360° (Always On) | 25% (Resistive) / 50% (Inductive) | 15% - 30% | LM386 (Configured) | Ultra-low noise preamps, high-end audio |
| Class AB | 180° to 360° | 78.5% | 50% - 65% | TDA2030, LM1875 | Consumer audio, guitar amps, op-amp output stages |
| Class D | PWM Switching | 100% | 85% - 95% | TPA3116D2, MAX98357A | Bluetooth speakers, subwoofers, battery-powered devices |
| Class G | Rail Switching AB | ~90% | 75% - 85% | LM4702, STA516 | High-power studio monitors, AV receivers |
As noted in the Texas Instruments Amplifier Design Hub, Class D amplifiers have largely replaced Class AB in portable and high-power commercial applications because their switching nature eliminates the need for massive aluminum heatsinks, replacing them instead with small LC (inductor-capacitor) output filters to smooth the PWM carrier frequency back into an analog wave.
Where You Meet Amplifiers in Practice
Amplifiers are not just for making music louder. Depending on the circuit requirements, you will encounter three distinct categories of amplification on the workbench:
1. Sensor Signal Conditioning (Voltage Gain)
When interfacing analog sensors with microcontrollers like the Arduino or ESP32, you often need to amplify millivolt-level signals to match the 0-3.3V or 0-5V ADC (Analog-to-Digital Converter) range. For example, measuring current via a 0.1Ω shunt resistor at 5A yields only a 500mV drop. Using a dedicated current-sense amplifier like the INA219 or a standard op-amp like the LM358 configured for a gain of 6 ($V_{out} = V_{in} \times 6$), you scale that 500mV up to 3.0V, maximizing the resolution of your ESP32's 12-bit ADC. Here, the purpose of the amplifier is strictly voltage scaling and impedance buffering, not power delivery.
2. Audio Power Amplification (Current Gain)
Driving an 8-ohm or 4-ohm speaker requires massive current swings that a standard op-amp cannot provide (most op-amps max out at 20-40 mA). This is where power amplifiers like the TPA3116D2 step in. The TPA3116 can output up to 50W per channel by pulling amps of current from a 24V DC supply. In this scenario, the preamplifier handles the voltage gain and tone control, while the power amplifier acts purely as a current buffer to drive the low-impedance mechanical load of the speaker cone.
3. RF and Wireless (High-Frequency Gain)
In radio frequency (RF) circuits, amplifiers must operate at gigahertz speeds without introducing thermal noise that drowns out the signal. A Low Noise Amplifier (LNA) like the BGA2869 is used at the front end of a 2.4GHz WiFi or Bluetooth receiver. Its purpose is to boost the microvolt-level antenna signal by 15dB before it passes through lossy mixers and filters. As detailed in Analog Devices' MT-044 Tutorial, the critical spec here is the Noise Figure (NF); an RF amplifier must add as little internal noise as possible while providing gain.
Frequently Asked Questions
Can an amplifier output more voltage than its power supply?
No. An amplifier cannot output a peak voltage higher than its DC supply rails (minus a small internal voltage drop). If you power an LM358 op-amp with a single 5V supply, the absolute maximum output swing will be roughly 3.5V to 4V. To achieve a full 0-5V swing, you must use a 'Rail-to-Rail' output (RRO) op-amp like the MCP6001, or supply the circuit with a higher voltage (e.g., 9V) and use a voltage divider at the output.
Why does my audio amplifier output sound distorted at high volumes?
This is called clipping. It occurs when the input signal demands an output voltage that exceeds the amplifier's DC supply rails. If your amp is powered by 12V, it cannot output a 15V peak waveform. The tops and bottoms of the sine wave are 'clipped' off, turning it into a square wave. This not only sounds terrible but sends high-frequency harmonic energy directly into the speaker's voice coil, which can burn it out. Always ensure your power supply voltage is at least 20% higher than the maximum required peak output voltage.
What is the difference between a preamplifier and a power amplifier?
A preamplifier (preamp) is designed for high voltage gain and high input impedance. Its job is to take a weak, high-impedance source (like an electric guitar pickup or condenser mic) and boost it to a standard 'line level' (around 1V to 2V RMS) without loading down the source. A power amplifier takes that line-level signal and provides the massive current gain needed to drive low-impedance loads like speakers or motors. In many modern ICs, these two stages are combined into a single package, but in high-end or high-power systems, they remain physically separate to prevent thermal noise and electromagnetic interference.






