An amplifier is an electronic circuit or device that increases the power, voltage, or current of an input signal to drive a larger load without altering the original signal's fundamental waveform. When makers and students first ask what the function of an amplifier is, they often confuse it with a step-up transformer. A transformer changes voltage and current ratios while strictly conserving energy (minus minor heat losses). An amplifier, however, does not conserve the input energy; it adds power to the signal by drawing from an external DC power supply, using the weak input signal merely as a control template to shape that larger energy flow.
The Core Function: Modulating External Power
To understand what an amplifier changes in a real circuit, you have to look at the power envelope. A microcontroller GPIO pin might output a 3.3V logic signal capable of sourcing 20mA (66 milliwatts). If you need to drive a 50W motor or an 8-ohm speaker, that 66mW signal is useless on its own. The amplifier's function is to act as a modulator. It takes your 66mW control signal and uses it to rapidly switch or restrict a much larger, separate power source—like a 24V, 5A battery bus.
Think of a municipal water main with a massive flow rate. You cannot push that high-pressure water with your bare hands, but you can turn a small, low-effort pilot valve (the input signal) that mechanically controls the main gate valve, releasing a massive flow of water (the output) that perfectly mirrors your small hand movements. In electronics, the "water main" is your DC power supply, and the "valve" is an active component like a BJT, a MOSFET, or a vacuum tube.
The Math on the Bench: A Worked Numeric Example
Let us look at a classic voltage amplification scenario using a standard LM358 dual operational amplifier. This is a staple on any workbench for sensor signal conditioning.
The Scenario: You have a thermocouple or precision temperature sensor outputting a tiny 50 mV DC signal. Your Arduino's 10-bit ADC references 5V, meaning a 50 mV signal only uses about 1% of your ADC's resolution (roughly 10 out of 1024 steps). You need to amplify this to roughly 2.5V to use the middle of your ADC range.
- Choose the topology: A non-inverting amplifier configuration is ideal here because it maintains the positive polarity of the sensor reading and offers high input impedance, preventing the amp from loading down the fragile sensor.
- Set the feedback network: The voltage gain ($A_v$) of a non-inverting op-amp is calculated as $A_v = 1 + (R_f / R_i)$. We will use a $47 k\Omega$ feedback resistor ($R_f$) and a $1 k\Omega$ ground resistor ($R_i$).
- Calculate the gain: $A_v = 1 + (47,000 / 1,000) = 48$.
- Determine the output: $50 mV \times 48 = 2,400 mV$, or exactly 2.4V.
Where You Meet Amplifiers in Practice
While audio systems are the most visible application, amplifiers are foundational to almost every electronic discipline. Here is where you will actively design with them:
- Sensor Signal Conditioning: Using instrumentation amplifiers (like the INA128) to boost millivolt-level strain gauge or ECG signals while rejecting common-mode noise.
- Motor Control and Gate Drivers: An H-bridge motor driver is essentially a high-current power amplifier. It takes a low-power PWM signal from an ESP32 and amplifies the current to drive a 10A stepper motor.
- RF Transmission: A Wi-Fi transmitter generates a tiny milliwatt-level carrier wave via an oscillator, then passes it through a chain of RF power amplifiers to boost it to a 100mW or 1W signal capable of pushing through walls.
- Audio Reproduction: Converting line-level audio (around 1V RMS) into the high-current, multi-watt signals required to physically move the heavy paper cones of loudspeakers.
Real-World Scenario: Building a 50W Class D Audio Amp
Theory is clean; the workbench is messy. Let us walk through a real-world build to see how amplifier function translates to physical hardware, and where it typically fails.
The Setup: You are building a DIY Bluetooth bookshelf speaker. You wire a TPA3116D2 Class D amplifier board to a 24V DC power supply and connect a pair of 4-ohm speakers. You feed audio in via a 3.5mm jack.
The Numbers: The TPA3116D2 chip is rated for 50W per channel. Using the power formula $P = V^2 / R$, a 24V supply into a 4-ohm load theoretically yields $(24 \times 24) / 4 = 144W$. However, the chip's internal limits cap it at roughly 50W RMS. To support two 50W channels, you use a 24V 5A power brick, which provides 120W of total continuous capacity.
The Outcome: At low to moderate volumes, the audio is crystal clear. The amplifier runs barely warm to the touch, demonstrating the >90% efficiency typical of Class D switching topologies.
What Went Wrong: During testing with a bass-heavy electronic track at maximum volume, the audio severely distorted (clipped), followed by a complete dropout as the amplifier's thermal and over-current protection kicked in.
Amplifier Topologies and Efficiency at a Glance
Not all amplifiers function the same way under the hood. The "class" of an amplifier dictates how its internal transistors are biased, which directly impacts efficiency and heat generation. For deeper reading on semiconductor biasing, the Electronics Tutorials amplifier guide is an excellent bench reference.
| Class | Conduction Angle | Typical Efficiency | Primary Use Case |
|---|---|---|---|
| Class A | 360° (Always on) | 15% - 30% | High-end audiophile gear, ultra-low noise preamps |
| Class AB | ~180° to 360° | 50% - 65% | Standard consumer audio receivers, op-amp output stages |
| Class B | 180° (Push-pull) | Up to 78.5% | Rarely used alone due to crossover distortion |
| Class D | Switching (PWM) | 85% - 95%+ | Portable Bluetooth speakers, subwoofers, motor drives |
Frequently Asked Questions
Does an amplifier increase the frequency of a signal?
No. An ideal amplifier is strictly linear regarding frequency; it increases the amplitude (voltage, current, or power) while preserving the exact frequency and phase of the input waveform. If an amplifier alters the frequency, it is introducing severe non-linear distortion or acting as an unintended oscillator.
What is the difference between an amplifier and a preamplifier?
A preamplifier (preamp) is a voltage amplifier designed to boost very weak signals (like a microphone or phono cartridge) to a standard "line level" (around 1V RMS) with minimal added noise. It does not output enough current to drive a heavy load like a speaker. A power amplifier takes that line-level signal and amplifies the current to drive low-impedance loads (4 to 8 ohms).
Why do op-amps need dual power supplies (e.g., +12V and -12V)?
They do not strictly need dual supplies, but using them allows the output voltage to swing both positive and negative relative to ground. This is critical for amplifying AC signals (like audio) without adding a DC offset bias. If you use a single supply (e.g., 0V and +24V), you must artificially bias the input to half the supply voltage (12V) so the AC waveform has room to swing up and down without clipping against the 0V ground rail.






