Skip to content
RFrftools.io
Signal ProcessingMarch 12, 20266 min read

Understanding AM Modulation Index: Why It Matters and How to Calculate It

Learn how to calculate AM modulation index, sideband frequencies, bandwidth, and power efficiency with real worked examples for RF engineers.

Contents

Why Modulation Index Is the First Thing You Should Check

If you're designing, testing, or troubleshooting an AM transmitter — whether it's a broadcast station, an aviation comm radio, or a simple RFID reader — the modulation index is the single number that tells you how effectively you're using your carrier. Set it too low and your signal-to-noise ratio suffers. Push it above 1.0 and you introduce envelope distortion that splashes energy across adjacent channels.

The modulation index (often written as mm or μ\mu) connects your carrier and message amplitudes to everything downstream: sideband levels, occupied bandwidth, and the fraction of total power that actually carries information. Let's walk through the math, then run a real example using the open the AM Modulation Index Calculator.

The Core Equations

A standard double-sideband full-carrier (DSB-FC) AM signal can be written as:

s(t)=Ac[1+mcos(2πfmt)]cos(2πfct)s(t) = A_c\left[1 + m\cos(2\pi f_m t)\right]\cos(2\pi f_c t)

where AcA_c is the carrier amplitude, fcf_c is the carrier frequency, fmf_m is the message (modulating) frequency, and mm is the modulation index defined by:

m=AmAcm = \frac{A_m}{A_c}

Here AmA_m is the peak amplitude of the modulating signal. When m=1m = 1 (100% modulation), the envelope just touches zero on negative peaks — the theoretical maximum before over-modulation.

Expanding the product gives three spectral components:

  • Carrier at fcf_c with amplitude AcA_c
  • Upper sideband (USB) at fc+fmf_c + f_m with amplitude mAc2\frac{m A_c}{2}
  • Lower sideband (LSB) at fcfmf_c - f_m with amplitude mAc2\frac{m A_c}{2}
The occupied bandwidth is simply:
BW=2fmBW = 2 f_m

Power Efficiency — Where the Real Trade-Off Lives

One of AM's well-known weaknesses is that the carrier itself carries no information. The power efficiency η\eta tells you what fraction of total transmitted power is in the sidebands:

η=m22+m2\eta = \frac{m^2}{2 + m^2}

At full modulation (m=1m = 1), efficiency is only 1333.3%\frac{1}{3} \approx 33.3\%. At m=0.5m = 0.5 it drops to 11.1%11.1\%. This is exactly why SSB and DSB-SC schemes exist — but for legacy systems and standards that mandate DSB-FC (like aviation VHF AM on 118–137 MHz), knowing your actual efficiency helps you budget link margin correctly.

The sideband-to-carrier power ratio is another useful metric:

PSBPc=m22\frac{P_{SB}}{P_c} = \frac{m^2}{2}

This ratio shows up directly when you're reading a spectrum analyser and trying to back-calculate the modulation depth from the displayed carrier and sideband levels.

Worked Example: Aviation VHF COM Transmitter

Let's say you're bench-testing a 25 kHz channel-spaced aviation transceiver. The carrier frequency is fc=121.5 MHzf_c = 121.5\ \text{MHz} (the emergency frequency), and you're applying a fm=3 kHzf_m = 3\ \text{kHz} tone — a standard audio test signal. Your carrier amplitude is Ac=10 VA_c = 10\ \text{V} (peak, into a 50 Ω load), and you set the audio drive so Am=8 VA_m = 8\ \text{V} peak.

Modulation Index:
m=810=0.80(80%)m = \frac{8}{10} = 0.80 \quad (80\%)
Sideband Frequencies:
fUSB=121.5 MHz+3 kHz=121.503 MHzf_{USB} = 121.5\ \text{MHz} + 3\ \text{kHz} = 121.503\ \text{MHz}
fLSB=121.5 MHz3 kHz=121.497 MHzf_{LSB} = 121.5\ \text{MHz} - 3\ \text{kHz} = 121.497\ \text{MHz}
Bandwidth:
BW=2×3 kHz=6 kHzBW = 2 \times 3\ \text{kHz} = 6\ \text{kHz}

This fits comfortably inside the 25 kHz channel — good.

Power Efficiency:
η=0.8022+0.802=0.642.6424.2%\eta = \frac{0.80^2}{2 + 0.80^2} = \frac{0.64}{2.64} \approx 24.2\%

So roughly three-quarters of your transmitter power is going into the carrier and contributing nothing to the demodulated audio. If total transmitter power is 5 W, only about 1.21 W is in the sidebands.

Sideband-to-Carrier Ratio:
PSBPc=0.642=0.32(4.95 dB)\frac{P_{SB}}{P_c} = \frac{0.64}{2} = 0.32 \quad (-4.95\ \text{dB})

On a spectrum analyser, each individual sideband will appear m2=0.40\frac{m}{2} = 0.40 relative to the carrier in voltage, which is 20log10(0.40)7.96 dB20\log_{10}(0.40) \approx -7.96\ \text{dB} below the carrier. That's a quick sanity check you can do right at the bench.

You can verify all of these numbers instantly — just open the AM Modulation Index Calculator and plug in Ac=10A_c = 10, Am=8A_m = 8, fc=121.5 MHzf_c = 121.5\ \text{MHz}, fm=3 kHzf_m = 3\ \text{kHz}.

Practical Tips and Common Pitfalls

Over-modulation (m>1m > 1): The envelope clips, generating harmonics of fmf_m that extend the occupied bandwidth well beyond 2fm2 f_m. Regulatory bodies (FCC, ICAO) will not be amused. If your modulation index calculator returns a value above 1.0, reduce your audio drive or increase carrier power. Composite modulation: Real audio isn't a single tone. When multiple frequencies modulate the carrier simultaneously, the effective modulation index is meff=m12+m22+m_{eff} = \sqrt{m_1^2 + m_2^2 + \cdots}. Make sure meff1m_{eff} \leq 1. Measuring mm from an oscilloscope: If you can see the AM envelope, measure the maximum envelope AmaxA_{max} and minimum envelope AminA_{min}, then:
m=AmaxAminAmax+Aminm = \frac{A_{max} - A_{min}}{A_{max} + A_{min}}

This is often more practical than trying to isolate AmA_m and AcA_c separately.

Link budget impact: Because AM efficiency is inherently low, you need to account for the full transmitter power when calculating heat dissipation and PA sizing, but only the sideband power when computing receiver SNR. Confusing the two is a common source of 3–5 dB errors in link budgets.

Try It

Whether you're verifying a transmitter on the bench, doing a link budget, or just brushing up on AM fundamentals, the calculator handles the tedious parts so you can focus on design decisions. Plug in your carrier and message parameters and get modulation index, sideband frequencies, bandwidth, power efficiency, and sideband-to-carrier ratio in one shot.

Open the AM Modulation Index Calculator and run your own numbers.

Related Articles