What is Bitcoin, really?
A working mental model of Bitcoin in plain English — what it is, why it works, and what it isn't.
Bitcoin is a way for two people who don't know each other to send money over the internet without asking anyone for permission. That's the whole pitch. Everything else — the price, the politics, the technology — is downstream of that one capability.
The simplest possible version
Imagine a shared spreadsheet that lists who owns how much money. Anyone can read it. Anyone can add a row that says 'I'm sending 0.1 to that address.' But to add a row, you have to prove you actually own the money — you do that with a digital signature only you can produce.
The trick is that no single person controls the spreadsheet. Tens of thousands of computers around the world each keep their own copy and agree on what the next page should look like roughly every 10 minutes. They agree by following a fixed set of rules — which transactions are valid, which are not, who gets paid for doing the bookkeeping work.
That set of rules is the Bitcoin protocol. The shared spreadsheet is the blockchain. The bookkeepers are called miners. That's it.
Why anyone bothered to build this
Bitcoin was published as a paper in October 2008 by someone using the name Satoshi Nakamoto. The financial crisis was peaking. The first block, mined in January 2009, contained a headline from that day's newspaper: 'Chancellor on brink of second bailout for banks.' That choice of headline is the closest thing Bitcoin has to a mission statement.
The motivating question was simple: can we build a money system where you don't have to trust a bank, a government, or a payment company to not freeze your account, debase the currency, or block a transaction they don't like?
What makes it actually work
- Fixed supply. Only 21 million bitcoin will ever exist. The schedule is enforced by the rules every node verifies; nobody can vote to print more.
- Proof of work. To add a new block, miners burn real-world energy solving a math puzzle. This makes rewriting history prohibitively expensive once a transaction is deep in the chain.
- Public verification. You don't trust miners — you verify their work. A laptop with a copy of the blockchain can re-check every transaction since 2009.
- Open participation. Anyone with internet access can run a node, send a transaction, or mine. There is no whitelist.
What it isn't
Bitcoin is not anonymous — every transaction is public forever. It is pseudonymous, which is different. Forensic firms routinely trace flows back to identifiable people.
Bitcoin is not fast in the way Visa is fast. The base layer settles roughly every 10 minutes and processes a few transactions per second globally. That's a deliberate trade-off for security and decentralization. For coffee-purchase speed, you use a layer on top — Lightning is the most established.
Bitcoin is not run by a company. There is no CEO, no shareholders, no headquarters. Changes to the protocol happen by rough consensus among developers, miners, node operators, and users — and they happen slowly, on purpose.
Where to go from here
If you want to actually use Bitcoin: read 'Custody: hot, cold, and in-between' next. If you want to understand the data structures that make it work: 'UTXOs vs. account models' is your next stop. If you want to see how it scales: 'Lightning, channels, and routing'.