第12讲 工作量证明与挖矿
Lesson 12: Proof of Work and Mining
💡 Imagine a village where everyone is searching for gold, but the gold is buried underground and requires constant digging to find. Whenever someone finds gold, the whole village applauds, because it proves they truly put in the work. This is the real picture of Bitcoin mining.
Recommended exchange for buying BTC / ETH / USDT: Binance Registration Link
Table of Contents
Introduction: Why mine cryptocurrency?
Have you ever wondered: in the digital world, how do you prevent someone from printing counterfeit money?
In the real world, governments control the printing press, and anyone who prints money illegally gets arrested. But Bitcoin has no government, no bank, no central authority. So who prevents cheating?
Satoshi Nakamoto came up with a brilliant solution: let everyone compete through mining!
💡 Think About It
Before learning about mining, consider:
- If your class needs to elect a monitor but there's no teacher to supervise, how do you ensure a fair election?
- If a village needs to decide something but has no chief, how do you reach consensus?
- Why is mining gold expensive, but copying a file is cheap?
From Printing Money to Mining Bitcoin
Traditional currency (government printed money):
Government says: I'll print the money, and everyone must accept it
Citizens: Fine, we trust the government won't over-print
Bitcoin (everyone mines):
Network says: Whoever mines a block gets to record transactions and earn rewards
Miners: OK, we'll compete with computers — the most powerful wins
This is the core of mining: replacing governmental authority with computational labor.
Mining Principles: A Gold Rush in the Digital World
Mining Is Like Panning for Gold.
Imagine ancient gold prospectors:
- They sift through sand in the river, hoping to find gold.
- Most of the time it's just sand, only occasionally do they find gold.
- The one who finds gold can sell it for money.
- Everyone knows it's real gold because the cost of faking it is too high.
Bitcoin mining is the digital version of gold panning:
Traditional gold panning:
Sand + River + Labor → Occasionally find gold
Bitcoin mining:
Data + Nonce + Computation → Occasionally find "digital gold"
What is "Digital Gold"?
In the Bitcoin world, "gold" is a special number: a hash value starting with many zeros.
For example, the network requires finding a hash starting with 18 zeros:
Need to find: 000000000000000000... (anything after)
Not this: 123456789abcdef... (not enough zeros)
Why Is It So Hard to Find?
A hash function is like a magic box:
- Whatever you put in, the result is random.
- You can't predict the result, you can only try one by one.
- Just like rolling dice, each roll may produce a different result.
The actual mining process:
Attempt 1: "block data + 1" → hash → 123abc... (doesn't qualify)
Attempt 2: "block data + 2" → hash → 789def... (doesn't qualify)
Attempt 3: "block data + 3" → hash → 456ghi... (doesn't qualify)
...
Attempt 999,999: "block data + 999,999" → hash → 000000... (success!)
It's like rolling dice non-stop until you get six sixes in a row!
Verification is simple, finding is difficult.
This is the clever design of mining:
- Finding the answer is hard: Requires countless attempts and massive electricity.
- Verifying the answer is easy: Anyone can verify it instantly.
Like:
- Creating an exam is hard: The teacher thinks for a long time.
- Checking answers is easy: Just compare with the answer key.
Exponential Difficulty
Bitcoin's difficulty adjustment demonstrates exponential computational complexity:
| Leading Zeros | Search Space Reduction | Average Attempts |
|---|---|---|
| 1 zero | 1/16 | ~16 times |
| 2 zeros | 1/256 | ~256 times |
| 3 zeros | 1/4,096 | ~4,096 times |
| 20 zeros | 1/2^80 | ~10^24 times |
The current Bitcoin network difficulty is equivalent to finding a hash with about 19 leading zeros, requiring an average of 10^22 attempts.
Mining Algorithm and Block Header: What Are Miners Actually Computing?
Bitcoin uses SHA-256 for proof of work, leveraging the hash function's randomness and easy verifiability.
Key properties of SHA-256:
- Mature and stable: Extensively researched and used.
- Highly secure: Extremely difficult to reverse engineer the input.
- Computationally intensive: Essentially can only be solved by "brute-forcing."
- Memoryless: Each attempt is independent and you can only keep trying random numbers.
Block Header Structure: An 80-Byte Math Game
Miners typically change the Nonce (random number) repeatedly, hashing the fixed-length block header in an attempt to "get lucky" and hit a result that meets the difficulty target.
[Version 4B][Previous Block Hash 32B][Merkle Root 32B][Timestamp 4B][Difficulty 4B][Nonce 4B]
Design concepts:
- Nonce space: 4 bytes provide 2^32 ≈ 4.3 billion possibilities.
- Extended space: When the nonce is exhausted, the timestamp or Merkle root can be modified.
- Fixed length: Ensures hash computation consistency and predictability.
Security: Why is a 51% Attack so hard?
The "expense" of proof of work is essentially paying for network security: anyone wanting to act maliciously must bear extremely high hardware and electricity costs.
Cost to control 51% of hash power = (51% of total hash power × ASIC unit price) + electricity costs
Moreover, a successful attack would destroy market confidence, causing the attacker's own investment to rapidly depreciate, making "acting maliciously" economically unviable.
Mining Equipment: The Evolution from Shovels to Excavators
Moore's Law on the Evolution of Computing Power
The evolution of mining hardware reflects the economic law of specialization:
Four technological eras:
| Era | Representative Hardware | Hash Rate | Energy Efficiency | Economic Characteristics |
|---|---|---|---|---|
| CPU | Intel Core i7 | 20 MH/s | 0.15 MH/J | General computing, low barrier |
| GPU | AMD HD5970 | 600 MH/s | 2.0 MH/J | Parallel computing, good cost-efficiency |
| FPGA | BitForce | 832 MH/s | 10.4 MH/J | Programmable and dedicated, expensive |
| ASIC | Antminer S21 | 200 TH/s | 56 GH/J | Dedicated chips, ultimate efficiency |
The Irreversibility of ASIC implementation
Specialization spiral:
Increased competition → Declining margins → Higher efficiency demands → Specialized hardware needed → Further specialization
Economic consequences:
- Entry barrier: From a few hundred dollars to several thousand dollars.
- Geographic concentration: Concentrating resources toward regions with low electricity costs.
- Economies of scale: Large-scale mines have a clear cost advantage..
- Technology dependency: A few chip manufacturers control hardware supply.
Energy Efficiency Limits
ASIC chip efficiency improvements are approaching physical limits:
Technology roadmap:
- 7 nm process: Current mainstream, ~50 J/TH efficiency.
- 5 nm process: Next-generation target, expected 70-80 J/TH.
- 3 nm process: Theoretical limit, efficiency may exceed 100 J/TH.
Physical constraints:
- Thermodynamic limits: Computation inevitably generates heat.
- Quantum tunneling effects: Limits transistor size reduction.
- Economic feasibility: Trade-off between manufacturing cost and performance gains.
Mining Pools: The Wisdom of Collective Effort
Why Form Mining Pools?
Imagine buying lottery tickets:
Buying alone:
- You buy 1 ticket per week; you might not win for several years.
- But if you win, the prize is all yours.
- Risk: You may never win.
Forming a lottery group:
- 100 people each contribute $1, buying 100 tickets per week.
- Winning probability increases 100x, but the prize is split into 100 shares.
- Benefit: Regular small payouts.
A mining pool is a "mining lottery group":
Solo mining:
Small miner: My single machine might not mine a block all year
Risk: Electricity bills keep coming, but possibly zero income
Joining a pool:
Pool: Everyone mines together; if we find a block, we split the reward
Small miner: I get less per share, but I have daily income
Pool Reward Distribution: More Work = More Pay
Mining pools have several reward distribution methods, like different wage systems:
🏭 Piece-rate system (PPS):
- Pay based on work done, guaranteed steady income.
- Suitable for miners wanting stable income.
- Pool operator bears the luck risk.
🎲 Performance-based commission system (PPLNS):
- Everyone shares when the company profits.
- Income fluctuates with company performance.
- Incentivizes encourage long-term cooperation.
💰 Full-inclusive benefit plans (FPPS):
- Not only do they share mining rewards, but they also share transaction fees.
- Highest income, but higher pool fees.
- Suitable for large professional miners.
Are Mining Pools Really Safe?
Joining a pool has benefits but also risks:
🤝 Benefits:
- Stable income, daily payouts.
- Low technical barrier, no self-management needed.
- Risk diversification, no fear of individual bad luck.
⚠️ Risks:
- A transaction fee (usually 2% - 4%) needs to be paid to the mining pool.
- Pool could disappear, wasting your hash power.
- Over-concentration of hash power, impacting network security.
Selection advice:
- 🥇 Large pools: Stable income, but watch for monopolization.
- 🥈 Medium pools: Balance between earnings and decentralization.
- 🥉 Small pools: Support decentralization, but income fluctuates greatly.
Energy Consumption Controversy: Is It Worth It?
Objective Assessment of Energy Scale
2024 Bitcoin network energy consumption:
- Annual electricity: ~150-180 TWh.
- Share of global electricity: ~0.6-0.8%.
- Power level: Between Argentina and Norway.
The Value Argument for Energy Consumption
Security cost perspective:
Network security value = Protected asset value × Security budget ratio
Currently: ~$1 trillion × 0.5% = $5 billion/year
Comparative analysis:
- Traditional banking system: ~264 TWh/year.
- Gold mining: ~241 TWh/year.
- Data centers: ~200 TWh/year.
- Bitcoin network: ~180 TWh/year.
Green Technology Development
Renewable energy trends:
- Hydropower: ~40% of mining energy (China, Northern Europe, North America).
- Wind power: ~25% (Texas, Inner Mongolia, etc.).
- Solar: ~15% (Middle East, Australia, etc.).
- Waste heat utilization: Mining farm waste heat used for heating, agriculture, etc.
Technological innovation:
- Liquid cooling technology: Improves heat dissipation efficiency and reduces operating costs.
- Waste heat recovery: Waste heat from mines is used for heating and seawater desalination.
- Carbon-neutral mining: Achieving net-zero emissions through carbon credits.
Hands-on Practice: Simulating the Mining Process
This lesson's companion code is at mining_examples.py .
- How to run:
python3 mining_examples.py - Default behavior: Automatically run the "Basic Concepts Demo"
- More demos: You can switch the demos to run at the bottom of the file (e.g., "Full Mining Demo," "Energy Analysis," etc.)
FAQ
Q1: Can you really make money mining?
A: It depends on many factors:
- Electricity cost: The most critical factor; cheaper electricity means easier profitability.
- Equipment price: Mining machines are expensive with long payback periods.
- Bitcoin price: Profitable when prices are high; potentially losing money when low.
- Network difficulty: The more participants, the less individual earnings.
Simply put: it's like driving a taxi — whether you profit depends on fuel costs, vehicle price, and passenger volume.
Q2: Why does mining consume so much electricity?
A: This is a design feature, not a flaw:
- Security needs: Electricity consumption protects network security.
- Cheating prevention: The cost of cheating must be high for deterrence.
- Just like a bank: Bank vaults, security guards, and surveillance systems all cost money too.
Plus, many mining farms now use renewable energy, making them more environmentally friendly than traditional banking systems.
Q3: Can ordinary people still mine?
A: Yes, but be realistic:
- Home computer: Forget it. You can't even cover the electricity bill.
- Professional mining machine: Worth trying, but do the math first.
- Cloud mining: Renting someone else's machine, but beware of scams.
- Buy Bitcoin: For regular people, direct purchase may be simpler.
Q4: What happens after all 21 million Bitcoin are mined?
A: Don't worry, that's not happening until 2140:
- Transaction fees: Miners can still collect transaction fees to sustain operations.
- Technology advancement: Technology will be vastly different 100+ years from now.
- Economic incentives: As long as there are transactions, people will maintain the network.
It's like worrying about gasoline running out in 100 years, there will definitely be new solutions by then.
Q5: Why not use a more environmentally friendly method?
A: Many people are researching this:
- Renewable energy: Many mines already use solar and hydropower.
- Waste heat utilization: Using mining heat for heating.
- Green certificates: Proving the use of clean energy.
Bitcoin mining is actually driving renewable energy development, because miners go wherever electricity is cheapest.
Summary
Mining is like digital gold panning: it requires equipment, luck, and persistence. Although not everyone will strike it rich, this system protects our Bitcoin.
🎯 Key Takeaways
- Mining essence: Trading computational labor for Bitcoin rewards.
- Economic model: High investment, high risk, high reward (if successful).
- Security value: Protects the network, prevents double-spending and 51% attacks.
- Technological innovation: Drive the development of chip technology and renewable energy.
🌟 Mining Philosophy
Mining proves a truth: Even in the digital world, you can create value through "labor." Every humming mining machine is providing security for Bitcoin users worldwide.
This is Satoshi Nakamoto's genius design: perfectly combining personal interest with collective security, making "selfish" behavior produce "selfless" outcomes.
🔗 Deep dive:
Complete mining code examples: mining_examples.py Bitcoin mining data: blockchain.info/stats Global hash rate monitoring: btc.com/stats PoW research paper: Nakamoto Consensus Paper
Challenge Quiz
Complete 5 questions, you need to get all correct to unlock the next chapter
If this lesson was helpful, please consider supporting the author ☕
Support Author · Buy Me a Coffee