Amplitude modulation (AM) is a technique where the peak voltage (amplitude) of a high-frequency carrier wave is varied in direct proportion to the instantaneous voltage of a lower-frequency information signal. In a physical RF transmitter circuit, applying AM fundamentally changes your hardware design: it forces the final amplifier stage to operate linearly to preserve the signal's envelope, meaning you must abandon highly efficient switching amplifiers (Class D or E) in favor of linear bipolar or LDMOS transistors biased in Class A or AB.
The Core Mechanism: Multiplying Two Waveforms
At the silicon level, an AM modulator is essentially an analog multiplier. You feed it two inputs: a high-frequency carrier wave ($f_c$) and a low-frequency modulating signal ($f_m$). The output is the mathematical product of the two.
When you multiply a 1 MHz sine wave by a 5 kHz sine wave, you don't just get a single new frequency. Thanks to trigonometric identities (specifically the product-to-sum formulas), the output splits into three distinct frequency components:
- The Carrier ($f_c$): The original 1 MHz signal, which actually carries zero information but consumes the most power.
- The Upper Sideband (USB): The sum of the frequencies ($f_c + f_m$).
- The Lower Sideband (LSB): The difference of the frequencies ($f_c - f_m$).
All the actual intelligence—your voice, telemetry, or digital bits—lives exclusively in the sidebands. The carrier is just a structural scaffold that makes the signal easier to demodulate at the receiver using a simple envelope detector (a diode and a capacitor).
Worked Numeric Example: Calculating AM Sidebands and Power
Let's look at the math you'd actually use when tuning a bench transmitter or analyzing a spectrum analyzer trace. Assume we are building a simple AM beacon.
- Carrier Frequency ($f_c$): 1000 kHz (1 MHz)
- Audio Tone ($f_m$): 5 kHz
- Carrier Power ($P_c$): 100 Watts
- Modulation Index ($m$): 0.8 (or 80% modulation depth)
First, we find the frequencies present in the RF spectrum:
- Upper Sideband: $1000 + 5 = 1005 ext{ kHz}
- Lower Sideband: $1000 - 5 = 995 ext{ kHz}
- Total Bandwidth: $2 imes f_m = 10 ext{ kHz}
Next, we calculate the total transmitted power ($P_t$). In AM, the total power increases as you increase the modulation depth, following the formula $P_t = P_c(1 + m^2/2)$.
$P_t = 100 imes (1 + (0.8^2 / 2))$
$P_t = 100 imes (1 + 0.32)$
$P_t = 132 ext{ Watts}$
Where does that extra 32 Watts go? It is split equally between the two sidebands. Each sideband contains exactly 16 Watts of power. This highlights a major inefficiency of standard double-sideband AM (DSB-FC): 75.7% of your total transmitted power is wasted on the unmodulated carrier, and the remaining power is split across two redundant sidebands. This is why modern embedded RF systems often strip the carrier (DSB-SC) or one sideband (SSB) to save battery and spectrum.
Where You Meet Amplitude Modulation in Practice
While commercial AM broadcast radio (530–1700 kHz) is the most famous example, you will encounter amplitude modulation in several critical modern applications:
- Aviation VHF Communications: Air traffic control radios operate between 118.000 MHz and 136.975 MHz using AM, not FM. Why? AM does not suffer from the "capture effect." In FM, if two pilots transmit at once, the receiver locks onto the stronger signal and completely mutes the weaker one. In AM, both signals heterodyne together in the receiver, allowing the controller to hear that two people are talking and preventing critical safety messages from being silently blocked.
- Quadrature Amplitude Modulation (QAM): If you are using WiFi 6/7 or a modern cable modem, you are using QAM. QAM combines Amplitude Modulation with Phase Modulation on two carriers 90 degrees out of phase. A 1024-QAM scheme uses 1024 distinct combinations of amplitude and phase to pack massive amounts of digital data into a narrow RF channel.
- RFID and NFC: Low-frequency (125 kHz) and high-frequency (13.56 MHz) RFID tags often use Amplitude Shift Keying (ASK), which is simply digital AM where the carrier is turned fully on and off (100% modulation index) to transmit binary data to a reader.
Common Confusions: AM vs. FM and AM vs. PWM
When working at the bench, two confusions constantly trip up hobbyists and junior engineers.
1. AM vs. Pulse Width Modulation (PWM): Makers frequently assume that using an Arduino's analogWrite() function to dim an LED or control a motor is "amplitude modulation." It is not. PWM is a baseband digital technique that varies the duty cycle (time on vs. time off) of a fixed-frequency square wave to control average DC power. AM is a passband RF technique that varies the peak voltage envelope of a continuous high-frequency sine wave to encode data for wireless transmission. PWM switches a MOSFET fully on or off; AM requires the MOSFET to operate in its linear (active) region.
2. AM vs. Frequency Modulation (FM): In FM, the amplitude remains perfectly constant while the frequency wiggles. Because the amplitude is constant, FM transmitters can use highly efficient non-linear Class C or Class E amplifiers, and FM receivers can use hardware limiters to clip off amplitude noise (static from lightning or motors). AM preserves the amplitude, meaning any electrical noise that alters the voltage spike is directly demodulated as audio static. For a deeper dive into the mathematical differences between these modulation schemes, the Electronics Notes modulation guide provides excellent spectrum comparisons.
Frequently Asked Questions
How does amplitude modulation affect transmitter power consumption?
AM drastically increases peak power consumption compared to an unmodulated carrier. At 100% modulation ($m=1.0$), the peak envelope power (PEP) is four times the carrier power, and the average total power increases by 50%. Your transmitter's power supply and heat sinking must be sized for the PEP, not the nominal carrier power, or your final amplifier transistors will suffer thermal runaway and fail.
Why is AM more susceptible to noise than FM?
Most environmental electrical noise (spark plugs, switching power supplies, lightning) manifests as sudden spikes in voltage amplitude. Because an AM receiver's envelope detector specifically looks for changes in voltage amplitude to recover the audio, it cannot distinguish between your intended signal and a noise spike. FM receivers, conversely, use limiter circuits to clip off amplitude variations before the discriminator stage, effectively ignoring amplitude-based noise. You can read more about receiver noise rejection in the All About Circuits RF textbook chapter on modulation.
Can I generate AM using an Arduino or ESP32?
Not directly via standard GPIO pins, as they only output 0V or 3.3V digital square waves (which is ASK/PWM, not true analog AM). However, you can generate true AM by pairing an ESP32 with an external Digital-to-Analog Converter (DAC) or an analog multiplier IC like the AD633. You use the ESP32's internal DAC to generate the low-frequency modulating waveform, feed it into the multiplier alongside a high-frequency oscillator signal, and output the resulting AM waveform. For high-frequency RF AM, you would typically use a dedicated Software Defined Radio (SDR) peripheral rather than raw microcontroller pins.






