Nyquist's Theorem Explains Why Your Prompts Fail (Yes, That Nyquist)

By Mario Alexandre March 23, 2026 13 min read Advanced ResearchSignal Processing

The 75-Year-Old Answer

In 1949, Claude Shannon published "Communication in the Presence of Noise." He built on Harry Nyquist's 1928 work. Together they proved the Nyquist-Shannon sampling theorem. That theorem is the math behind all digital communication. It says this: to rebuild a signal from samples, you must take samples at least twice as fast as the signal's highest frequency.

This theorem controls every digital audio file, every digital photo, every video stream, and every phone call on Earth. It has been tested and confirmed for 75 years across every field that converts signals to numbers. It is one of the most proven results in all of engineering.

I found that it also explains why your AI prompts fail.

The Theorem

fs ≥ 2 · fmax

Here fs is how fast you sample and fmax is the highest frequency in the signal. If you sample too slowly, the output will contain aliasing artifacts. Aliasing artifacts are fake signals that were never in the original.

The formula that rebuilds the signal from samples is:

x(t) = Σ x(nT) · sinc((t - nT) / T)

This is the sinc interpolation formula. With enough samples it rebuilds the original signal perfectly. With too few samples it produces aliasing. The formula never fails. The problem is always not enough samples.

Mapping to LLM Prompts

Your intent is a continuous signal. It has 6 information dimensions. These are: who should answer (PERSONA), what situation exists (CONTEXT), what specific data matters (DATA), what rules apply (CONSTRAINTS), what shape the output should take (FORMAT), and what you want done (TASK). These are the 6 frequency bands of the intent signal.

A prompt is a set of samples taken from your intent signal. Each token in your prompt is one sample. The LLM is the reconstruction engine. It takes your samples and rebuilds an output from them.

Here is how the two systems match up:

Signal ProcessingLLM Prompting
Continuous signalYour complete intent
Discrete samplesPrompt tokens
Sampling rateSpecification completeness
Reconstruction algorithmLLM inference
Aliasing artifactsHallucination / fabrication
Nyquist rate6-band minimum coverage
Anti-aliasing filterConstraints band

The 6-Band Nyquist Rate

Your intent signal has 6 frequency bands. The Nyquist rate requires at least 6 samples, one for each band. A prompt that gives only the TASK band (1 of 6) samples at just 16.7% of the Nyquist rate. The output is mathematically guaranteed to alias.

This is not a guess. It is math. A 1-band prompt will produce fabrication. The model has to fill in 5 missing bands on its own, using patterns from its training data. The only question is how bad the aliasing will be. That depends on how far the model's defaults are from what you actually wanted.

The empirical data confirms the theory. Hallucination rate drops steadily as band coverage increases. At 6/6 band coverage it falls below 1%. The theoretical prediction and the measured data match.

Empirical Validation

I tested this mapping across 1 million Latin Hypercube simulations, 100,000 Monte Carlo samples, and 275 real production observations in my sinc-LLM research. Here are the key findings:

Why This Is Not Analogy

Analogies compare things that are only loosely alike. The Nyquist mapping to LLM prompts is not an analogy. It is a structural match where the same rules apply to both systems:

The math is the same. The formula is the same. In my research, the predictions match the observations. This is not analogy. It is applied mathematics.

Your prompts fail for the same reason audio clips distort when sampled below 44.1 kHz: not enough samples for a complex signal. The fix is the same in both cases. Sample at or above the Nyquist rate. For AI prompts that means 6 bands, no exceptions.

Transform any prompt into 6 Nyquist-compliant bands

Try sinc-LLM Free

Or install: pip install sinc-llm

// Production AI Engineering

Build AI systems that hold up in production.

sinc-LLM designs, audits, and stabilises production AI infrastructure: from vendor evaluation and cost accountability to incident controls and MCP architecture.

See what we do →