Beginner s Guide to Ethereum Mining - How to Mine Ethereum on Your PC?

Bitcoin Miner algorithm

Bitcoin Mining / April 9, 2020

The Mining Algorithm

What is commonly referred to as Bitcoin “mining” is really the creation of a new block in the block chain. Instead of making block creation a relatively simple operation, Satoshi realized that only a computationally expensive operation, performed as a kind of lottery, would prevent forgers from subverting the digital currency. But for a computationally expensive operation, which costs CPU power and thus electricity, some kind of reward would be necessary. Otherwise, only people with nefarious intent would participate in block creation.

One of the most difficult problems in computer science is reversing a secure hash (finding an input text for a given output, the digital signature). Let me explain this problem in simple terms. Let’s assume the wealthy but terminally ill Alice wrote her will and stored it on her computer. Knowing that a computer can be hacked and the will can be altered, Alice digitally signed her will with the secure hash algorithm SHA-256. She then emailed the digital signature to all her friends, allowing them to check the validity of the document. Bob wants to hack into the computer and change Alice’s will so that he becomes the sole beneficiary, but he faces a problem: he needs to change the will in such a way that the widely distributed SHA-256 signature stays the same. Otherwise, everybody realizes that the will has been forged. This is the computationally difficult problem of reversing or brute-forcing SHA-256, or finding an input that matches a predefined output. Satoshi famously decided that in order to find a new block, people all over the world need to compete in reversing SHA-256, turning block creation into a global lottery.

But since this is a computationally intractable problem, Satoshi made it somewhat easier. You see, an exact match to the signature doesn’t need to be found, but merely a match that satisfies an inequality, or an inexact match. In other words, a signature that differs from the desired output signature by less than a given (and adjustable) number qualifies for the block reward. This number is adjusted downwards as mining difficulty increases, making the brute-forcing problem computationally harder and harder, thus maintaining the average block creation rate of one new block every 10 minutes. Controlling the "money supply" by keeping the block creation rate steady prevents runaway inflation.

Bitcoin Mining on a CPU

Initially, Bitcoin miners simply ran Satoshi’s published code on their computers, adding more computers to gain an advantage over other miners. But when someone ported the mining algorithm to OpenCL (the C-like parallel language that allows graphics cards to act like a poor man’s supercomputer), the mining difficulty rose so much that mining on a CPU became obsolete. In other words, at that point, the cost of electricity for CPU-based mining vastly exceeded the Bitcoin revenue.

Solo Mining vs. Mining on Mining Pools

A solo miner participates in the block-searching lottery on his own, and goes empty most of the time. On the rare occasion when he does find a lock, he instantly gets 25 Bitcoins (plus a small transaction bonus). But solo mining makes sense only for massive mining operations, at, say, 50 GH/s and up. Most miners instead opt to participate in one of the dozens of mining pools (for instance deepbit.net or eligius.st), and thus benefit from a steady income in Bitcoins. Most, but not all, mining pools take a small percentage of the mining revenue to pay for server hosting and DDoS protection.

Source: www.tomshardware.com