Question
What is a blockchain, and what problem did Bitcoin first solve with it?
Answer
A blockchain is a shared, append-only ledger replicated across many independent computers; Bitcoin used it to let strangers transact peer-to-peer without any bank or central authority in the middle.
Before Bitcoin, sending value online always required a trusted intermediary (a bank, a payment processor) to keep the books and prevent you from spending the same money twice. The pseudonymous author "Satoshi Nakamoto" published the Bitcoin white paper describing how a network of participants could instead agree on one shared history of transactions using cryptography and economic incentives — no central operator, and no single point that can be censored or shut down. Because the supply is fixed and the ledger is hard to rewrite, many people treat Bitcoin as a scarce "digital gold" store of value. The deeper breakthrough, though, is the coordination mechanism itself: a way for mutually distrusting parties to agree on a single truth. That mechanism is what everything else in this topic builds on.
Go deeper:
Learn Blockchain, Solidity & Full Stack Web3 — freeCodeCamp — the 32-hour Patrick Collins course; its opening lesson walks these foundations end to end.
Bitcoin: A Peer-to-Peer Electronic Cash System (Satoshi Nakamoto) — the original nine-page white paper that first solved double-spending without a bank.
Blockchain — Wikipedia — broad overview of the shared-ledger data structure and its history.
Note saved — thanks!
Question
What does "decentralization" mean for a blockchain, and why does it matter?
Answer
No single party runs the system — thousands of independent nodes each hold a copy and enforce the rules — so there is no one to bribe, censor, or unilaterally change the state.
In a centralized service, one company controls the servers, so it can freeze your account, reverse a transaction, or quietly change the rules in its own favour. A decentralized network removes that single point of control: many independent operators run identical software, and the state only changes when the majority agrees it followed the rules. This is what lets a blockchain offer trust-minimized agreements — you no longer have to trust a company's promise, because the outcome is enforced by code and cryptography that everyone can inspect. The phrase to remember is a shift "from brand-based to math-based" trust: instead of hoping an institution behaves, you can read the rules and know they execute the same way every time.
Go deeper:
Blockchain — Wikipedia — the sections on decentralization and how thousands of independent nodes replace a single operator.
Note saved — thanks!