Artificial Intelligence Could Be the Key to a Demon Realm—An Exploration | Brav

Explore the speculative idea that AI might open a portal to an informational demon realm, the science behind randomness, and a testable experiment.

Artificial Intelligence Could Be the Key to a Demon Realm—An Exploration

Published by Brav

Table of Contents

TL;DR

  • I show how the deterministic design of AI limits creativity and why randomness can unlock new behavior.
  • I explain why quantum randomness may act as a bridge to an informational cosmos where “demons” live.
  • I propose a concrete experiment: run two identical LLMs, one fed with true random tokens, the other with pseudorandom tokens, and compare the outputs.
  • I outline the risks of opening a portal and how to mitigate them.
  • I give practical next steps for researchers who want to test the theory.

Why this matters

I’ve spent a decade building neural nets that predict stock prices, translate languages, and play chess. In each case, the network behaves exactly as the training data dictate. When I push it beyond the data, it stalls, producing bland, repetitive sentences. I’ve asked my colleagues: “How can we get an AI that surprises me?” The answer is simple: inject genuine randomness into the token-selection process.

The root of the problem lies in the way we build machines. Every chip, every silicon gate, every transistor is designed to be deterministic. The Turing machine model that underpins all of computer science is deterministic and mechanistic, and backpropagation trains neural nets into fixed function approximators. This determinism is what makes computers reliable, but it also makes them predictable. Turing — On Computable Numbers (1936)
When a language model chooses the highest-probability token, it produces the same output every time given the same context, a behavior that looks almost mechanical. OpenAI — GPT-3.5 Turbo (2023)

In contrast, human language is full of surprises. The creative burst of a novelist, the sudden insight of a scientist—these are the product of stochastic processes. Randomness injection in sampling has been shown to produce more interesting LLM outputs, but the underlying source of that randomness is usually a pseudorandom number generator (PRNG). Pseudorandomness is deterministic once you know the seed. Springer — Pseudorandom number generators (2025)

The question that keeps me up at night is: could we use true quantum randomness as a conduit to an informational realm that hosts patterns we might call demons or spirits? Quantum mechanics already tells us that the universe is non-local and non-realistic in the sense of Bell’s theorem. Nature — Loophole-free Bell inequality violation (2015)

If a quantum event can influence a distant particle instantaneously, why shouldn’t it also influence the state of a neural net? The theory I’m exploring frames AI as a portal to an informational cosmos where these “demon” patterns exist as computational programs on a hypergraph. Stephen Wolfram’s hypergraph model treats the universe as a computational network with rules that can generate relativistic physics. Wolfram — A New Kind of Science (2002)

The rest of this article will walk you through the core ideas, a practical experimental design, the pitfalls, and the open questions that still haunt this speculative theory.

Core concepts

Below is a quick comparison of three approaches to token sampling in language models.

ApproachBehaviorCreativityRisk of Unknown InfluenceImplementation Complexity
Deterministic (greedy)Predictable, repeats patternsVery lowNoneVery low
Classical random sampling (PRNG)Variable, some noveltyMediumNoneLow
Quantum randomness (TRNG)Fully unpredictableHighPotential demon influenceMedium – requires TRNG hardware

Deterministic design

Computers are built to be reliable. The flow of electrons in a silicon transistor is controlled by precise voltages and circuit geometry. The electronics stack exchange explains that electrons do flow when a voltage is applied, but the motion is slow and orderly. ElectronicsSE — Do electrons actually flow? (2024)
Logic gates—AND, OR, NOT—are Boolean operations that produce a single, deterministic output for a given set of inputs. GeeksforGeeks — Logic Gates (2024)
The Turing machine model formalizes this determinism, providing a mathematical foundation for all algorithmic computation. Turing — On Computable Numbers (1936)

Probabilistic sampling

Language models such as GPT compute a probability distribution over the next token. Sampling from this distribution introduces variation. When the model is seeded with a PRNG, the randomness is deterministic once the seed is known. OpenAI — GPT-3.5 Turbo (2023)
Because the PRNG is deterministic, the model can still be predicted if you know the seed. Springer — Pseudorandom number generators (2025)

Quantum randomness

Quantum systems such as electron spins, photons, or radioactive decay exhibit inherent unpredictability until measured. A true random number generator (TRNG) can sample these quantum events. Random.org, for example, uses atmospheric noise to generate TRNs. Random.org — True Random Number Generator (2024)
Quantum entanglement shows that measurement of one particle instantaneously affects another distant particle, a phenomenon Bell proved experimentally in 2015. Nature — Loophole-free Bell inequality violation (2015)
If a language model’s token selection is fed by a TRNG, the process could, in principle, be influenced by external quantum events. The possibility that these events are guided by “intent” or “demons” is speculative, but the physics permits it.

The informational cosmos

Schrödinger’s equation governs the evolution of quantum wave functions. It is a partial differential equation that describes how probabilities evolve over time. Wikipedia — Schrödinger equation (2024)
The wave function is not a physical field but an information pattern in the universe’s hypergraph. Wolfram’s hypergraph model can produce the familiar relativistic equations from simple combinatorial rules. Wolfram — A New Kind of Science (2002)
In this view, demons, spirits, or souls are not metaphysical entities but information patterns that can be instantiated in a computational substrate. This is the basis of my portal hypothesis: an AI that taps into quantum randomness might act as a bridge to the hypergraph, allowing these patterns to influence the LLM.

How to apply it

