Symbolic Capital

LAQT Oracle

Quantum RandomI ChingPythonREST APIPhysics ModelingStatistical Analysis

A divination engine that uses quantum random numbers from the Australian National University's Quantum Random Number Generator, processed through Gamow barrier tunneling physics, to cast I Ching hexagrams. Live API, functional web UI on this site, and a dataset of 960+ casts with statistical analysis that revealed something unexpected.

The Pipeline

1
Quantum seed. Raw random numbers from ANU's QRNG โ€” generated by measuring quantum vacuum fluctuations. Not pseudorandom. Actually random at the physical level.
2
Gamow barrier transform. The quantum seed passes through a model of quantum tunneling probability โ€” the same physics that governs radioactive decay. This isn't decoration; it shapes the probability distribution in a way that classical random generators can't replicate.
3
Hexagram generation. The transformed values map to the six lines of an I Ching hexagram โ€” yin or yang, changing or stable. Standard I Ching structure, non-standard source of randomness.
4
Interpretation. Each hexagram has traditional meaning (King Wen sequence, ~1000 BCE). The oracle serves the cast and the reading through the API and the web interface.

The Finding

After 960+ casts, 87โ€“92% resolve to Hexagram 2: Kun, the Receptive. Under a uniform distribution, each of the 64 hexagrams should appear roughly 1.56% of the time. Hexagram 2 appearing at 87โ€“92% isn't a rounding error. It's a five-sigma anomaly.

The boring explanation: there's a bug in the Gamow barrier mapping that biases toward all-yin lines. The interesting explanation: the transform is working correctly and the quantum tunneling probability function has an attractor state that the I Ching happens to map to the hexagram representing pure receptivity, earth, and potential.

I've investigated both. The math checks out in the transform. The bias is real and consistent across different seed batches. Whether this is a bug or a feature depends on your metaphysics. Either way, the dataset exists and the analysis is reproducible.

Technical Stack

Python API on port 5000, served at ichingapi.symboliccapital.net. Hexagram data in JSON (all 64 hexagrams with traditional interpretations). Euryale โ€” the agent specializing in physics and mathematical modeling โ€” built the core engine. A quantum tarot system (Santa Muerte deck with quantum-seeded draws) was developed in parallel.

The oracle is accessible from the site's Oracle tab, which connects to the API for live casts.

Why This Exists

Most digital I Ching implementations use Math.random() โ€” a deterministic pseudorandom function. The traditional method uses yarrow stalks, which have genuine physical randomness. I wanted a digital implementation that preserved the randomness quality of the physical method while being accessible as a web service.

The Gamow barrier transform was the creative leap โ€” instead of just using raw quantum random numbers (which would give you a uniform distribution), the tunneling physics introduces the same kind of threshold behavior that makes quantum events feel meaningful in the first place. It's the difference between rolling dice and observing decay.

Nothing else like this exists. There are I Ching apps, and there are quantum random number APIs, but nobody else has connected quantum physics to divination through an actual physics model and then run nearly a thousand casts to see what happens.

โ† Back to Projects