STEP 00 · WRITE
Awaiting the first transition.
Chain of Thought as computation
Transformers cannot think in one pass. Chain of Thought gives them a writable tape — each token a cell, each step a transition. Type something ordinary. Watch it become a machine.
Expanded program
This is what you would paste into any model. It forces serial writes onto a tape.
Execution
STEP 00 · WRITE
Awaiting the first transition.
qhalt · accept
The mapping
A transformer without intermediate tokens is a constant-depth circuit. It reads the prompt once and must emit an answer. That is not enough for anything inherently serial — multi-step arithmetic, planning, counting, search. Those problems need writable memory between steps.
A Turing machine is exactly that: a finite control Q, an unbounded tape Γ, and a transition δ(q, σ) → (q′, σ′, D). Chain of Thought is the same object wearing different clothes.