An electrical amplifier is an active circuit that uses a small input signal to control a larger power supply, producing a proportionally larger output signal without altering the original waveform's fundamental shape. Whether you are conditioning a millivolt thermocouple signal for an Arduino or driving a 500W subwoofer, the underlying physics remain identical: you are using a low-power signal to modulate a high-power source. In a real circuit, an amplifier changes the amplitude (voltage, current, or both) of an input signal, effectively increasing the signal's total power by drawing energy from an external DC rail.
The Core Mechanism: Modulation, Not Creation
A common misconception among beginners is that an amplifier "creates" or "multiplies" the input signal's energy. It does not. An amplifier is essentially a variable resistor or valve controlled by the input waveform. The energy for the amplified output comes entirely from the circuit's DC power supply. The active component—whether a bipolar junction transistor (BJT), a MOSFET, or a vacuum tube—simply varies its internal resistance in sync with the input signal, chopping the DC supply into a larger replica of the input AC waveform.
People commonly confuse electrical amplifiers with step-up transformers. A transformer can increase AC voltage, but it decreases current proportionally to conserve energy (minus core and copper losses); it cannot amplify power. An amplifier, by contrast, increases total power by consuming energy from its DC supply. Another frequent point of confusion is conflating pre-amplifiers with power amplifiers. A pre-amp amplifies voltage (high impedance, low current) to prepare a signal for processing. A power amplifier amplifies current (low impedance, high current) to physically drive a load like a speaker or motor.
Amplifier Classes and Efficiency Profiles
How an amplifier handles its active components over the 360-degree cycle of an AC waveform defines its "Class." This determines the trade-off between linearity (fidelity) and efficiency (heat dissipation). Below is the definitive reference table for the most common amplifier topologies you will encounter in modern electronics.
| Class | Conduction Angle | Theoretical Max Efficiency | Typical Real-World Efficiency | Primary Use Case & Examples |
|---|---|---|---|---|
| Class A | 360° (Always ON) | 25% (Resistive) / 50% (Inductive) | 15% - 20% | High-fidelity audio pre-amps, RF linear stages. High heat, zero crossover distortion. |
| Class B | 180° (Half cycle) | 78.5% | 50% - 60% | Push-pull audio outputs. Rarely used alone due to severe crossover distortion at the zero-crossing point. |
| Class AB | 180° to 360° | 50% - 78.5% | 40% - 60% | Standard audio power amps (e.g., LM386, TIP31C push-pull). Biased slightly ON to eliminate crossover distortion. |
| Class C | < 180° | 80% - 90% | 70% - 85% | RF transmitters, tuned LC circuits. Unusable for audio due to massive waveform clipping. |
| Class D | PWM Switching | 100% | 85% - 95% | Modern subwoofers, motor drives, Class-D audio ICs (e.g., TPA3116D2). Uses high-frequency pulse-width modulation. |
For a deeper dive into the physics of these conduction angles, the Amplifier Classifications chapter on All About Circuits provides excellent load-line visualizations. Notice how Class AB dominates legacy analog audio, while Class D has entirely taken over portable and high-power applications due to its minimal thermal footprint.
Worked Numeric Example: Calculating Gain and Dissipation
Let's look at a practical bench scenario: amplifying a weak sensor signal using a standard LM358 dual operational amplifier in a non-inverting configuration. We want to boost a 50 mV peak AC signal from a piezoelectric vibration sensor so an Arduino Uno's 10-bit ADC (which reads 0-5V) can accurately sample it.
Circuit Parameters:
- Input Signal ($V_{in}$): 50 mV peak
- Feedback Resistor ($R_f$): 100 kΩ
- Ground Resistor ($R_g$): 10 kΩ
- Power Supply ($V_{CC}$): Single 12V DC rail
The voltage gain ($A_v$) of a non-inverting op-amp is calculated using the formula:
$A_v = 1 + (R_f / R_g)$
Plugging in our real values:
$A_v = 1 + (100,000 / 10,000) = 1 + 10 = 11$
The output voltage ($V_{out}$) will be:
$V_{out} = V_{in} \times A_v = 50 \text{ mV} \times 11 = 550 \text{ mV peak}$
Furthermore, because we are using a single 12V supply, the LM358 cannot swing its output all the way to 0V or 12V. Its output swing is typically limited to about $V_{CC} - 1.5V$ on the high end, and roughly 20 mV on the low end. If our input signal was 600 mV, the math would predict a 6.6V output, which is perfectly safe. But if the input was 1.2V, the math predicts 13.2V—which is impossible on a 12V rail, resulting in hard clipping at ~10.5V.
Where You Meet Amplifiers in Practice
Amplifiers are not just for audio. The concept of using a small signal to control a large power flow is the backbone of modern control systems and communications.
Sensor Signal Conditioning
When working with microcontrollers, you frequently encounter sensors that output microvolt or millivolt signals. A thermocouple might output 40 µV per degree Celsius. Feeding this directly into an ESP32's 12-bit ADC (which has a noise floor and resolution limit) yields useless data. Here, you use an instrumentation amplifier (like the INA128 or AD620). These are specialized differential amplifiers with extremely high input impedance and high Common-Mode Rejection Ratio (CMRR), allowing them to amplify the tiny differential voltage while ignoring the electrical noise induced on the sensor wires.
Motor Driving and H-Bridges
If you have ever used an L298N or a TB6612FNG motor driver module with an Arduino, you were using amplifiers. An H-bridge is essentially a high-current, bidirectional Class D (switching) or Class AB (linear) amplifier. The 5V, 20 mA logic signal from your microcontroller's GPIO pin is entirely incapable of spinning a 12V, 2A DC motor. The motor driver IC takes that logic-level signal and uses it to switch power MOSFETs, routing the high-current 12V supply to the motor windings.
RF Transmission
In radio frequency (RF) applications, such as the WiFi transmitter inside an ESP32-WROOM-32 or a Ham radio transceiver, amplifiers operate in Class C or Class E. These classes are highly non-linear and would destroy an audio signal, but because RF transmission relies on a constant-frequency carrier wave (often shaped by an LC tuned tank circuit), the amplifier only needs to pump energy into the resonant circuit at the right moment in the cycle to maintain oscillation and transmit power to the antenna.
Q: Can an amplifier output more power than its power supply provides?
A: No. The law of conservation of energy strictly applies. The AC output power can never exceed the DC input power drawn from the supply. In fact, due to thermal losses and quiescent current, the output power is always strictly less than the supply power (hence efficiency ratings of 20% to 95%).
Q: Why do Class D amplifiers require an output filter?
A: Class D amplifiers output a high-frequency Pulse Width Modulated (PWM) square wave, not a smooth analog sine wave. While speakers (which act as natural inductors) can average this out for audio, if you are using a Class D stage to drive sensitive electronics or need a clean sine wave for a pure AC inverter, you must place an LC (inductor-capacitor) low-pass filter at the output to strip away the high-frequency switching carrier and leave only the fundamental baseband signal.
Understanding the distinction between voltage gain, current gain, and power efficiency allows you to select the right topology for your project. Whether you are biasing a 2N3904 for a simple Class A pre-amp or designing a PCB layout for a TPA3116D2 Class D audio board, always respect the thermal limits and impedance matching requirements dictated by the amplifier's class.






