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 amplitude—voltage, current, or both—of a signal, drawing the extra energy from an external DC power supply to boost the signal without altering its fundamental frequency or waveform shape. Beginners commonly confuse amplifiers with step-up transformers; while a transformer can increase AC voltage, it cannot increase overall power (it actually loses some to core and copper losses) and strictly requires an AC input, whereas an amplifier uses active components like transistors or vacuum tubes to add real power from a DC supply and can amplify both AC and DC signals.
Think of it like a municipal water valve: a small physical twist of the handle (the low-power input signal) controls a massive, high-pressure flow of water from the main city pipe (the DC power supply).
The Core Mechanics: Voltage, Current, and Power Gain
Amplifiers are characterized by their gain, which is the ratio of the output signal to the input signal. Depending on the circuit topology, an amplifier can provide voltage gain, current gain, or both (power gain). According to Electronics Tutorials, a small-signal voltage amplifier focuses on increasing the voltage swing, while a power amplifier focuses on delivering high current to a low-impedance load, like a speaker or a motor.
Worked Numeric Example: Designing a Microphone Preamp
Let's design a microphone preamplifier stage using a standard LM358 operational amplifier (op-amp) in a non-inverting configuration to interface with a microcontroller.
- Input Signal: An electret microphone capsule outputs a weak 50 mV RMS signal.
- Target Output: We need roughly 1.0 V RMS to properly drive the analog-to-digital converter (ADC) on a 3.3V ESP32 without introducing excessive quantization noise.
- Required Voltage Gain ($A_v$): $1.0 \text{ V} / 0.05 \text{ V} = \mathbf{20}$.
The formula for the voltage gain of a non-inverting op-amp is:
$$A_v = 1 + \frac{R_f}{R_i}$$
If we set the input ground resistor ($R_i$) to 1 kΩ, the equation becomes:
$$20 = 1 + \frac{R_f}{1000}$$
$$19 = \frac{R_f}{1000}$$
$$R_f = 19,000 \Omega \text{ (or 19 kΩ)}$$
Because 19 kΩ is not a standard E12 series resistor value, we select the closest standard value: 18 kΩ.
Amplifier Classes Explained: Where Efficiency Meets Fidelity
Active amplifiers are categorized into 'classes' based on how their output transistors conduct current during the input signal cycle. The class determines the trade-off between linearity (low distortion) and power efficiency. The Texas Instruments Amplifier Portfolio documentation highlights how modern designs increasingly favor switching classes for portable electronics due to thermal constraints.
| Class | Conduction Angle | Max Theoretical Efficiency | Distortion Profile | Common Example IC / Use Case |
|---|---|---|---|---|
| Class A | 360° (Always on) | 25% - 50% | Lowest (Highly linear) | JLH Class A discrete designs / High-end audiophile |
| Class B | 180° (Half cycle) | 78.5% | High (Crossover distortion) | Rarely used alone in audio; common in RF push-pull |
| Class AB | ~200° (Slight overlap) | 50% - 70% | Low (Eliminates crossover distortion) | LM386 / Traditional guitar amps and PA systems |
| Class D | Switching (PWM) | > 90% | Low (Requires output filtering) | TPA3116D2 / Bluetooth speakers, subwoofers, EV audio |
Where You Meet Amplifiers in Practice
You will rarely see a bare transistor amplifier in modern commercial products; instead, you will encounter highly integrated amplifier ICs tailored to specific domains.
- DIY Audio and Consumer Electronics: Class D amplifiers dominate this space. A breakout board featuring the TPA3116D2 chip costs between $8 and $15 and can deliver 50W per channel into 4Ω speakers from a 24V DC laptop brick. Because they operate at >90% efficiency, they require only a small heatsink, unlike a Class AB chip like the LM386 which would burn up trying to deliver that much continuous power.
- Sensor Interfacing and Instrumentation: When working with photodiodes in light meters or laser receivers, the current generated is in the nanoamp range. Here, you use a transimpedance amplifier (TIA). A high-speed FET-input op-amp like the OPA656 converts this tiny current into a usable voltage with a massive feedback resistor (often 1 MΩ to 100 MΩ), maintaining a low input impedance to prevent the photodiode's parasitic capacitance from ruining the bandwidth.
- RF and Communications: In ham radio transmitters or IoT LoRaWAN gateways, Class C amplifiers are used in the final transmission stage. They conduct for less than 180° of the input cycle, making them highly non-linear and useless for audio, but exceptionally efficient for amplifying continuous-wave or constant-envelope RF signals where the tank circuit filters out the harmonics.
Frequently Asked Questions About Amplifiers
What is the difference between an amplifier and an oscillator?
An amplifier requires an external input signal to produce a scaled-up output; if you remove the input, the output drops to zero (or just shows DC bias noise). An oscillator, on the other hand, generates its own continuous AC output signal without any external AC input. It does this by feeding a portion of its output back into its input in-phase (positive feedback), causing the circuit to self-sustain a specific frequency determined by its RC, LC, or crystal timing components.
Why do Class D amplifiers need an LC output filter?
Class D amplifiers do not output a smooth analog waveform. Instead, they output a high-frequency Pulse Width Modulated (PWM) square wave—often switching between 300 kHz and 600 kHz—where the duty cycle represents the instantaneous audio voltage. If you feed this directly to a speaker, the speaker's voice coil inductance will naturally filter some of it, but it will waste massive amounts of energy as heat and radiate EMI. An LC (inductor-capacitor) low-pass filter is placed between the amplifier IC and the speaker to strip away the high-frequency switching carrier, leaving only the smooth, amplified audio waveform.
What is an operational amplifier vs a power amplifier?
The difference lies in their output stage design and intended load. An operational amplifier (op-amp), like the LM358 or NE5532, is designed for high voltage gain, high input impedance, and low output current (typically maxing out at 20 mA to 40 mA). They are used for signal conditioning, filtering, and math operations. A power amplifier, like the TDA7294 or LM386, is designed to deliver high current (often 1A to 10A+) into low-impedance loads (like 4Ω or 8Ω speakers), but generally has lower voltage gain and lower input impedance than a precision op-amp.
How does clipping happen in an amplifier circuit?
Clipping occurs when the requested output signal exceeds the physical voltage limits of the amplifier's DC power supply rails. For example, if you power an LM358 with a single 5V supply, the maximum output swing is roughly 3.5V (due to internal transistor voltage drops). If your input signal and gain dictate that the output should swing to 4.5V, the op-amp simply hits its internal 'ceiling' and flattens the top of the sine wave. This introduces severe harmonic distortion and, in audio applications, sounds like harsh crackling or fuzz. According to Analog Devices, managing headroom and selecting the correct supply voltage is the primary method for preventing clipping in high-fidelity designs.