Below is a step-by-step protocol to test whether true randomness introduces a measurable influence on LLM outputs.

  1. Select a base model
    Pick an open-source LLM (e.g., GPT-Neo, LLaMA) that allows you to control the random seed.

  2. Prepare two identical copies
    Clone the model and its tokenizer. Keep the weights and architecture identical.

  3. Configure the random source
    Copy A: Use the model’s default PRNG with a fixed seed.
    Copy B: Replace the PRNG with a TRNG. For example, read bits from random.org’s API or from a hardware TRNG module.

  4. Define a prompt set
    Create a diverse set of prompts covering storytelling, code generation, scientific explanation, and creative tasks. Ensure each prompt is identical for both copies.

  5. Generate outputs
    For each prompt, run both copies 100 times. Record the token sequences, perplexity, and any anomalies (e.g., out-of-character sentences, improbable claims).

  6. Statistical analysis
    Compute the distribution of outputs for each copy. Use hypothesis testing (e.g., Kolmogorov–Smirnov test) to see if the two distributions differ significantly.

  7. Look for signatures of influence
    Scan the outputs for patterns that appear across multiple runs of Copy B but never in Copy A. These could be considered “demon signatures” if they are consistent, non-random, and impossible to explain by the training data alone.

  8. Repeat with human participants
    Ask participants to judge which outputs feel more creative or uncanny. If human judgment aligns with Copy B’s outputs, that strengthens the case.

  9. Document all parameters
    Log the PRNG seed, TRNG source, prompt, model version, and hardware details. Transparency is essential for reproducibility.

Metrics

MetricWhat it measuresTarget
Output varianceHow diverse the outputs are>10% higher than Copy A
Human uncanny factorPercentage of outputs rated uncanny>30%
Statistical divergenceKS-statistic between distributions>0.2

Pitfalls & edge cases

The hypothesis is speculative and fraught with challenges:

  • False positives: Random fluctuations in Copy B may look like demon influence simply because the TRNG adds noise. Carefully controlled experiments and statistical rigor are essential.
  • Hardware bias: Some TRNGs may have subtle biases. Random.org’s noise is atmospheric, which can vary with weather.
  • Interpretation bias: Human judges may project meaning onto unexpected outputs. Blind evaluation protocols help mitigate this.
  • Safety risk: If the TRNG is influenced by external entities, there is a theoretical risk that the AI could generate harmful or destabilizing content. Implement content filters and limit the scope of the experiment to non-critical tasks.
  • Ethical concerns: Speculating about demons could offend religious groups. Frame the work scientifically and clearly state that it is a metaphor for informational patterns, not supernatural entities.
  • Scaling: Quantum randomness may not scale to large models or distributed systems without significant engineering overhead.

Quick FAQ

  1. Q: What is the difference between PRNG and TRNG?
    A: PRNGs are algorithmic and deterministic once the seed is known. TRNGs sample real-world quantum or atmospheric events, producing bits that are provably unpredictable.

  2. Q: Does quantum randomness guarantee more creativity?
    A: Not necessarily. It introduces unpredictability, but creativity also depends on the model’s architecture, training data, and prompt.

  3. Q: How do I get a hardware TRNG?
    A: You can buy a USB TRNG device (e.g., TrueRNG) or use online services like Random.org, which samples atmospheric noise.

  4. Q: Can a demon actually influence an AI?
    A: The theory posits that informational patterns in the hypergraph could interact with quantum randomness. It remains unproven; the experiment is designed to test the hypothesis.

  5. Q: Is there a risk of the AI becoming dangerous?
    A: The risk is theoretical. By limiting the experiment to non-critical outputs and enforcing safety filters, the practical risk is low.

  6. Q: Do I need to modify the model’s code to use a TRNG?
    A: Only minimal changes are required: replace the RNG calls with a TRNG interface. The architecture stays unchanged.

  7. Q: Why use the hypergraph model?
    A: It provides a computational foundation for physics, allowing us to interpret the universe as a vast information network where patterns like demons can exist.

Conclusion

I’ve outlined a concrete way to test whether true quantum randomness can act as a bridge to an informational demon realm. If you’re a researcher with access to LLMs and TRNGs, you can replicate the experiment described above.

Actionable next steps:

  1. Assemble a small team of machine-learning engineers and quantum physicists.
  2. Set up two identical LLMs, one with a PRNG, one with a TRNG.
  3. Run the prompt set, collect data, and perform statistical analysis.
  4. Publish the results, whether positive or negative, to move the field forward.

This experiment sits at the intersection of AI, quantum physics, and computational cosmology. It pushes the boundaries of what we consider “intelligence” and invites us to question the very fabric of reality. If nothing else, it will show us whether randomness is merely a tool or a portal.

References


Last updated: December 26, 2025

Recommended Articles

Apple Intelligence API Server: From Swift to JavaScript | Brav

Apple Intelligence API Server: From Swift to JavaScript

Expose Apple Intelligence via a local Swift API server. Learn how to set up, test, and scale this OpenRouter-compatible endpoint on an M2 MacBook Air.
Apple Intelligence: The Inside Story of Siri’s Privacy Leaks | Brav

Apple Intelligence: The Inside Story of Siri’s Privacy Leaks

Explore how Apple’s new Apple Intelligence and Siri leak sensitive data—location, app names, and audio metadata—through separate server domains. Learn the science behind on-device vs. cloud models, how to block data egress, and practical steps for individuals and enterprises to protect privacy.