An amplifier is an active electronic component that increases the voltage, current, or power of an input signal using energy from an external power supply. In a real circuit or installation, it changes a fragile, low-energy signal (like a 10mV microphone output or a millivolt strain gauge reading) into a robust, high-energy signal capable of driving a physical load—such as an 8-ohm speaker, a 50-ohm RF antenna, or a heavy motor gate—without altering the original waveform's fundamental shape.
People commonly confuse amplifiers with step-up transformers. While a transformer can increase AC voltage, it does so by proportionally decreasing current via magnetic induction, meaning it cannot increase total power. An amplifier, by contrast, uses an external DC rail to actively inject new power into the signal path, yielding true power gain.
The Core Amplifier Definition and What It Actually Changes
To understand the practical amplifier definition, you have to look at what the component actually modifies. An amplifier takes a small AC (or varying DC) input and maps it to a larger output. The ratio of the output to the input is the gain. Gain can be expressed as a raw ratio (e.g., 100x) or in decibels (dB).
What changes in the circuit is the impedance relationship. A raw sensor might have a high output impedance, meaning its voltage sags the moment you try to pull current from it. An amplifier acts as a buffer and a multiplier: it presents a high input impedance (so it doesn't load down the sensor) and a low output impedance (so it can push current into a heavy load). This is why an instrumentation amplifier is mandatory when reading a Wheatstone bridge; without it, the bridge's own resistance would choke the signal before it ever reached your microcontroller's ADC.
Amplifier Classes at a Glance (Spec-Sheet Table)
Not all amplifiers are built the same way. The internal topology dictates how the active devices (transistors or MOSFETs) conduct current relative to the input waveform. This is categorized into 'classes'. Here is the data-dense breakdown you need when selecting an IC or designing a discrete stage.
| Class | Theoretical Max Efficiency | Practical Efficiency | Conduction Angle | Typical Use Case & Trade-offs |
|---|---|---|---|---|
| Class A | 25% (transformer-coupled) / 50% (inductive) | 15% - 30% | 360° (Full cycle) | High-end audio, RF low-noise amps (LNAs). Lowest distortion, massive heat dissipation. |
| Class B | 78.5% | 50% - 60% | 180° (Half cycle) | Rarely used alone due to severe crossover distortion at the zero-crossing point. |
| Class AB | 78.5% | 50% - 70% | 180° to 360° | Standard op-amps, home stereo receivers. The sweet spot between Class A linearity and Class B efficiency. |
| Class D | 100% | 85% - 95% | PWM Switching | Bluetooth speakers, subwoofers, motor drives. Uses high-frequency switching; requires LC output filters. |
| Class G | N/A (Rail-switching) | 70% - 80% | Variable (AB base) | Pro audio PA systems. Uses multiple power supply rails to reduce voltage drop across output transistors. |
Data synthesized from standard semiconductor topologies. For a deeper mathematical breakdown of these conduction angles, refer to the All About Circuits semiconductor textbook.
Worked Numeric Example: Sizing an Audio Amplifier Stage
Let's move from theory to the workbench. Suppose you are building a custom portable speaker. Your DAC (digital-to-analog converter) outputs a maximum of 50 mV RMS. You need to drive a standard 8-ohm speaker with 5 watts of continuous, undistorted power. What gain do you need, and which amplifier class makes sense?
Step 1: Calculate the required output voltage.
Using the power formula $P = V_{rms}^2 / R$, we can solve for $V_{rms}$:
$V_{rms} = \sqrt{P \times R} = \sqrt{5 \times 8} = \sqrt{40} \approx 6.32 \text{ V RMS}$.
Step 2: Calculate the peak voltage.
Amplifier power supplies must accommodate the peak of the sine wave, not just the RMS.
$V_{peak} = V_{rms} \times \sqrt{2} = 6.32 \times 1.414 \approx 8.94 \text{ V peak}$.
Step 3: Calculate the required voltage gain ($A_v$).
$A_v = V_{peak(out)} / V_{peak(in)}$. Assuming the 50mV input is also RMS, its peak is $50 \text{ mV} \times 1.414 = 70.7 \text{ mV}$ (0.0707 V).
$A_v = 8.94 / 0.0707 \approx 126.4$ (or roughly 42 dB).
Step 4: Select the topology.
A classic Class AB chip like the LM386 maxes out around 1W and would clip severely or overheat trying to deliver 5W. Furthermore, to get 8.94V peak out of a Class AB amp, your supply rail needs to be at least 10V to account for transistor saturation voltage drops ($V_{CE(sat)}$).
Instead, you select a Class D amplifier IC like the Texas Instruments TPA3116D2. Because Class D amps use switching topologies, they can output power approaching the theoretical limit of the supply rail with minimal heat. Running it off a standard 12V laptop brick gives you plenty of headroom to push 5W into 8 ohms efficiently, keeping your portable speaker battery from draining in twenty minutes.
Where You Meet Amplifiers in Practice
If you think amplifiers are just for making music louder, you are missing 90% of their applications. Here is where you will actually wire them up on the bench:
- Instrumentation and Sensor Interfacing: When reading a PT100 RTD or a load cell, the signal is often in the microvolt range. You will use an instrumentation amplifier (like the INA128) to apply a gain of 100x to 1000x while rejecting common-mode noise from long cable runs.
- RF and Wireless: If your ESP32's WiFi range is dropping, you might add a Low Noise Amplifier (LNA) like the BGA2818 on the receive path, and a Power Amplifier (PA) on the transmit path. These are highly specialized Class A or Class AB amplifiers tuned for 2.4 GHz impedance matching.
- Motor Control and Gate Driving: A microcontroller GPIO pin can only source ~20mA. To switch a power MOSFET that controls a 30A BLDC motor, you need to charge the MOSFET's gate capacitance in nanoseconds. A gate driver is essentially a high-speed, high-current power amplifier that takes a 3.3V logic signal and amplifies it to a 12V/2A pulse.
- Active Filtering: Passive RC filters suffer from insertion loss. By wrapping an op-amp around a capacitor-resistor network (like in a Sallen-Key topology), you create an active filter that amplifies the passband while aggressively attenuating the stopband.
Frequently Asked Questions
Can an amplifier increase the frequency of a signal?
No. An ideal amplifier is strictly linear regarding frequency; it only increases amplitude. If you need to change frequency, you need a mixer, an oscillator, or a frequency multiplier circuit, not an amplifier.
Why do we use decibels (dB) instead of raw numbers for gain?
Because gains in multi-stage circuits multiply. If stage one has a gain of 100 and stage two has a gain of 50, the total raw gain is 5,000. In decibels, you simply add them: 40 dB + 34 dB = 74 dB. It makes mental math and cascading calculations significantly easier on the job site.






