예술
뷰티 및 웰니스
공예
문화 및 역사
엔터테인먼트
환경
음식 및 음료
역공학
과학
스포츠
기술
웨어러블
The Turing Machine
Mark

작성자

Mark

27. 8월 2026FI
0
0
0
0
0

The Turing Machine

Every machine in this batch so far was built to do something. Alan Turing’s 1936 machine was built to prove that something could not be done, and it is not a machine anyone intended to construct — it is a definition. A tape divided into cells, a head that reads and writes one cell at a time, a finite table of rules, and a state. That is all. The astonishing part is that this austere thing can compute anything any computer can compute, which means it defines the boundary of the computable — and Turing used it to show that boundary has an outside. There are perfectly well-posed questions no machine can answer, and he proved it before a single electronic computer existed. The design that followed, with instructions living in the same memory as data, comes directly out of this abstraction.
고급
5 hours 30 minutes

안내

1

Run a Turing machine with paper and a coin

Before simulating one, be one. It takes ten minutes and it is genuinely clarifying.

  1. Draw a long row of boxes on paper — that is the tape. Write a few 1s in it and leave the rest blank.
  2. Put a coin on the leftmost box — that is the head.
  3. Write this rule table down: in state A reading 1, write 1, move right, stay in A. In state A reading blank, write 1, move left, go to state HALT.
  4. Now execute it strictly. Read the cell under the coin, look up the rule, do exactly what it says, and nothing else.

You have just added one to a number written in unary. More importantly, notice what you were NOT allowed to do: look ahead, remember anything beyond your current state, or make a decision the table did not cover.

That poverty is deliberate. Turing was not designing an efficient computer — he was stripping computation down to the least possible machinery, so that anything he proved impossible for THIS would be impossible for any machine whatsoever. The weakness of the model is the strength of the proof.

이 단계의 재료:

Graph PaperGraph Paper1 pad
Copper CoinCopper Coin1
2

The machine cycle

Four operations, repeated forever: read, look up, write and move, change state. There is no arithmetic unit, no memory addressing and no instruction set — everything a computer does has to be built out of this loop.

The last branch is the one Turing was actually after. Some machines halt, some run forever, and you might hope for a clever analyser that examines any machine and tells you which. He proved no such analyser can exist — assume one does, and you can build a machine that asks the analyser about itself and then does the opposite, which is a contradiction.

That is not a statement about our cleverness or our computers being too slow. It is a limit on computation itself, proved in 1936, and it is why your compiler cannot warn you about every infinite loop and why no antivirus can perfectly decide whether a program is malicious by analysis alone.

Flow

Loading...

필요한 도구:

Desktop ComputerDesktop Computer
3

Simulate one, and watch the tape evolve

Loading Jupyter Notebook...

필요한 도구:

Desktop ComputerDesktop Computer
4

The universal machine, and why software exists

The step that turns a mathematical curiosity into the entire computing industry.

  1. Note that each machine above is a DIFFERENT machine — a different rule table for each task.
  2. Now consider encoding a rule table as symbols ON the tape, alongside the input.
  3. Design a machine whose rules are: read the encoded table, find the rule matching the simulated state and symbol, apply it, repeat.

That machine simulates any other machine given its description. It is a universal Turing machine, and it is the reason software exists.

Before this, a machine that added and a machine that multiplied were different objects, and Babbage's engine could only ever tabulate polynomials. After it, there is ONE machine and the task is data you feed it. The distinction between hardware and software is created exactly here.

Follow the consequence: if a program is just symbols on a tape, then a program can read another program as input — which is what compilers, interpreters, virtual machines and emulators all are. It also means a program can be given ITSELF as input, and that self-reference is precisely the lever Turing used to prove the halting problem undecidable. The same property that makes software possible makes it impossible to fully analyse.

이 단계의 재료:

Graph PaperGraph Paper1 pad

필요한 도구:

Desktop ComputerDesktop Computer
5

Turing complete, and the low bar for it

Find out how little is needed to reach the ceiling of computation.

  1. List the ingredients of the machine: read/write storage, conditional branching, unbounded tape.
  2. Remove the unbounded tape and consider what a finite machine can still do.
  3. Consider whether the relay logic from earlier in this batch, plus enough memory and a conditional jump, would qualify.

Any system with conditional branching, read/write memory and no fixed limit on that memory is Turing complete — able to compute anything computable. The bar is remarkably low, which is why it is reached accidentally: spreadsheet formulas, some card games, Conway's Game of Life and several configuration languages are all Turing complete without their designers intending it.

The one honest caveat: every real machine has finite memory, so strictly it is a finite state machine rather than a Turing machine. The idealisation is useful because the memory limit is rarely the interesting constraint.

And the closing point for the batch: your relay gates, plus the flip-flops, plus the adder, plus a conditional jump, IS a general-purpose computer. Nothing further needs inventing — only assembling, and finding a memory cheap enough to build at scale. That is exactly what the second half of this batch is about.

필요한 도구:

Desktop ComputerDesktop Computer

재료

2

필요 도구

1

관련 블루프린트

이 블루프린트들은 지식을 공유합니다 — 기술, 재료 또는 원리

CC0 퍼블릭 도메인

이 블루프린트는 CC0로 공개되었습니다. 어떤 목적으로든 자유롭게 복사, 수정, 배포 및 사용할 수 있습니다.

제품 구매를 통해 메이커를 지원하세요. 판매자가 설정한 메이커 커미션 을 받거나, 이 블루프린트의 새로운 반복을 만들어 연결로 포함시킬 수 있습니다.

토론

(0)

로그인 하여 토론에 참여하세요

댓글 로딩 중...