Skip to content
nwthiele edited this page Nov 24, 2025 · 2 revisions

The Thiele Machine - Wiki Home Repository: github.com/sethirus/The-Thiele-Machine Author: Devon Thiele (sethirus) License: Apache 2.0 DOI: https://doi.org/10.5281/zenodo.17316437 Current as of: November 2025

What is the Thiele Machine? The Thiele Machine is a proposed universal model of computation that strictly extends the Turing Machine by introducing partition logic, certificate-driven execution, and a physically motivated cost currency called μ-bits (pronounced “moo-bits”). The core claim is that many hard problems have hidden modular (geometric) structure that classical machines are architecturally blind to. A machine that can dynamically perceive and exploit partitions can achieve exponential performance advantages while paying a quantifiable information-theoretic price (“sight costs μ-bits”). The repository is not ordinary software — it is a self-verifying scientific artifact that contains: • Formal Coq proofs (axiom-free) • Empirical experiments with cryptographic receipts • A complete Python reference VM (thielecpu/) • Verilog hardware implementations • Self-hosting bootstrap from receipts only • Falsifiability dashboards that CI enforces

Core Thesis in One Sentence Classical (Turing) machines pay for the discovery of hidden structure with time; Thiele machines pay with information (μ-bits) — creating an exponential gap on structured problems while remaining strictly more powerful.

Quick Start (Verification in < 5 minutes) git clone https://github.com/sethirus/The-Thiele-Machine.git cd The-Thiele-Machine # 1. Verify the self-hosting kernel from receipts only python3 verifier/replay.py bootstrap_receipts && sha256sum thiele_min.py # Expected: 77cd06bbb84ed8ccc4fd2949c555a8ba553d56629c88338435db65ce4d079135 thiele_min.py # 2. Run the canonical Bell thesis demonstration python3 demonstrate_isomorphism.py # 3. Re-run the core separation experiment (small) python run_partition_experiments.py --problem tseitin --partitions 6 8 10 12 14 --seed-grid 0 1 2 --repeat 3 --emit-receipts

Citation @software{thiele_machine_2025, author = {Thiele, Devon}, title = {The Thiele Machine}, year = {2025}, doi = {10.5281/zenodo.17316437}, url = {https://github.com/sethirus/The-Thiele-Machine} }

Welcome to the Thiele paradigm. This is not another software library — it is a falsifiable proposal for a new universal model of computation with measurable physical consequences. Pull requests, replication attempts, and counterexamples are all enthusiastically welcomed.

Clone this wiki locally