116

Say I have a given piece of hardware (CPU/GPU). Where can I find out how much Bitcoin will I mine per day?

2

9 Answers 9

60

Go to http://bitminter.com/test and click the "test start" button. If you have Java installed the miner should launch. Click "engine start" on your GPU(s) to start mining and the GUI will show how many bitcoins per day you will make (on average).

Note that you are actively mining in a pool without getting paid. This test page launches a version of the miner which is only meant to be used for a short time for testing.

Update for 2015: CPU and GPU mining are both long dead. When you buy ASIC mining hardware you will know its hashrate before you buy. Don't buy if you don't. Google "bitcoin mining calculator", input your hashrate, and it will tell you how much you can earn right now, on average. Note that the difficulty will change in the future so your earnings will not stay the same. Also note that with most pools actual earnings vary with luck. Finally, avoid the typical newbie mistake of confusing TH/s and GH/s. 1 TH/s = 1000 GH/s.

1
  • 3
    2018, GPU for btc is dead but not for other currency.
    – ewwink
    Commented Jan 31, 2018 at 5:20
31

There is a list here that is kept relatively up to date with the possible hashrate of various CPUs and GPUs

https://en.bitcoin.it/wiki/Mining_hardware_comparison

Once you know the number of hashes you can generate, you can use an online mining calculator and calculate the numbers of bitcoins you can mine per day (on average) and the current price of those bitcoins in other currencies.

http://tpbitcalc.appspot.com/

It is worth pointing out that when most people talk about "mining" bitcoins these days, they are talking about pooled mining. Depending on the fees of your pool you can make anywhere from 2%-10% less than expected. If you mine by yourself, the bitcoin you are expected to make has a high degree of variance.

https://en.bitcoin.it/wiki/Pooled_mining

1
  • These days when you say. do you mean 2018 or 2011?
    – YumYumYum
    Commented Mar 6, 2018 at 12:56
28

D = Difficulty
H = MHash/s
C = Reward (currently 12.5 BTC)

24 / (D * 2^32 / (H * 10^6) / 60 / 60) * C = BTC/day

11
  • 3
    Take note that the last figure (50) in this formula is the block reward, which at some point will halve to 25 and continue halving until it reaches zero, at which point mining will be subsidized only by transaction fees, which this formula also ignores. It's not unreasonable to ignore them for the time, since they're a very tiny fraction of mining income, but still :) Commented Oct 12, 2011 at 20:46
  • Can you explain or reference what the 2^32 number is from and how its calculated? Commented May 22, 2016 at 13:31
  • A difficulty of D requires on average 2^32*D hashes to solve. In fact, that's not entirely accurate. The exact number is 2^48/65535*D. Commented Oct 2, 2016 at 23:12
  • 1
    @Pieter Wuille...So is his formula correct, because PEMDAS matters? I am trying to build my own calculator on my web page, for my own use, where ALL inputs are required. Many of these online calculators do not include, or allow input of variable items that are important.
    – dinotom
    Commented Dec 9, 2017 at 21:34
  • What is PEMDAS? Commented Dec 9, 2017 at 21:43
11

If:

D is the current difficulty
H is your hash rate in Mhash/s
B is block reward in BTC

Then you can expect to earn:

  (H*B/D) * (60*60*24 * 65535 * 10^6 / 2^48)
= (H*B/D) * (5.662224e15 / 2^48)              BTC per day (1)

or roughly:

  (H*B/D) * 20.11626                          BTC per day (2)

The current block reward B is a little over 12.5 BTC if you take transaction fees into account. (The transaction fees vary block by block; the core reward halves periodically, e.g. to 6.25 in mid-2020.)

(1) is exactly correct

(2) is an approximation, correct to 7 significant digits

This answer is slightly off due to assuming 65535 == 65536.

1
  • So what's the values of D, H, and B? There's a load of multiplications but none of them show 12.5 so it's impossible to disassemble this.
    – Ken Sharp
    Commented Jan 27, 2021 at 22:39
4

Yet another bitcoin mining profitability calculator - detailed and including a decline factor to compensate for mining hardware advancement (I am the author).

2

You should consult this wiki entry to know how many hashes per second can you generate with your hardware. Afterwards, just input the value into a bitcoin mining calculator and you will have an estimation of your payout ratio.

Please note that this calculator does not take difficulty into account so your earned value is likely to change over time. There are other calculators that try to predict the evolution of the difficulty, but they are not very accurate. Right now, difficulty depends on too many factors to be correctly predicted for a period longer than a couple of months.

1

I was confused by the profitability calculators I saw because I find it hard to get a feeling for how the difficulty influences my yield and also for where I can expect the difficulty to go, since it's such an abstract value.

So I now use what to me is more intuitive: there's a (more or less) fixed number of 3,600 BTC gained from mining each day, until the block reward halves in 2017. Those coins can be viewed as being shared by the whole network proportionally to the computing power of each player.

So, let's assume a network power of 360 Thash/s, which seems not far away as I write this, and makes for easy calculation, then for every Ghash/s that your equipment brings to the table, you get 0.01 BTC per day.

If you're solo mining, this is overly simplified, but the general direction of solo mining is that your actual yield will only on average match the theoretical one, so if you're much much smaller than the network (likely), then your variance gets so high that it becomes a lot like a lottery.

1

NiceHash has a nice calculator that will give you expected return on crypto mining, based on hardware and electricity price

-2

If you are interested in how your profitability will change as the network hashrate grows this calculator is the best IMO.

http://bitcoininsight.com/2013/04/05/bitcoin-mining-profitability-calculator/

Although you will have to make some guesses about how the network will grow, it should be more accurate than just a plain guess as to what the difficulty will be in X months time.

2

Not the answer you're looking for? Browse other questions tagged or ask your own question.