Aliased Frequency Calculator

Calculate the aliased (folded) frequency when an input signal exceeds the Nyquist limit of a given sampling rate. Shows the Nyquist zones and where the input lands.

Calculator Electronics Updated Apr 18, 2026
How to Use
  1. Enter the sampling rate (fs) and an input frequency (fi).
  2. The tool identifies the Nyquist zone of fi and folds it into the baseband (0 to fs/2).
  3. Signals within 0 to fs/2 pass unchanged; above fs/2 they alias down to false frequencies.
  4. Prevent aliasing with an anti-alias filter before the ADC.
Input
Hz (kHz, MHz OK)
Hz (kHz, MHz OK)
Presets
Nyquist Zones
Aliased f
Nyquist Zone
Nyquist Limit
Status

Show Work

Enter values to see aliasing analysis.

Formulas

Nyquist Limit
f_N = f_s / 2
Highest representable frequency.
Nyquist Zone
zone = floor(f_i / f_N) + 1
Which band of width fs/2 contains the input.
Aliased (odd zone)
f_a = f_i mod f_s
When zone is odd, alias straightens.
Aliased (even zone)
f_a = f_s − (f_i mod f_s)
When zone is even, alias flips (mirror).
Nyquist Theorem
f_s ≥ 2 × f_max
Required sample rate for perfect reconstruction.
Undersampling
f_s = 2 × BW
For known-bandwidth signals in higher zones.

History of Aliasing

Aliasing was first documented in practical engineering by Harry Nyquist in his 1928 paper on telegraph transmission theory — he showed that reconstructing a signal from samples requires the sample rate to exceed twice the highest signal frequency. Claude Shannon\'s 1949 sampling theorem paper formalized the reconstruction condition and explicitly worked out the aliasing phenomenon for violations of the Nyquist condition.

The "wagon wheel" phenomenon in movies — wheels appearing to stand still or rotate backward — is the same physics as electronic aliasing. At 24 frames per second, rotations above 12 rev/s produce aliased perceived rotation. This visual example is how signal-processing instructors have explained aliasing to students for 70+ years.

Anti-alias filters became critical infrastructure as digital audio matured in the 1970s. Early CD players paired analog brick-wall anti-alias filters with 44.1 kHz sampling; modern audio ADCs use Σ-Δ oversampling with digital decimation, moving the sharp filter skirt from the analog domain (expensive, bulky) into DSP code (cheap, programmable). Intentional aliasing also found productive use: bandpass sampling in software-defined radio lets a properly-filtered high-frequency signal fold into baseband for easier digital processing.

About This Calculator

Enter a sampling rate and an input frequency. The tool computes which Nyquist zone the input sits in, whether it falls inside the baseband or aliases, and if it aliases, where it appears in the 0 to fs/2 band. Odd-zone inputs fold "straight" (same order); even-zone inputs fold "mirrored" (reversed order).

Useful for: diagnosing mystery spectral lines in digitized signals, designing bandpass-sampling receivers (picking fs to land a target band in a useful alias position), and verifying that your anti-alias filter has adequate attenuation above the frequency at which aliased content would become a problem. All math runs client-side.

Frequently Asked Questions

What is Nyquist rate?

The minimum sample rate for unambiguous reconstruction of a bandlimited signal. fs ≥ 2 × f_max. The Nyquist limit (f_s/2) is the highest frequency that can be represented without aliasing.

What is aliasing?

When you sample a signal above the Nyquist limit, the digital representation can't tell it apart from a lower frequency (the "alias"). A 600Hz signal sampled at 1000Hz shows up as 400Hz (1000−600) — the true signal is indistinguishable from this alias.

What are Nyquist zones?

The frequency axis is divided into bands of width fs/2. Zone 1: 0 to fs/2. Zone 2: fs/2 to fs. Zone 3: fs to 3fs/2. Each zone folds into Zone 1 as an alias. Zone 2 flips (mirrors), Zone 3 straightens, Zone 4 flips, etc.

Can aliasing ever be useful?

Yes — in undersampling and bandpass sampling. If you know your signal is contained in a higher Nyquist zone, you can sample slower than Nyquist and the signal aliases down to baseband, simplifying digitization. Used in RF downconverters and direct IF sampling.

How do I prevent aliasing?

Use an anti-alias filter (low-pass) before the ADC. Cutoff at or below fs/2 with enough stopband attenuation (typically 60-100 dB) to reduce above-Nyquist content below the noise floor. Σ-Δ ADCs have built-in anti-alias filters that operate in the digital domain.

Common Use Cases

Audio Recording

CD sampling at 44.1 kHz can represent up to 22.05 kHz. An anti-alias brick-wall at 20 kHz prevents higher frequencies from folding into the audio band.

Oscilloscope Trace Aliasing

A 100MHz scope sampling at 200 MS/s shows a 150MHz sine as a 50MHz trace. Always sample at 5-10× the highest frequency for accurate display.

Radar Doppler

Pulsed radar with a PRF of 1 kHz can only unambiguously measure Doppler shifts < 500 Hz. Higher shifts fold back ambiguously.

Bandpass Sampling

Sample a 455 kHz IF at 100 ksps: lands in Zone 5, aliases to 55 kHz baseband. Saves DSP effort vs. direct high-frequency sampling.

Strobe vs Wheel

Movie cameras at 24 fps sampling a spinning wheel: at 24 rev/s the wheel appears stopped; above that it appears to rotate backward. Same physics as electronic aliasing.

Last updated: