Revision · Why Bitcoin Exists
Part 0 was the why: it made the problem hurt before any machinery arrived. The throughline is one question you were told to tape to your monitor — how do untrusting strangers agree on one ledger? — and every page was an obstacle to answering it or a failed attempt at doing so.
What this part covered
Section titled “What this part covered”- Money is a shared ledger — strip away coins and cash and every monetary system is just an agreed record of who owns what, so “make digital money” is really “make everyone agree on a ledger.”
- The double-spend problem — digital bits are infinitely copyable, so a naive coin can be spent twice; a serial number only detects copies, it can’t decide which spend came first, which forces you to agree on an ordered ledger.
- The trust problem — one central keeper solves double-spends cleanly but buys it with total trust: the power to censor, inflate, fail, and be coerced, and spreading it across a federation only relocates the difficulty.
- The Byzantine Generals Problem — reaching agreement when some participants lie and messages can be forged is provably hard (you need 3f+1 nodes), and classic BFT solutions like PBFT assume a known member list an open network can’t provide.
- The Sybil attack — if identities are free to mint, one-node-one-vote collapses because an attacker fabricates a fake majority for pennies, so influence must be made expensive and unforgeable.
- The predecessors — DigiCash brought privacy, Hashcash brought Proof of Work, b-money brought a distributed ledger, and bit gold brought chained scarcity; each held a real piece but none combined them into agreement in an open network.
- Nakamoto consensus — Satoshi’s synthesis: make influence cost real energy via Proof of Work, and define truth as the history with the most accumulated work, defeating Sybil and Byzantine faults at once.
- Probabilistic finality is enough — you don’t need instant, perfect consensus, only consensus that grows exponentially expensive to reverse as blocks pile on top (≈6 blocks is treated as settled).
The takeaway
Section titled “The takeaway”Bitcoin isn’t primarily about cryptography, coins, or mining — those are all machinery in service of one goal: letting mutually distrustful strangers converge on a single ledger with no central authority. Once you feel why that was unsolved for three decades, the rest of the course reads as the how. Next we build the toolkit from the ground up, starting with the cryptographic primitives Bitcoin is assembled from.