MASTERING-BITCOIN
| Concept | Rule / Formula | Meaning |
|---|---|---|
| Multisig | A transaction needs signatures out of total keys | |
| Loss risk (M-of-N) | Lose funds if more than keys are lost | |
| Theft risk (M-of-N) | Stolen if an attacker obtains at least keys | |
| Hot wallet rule | Keep only "pocket change" connected to the internet | |
| Redundant backups | With independent copies, all must fail |
Here = probability a single key/backup is lost, and = probability a single key is stolen.
A multisignature wallet requires signatures out of total keys. The choice of the threshold is a trade-off:
Explore: For a fixed number of keys , how does the threshold shift the risk of self-inflicted loss versus external theft?
⚙ interactive visualization — coming to this page format soon
Reflect: As increases, the loss curve rises (you need more keys to survive) while the theft curve falls (an attacker needs more keys). The "sweet spot" is where both risks are acceptably low — often 2-of-3 for a single person or small company. Notice how a 3-of-3 setup minimizes theft but can make loss very likely if a single key fails. There is no setting that drives both risks to zero — security is about balance.
You wouldn't carry your entire net worth as cash. The same logic applies to Bitcoin:
Explore: Adjust the allocation. When does your hot wallet hold more than the safe "pocket change" threshold?
⚙ interactive visualization — coming to this page format soon
Notice: No single failure — a stolen phone, a corrupted desktop, a misplaced hardware wallet — can wipe you out when your holdings are tiered. The dashed line marks the 5% hot-wallet ceiling: cross it and you're keeping too much of your net worth in the most exposed tier.
In July 2011, an education project lost ~7,000 BTC. They had backups — copies A, B, and C, all intact. But every copy was encrypted with a single key, and that key was lost. One missing key turned every backup into useless noise.
This visualization compares two schemes as you add more redundant copies:
Explore: Does adding more copies actually protect you when they all share one key?
⚙ interactive visualization — coming to this page format soon
Reflect: With separate keys, loss probability plummets toward zero as you add copies. With one shared key, the red curve flattens onto a floor equal to the single-key failure probability — exactly the 2011 disaster. A real backup isn't just redundant copies of data; it's redundant ways to actually open it. Always back up the spending conditions (the script), not just the keys — with multisig or complex wallets, the key alone cannot move your coins.
Question 1
A company sets up a 2-of-3 multisignature wallet, with each of three keys held by a different executive in a different location. One executive's key is destroyed in a fire.
Can the company still recover and move its Bitcoin?
✅ Correct! Two of the three keys satisfy the 2-of-3 threshold.
❌ Not quite. In M-of-N you only need M keys — here just 2 of 3.
Solution:
A multisig needs any 2 of the 3 keys to authorize a transaction.
So the funds are safe and recoverable.
Question 2
In the July 2011 incident, an education project lost ~7,000 BTC even though they had multiple intact backups (copies A, B, and C).
What was the actual cause of the loss?
✅ Correct! A single lost key made every backup unusable.
❌ Not quite. It wasn't theft or drive failure — the coins were safe but unreachable.
Solution:
This is the backup paradox: securing too hard can create a single point of failure.
It was loss, not theft — self-inflicted by over-engineered complexity. A good backup needs redundant ways to open it, not just redundant copies of the data.
Question 3
You use a wallet with multisignature spending conditions. You carefully back up your private key (seed phrase), but you do not back up the spending conditions (the script).
True or False: Your private key alone is always enough to spend the funds.
✅ Correct! With multisig/complex scripts, the key alone cannot spend.
❌ Not quite. The network requires the spending conditions too — not just the key.
Solution:
False. For a simple single-key wallet, the seed phrase is enough. But modern wallets use spending conditions — small scripts defining the rules to move coins.
When you broadcast a transaction, the network demands both:
Provide only the key, and the transaction is rejected. Lose the script, and your funds become unspendable even with the key in hand. So: back up the rules, not just the keys.
Question 4
You follow the advice "never share your keys, trust no one," holding a single key that only you can access. Years later you pass away unexpectedly.
Which problem does this scenario illustrate, and what is the best fix?
✅ Correct! Total secrecy guarantees loss the moment you're gone.
❌ Not quite. The danger here is loss through inaccessibility, not theft or price.
Solution:
This is the availability problem: keys only you can access die with you. The coins are secure but unreachable by the heirs who should inherit them — and your family may not even know the Bitcoin exists.
The sophisticated fix combines controlled sharing with multisig:
Controlled sharing through multisig is more secure overall than telling absolutely no one.
The goal isn't paranoia — it's balance: security where neither theft nor loss can wipe you out.
Solved: 0 / 4