Unique IP
LAQT Oracle
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
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.