Bitcoin Forum
May 11, 2024, 10:13:11 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Calculation Breakdown  (Read 914 times)
wjohnson1988 (OP)
Member
**
Offline Offline

Activity: 102
Merit: 10


View Profile
July 05, 2014, 07:34:39 PM
 #1

Can someone breakdown this calculation for me?
$per24 = ($totalHashingPower * 25 / $difficulty) * (60 * 60 * 24 * 65535 * pow(10,6) / pow(2,48));
1715422391
Hero Member
*
Offline Offline

Posts: 1715422391

View Profile Personal Message (Offline)

Ignore
1715422391
Reply with quote  #2

1715422391
Report to moderator
1715422391
Hero Member
*
Offline Offline

Posts: 1715422391

View Profile Personal Message (Offline)

Ignore
1715422391
Reply with quote  #2

1715422391
Report to moderator
1715422391
Hero Member
*
Offline Offline

Posts: 1715422391

View Profile Personal Message (Offline)

Ignore
1715422391
Reply with quote  #2

1715422391
Report to moderator
Every time a block is mined, a certain amount of BTC (called the subsidy) is created out of thin air and given to the miner. The subsidy halves every four years and will reach 0 in about 130 years.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715422391
Hero Member
*
Offline Offline

Posts: 1715422391

View Profile Personal Message (Offline)

Ignore
1715422391
Reply with quote  #2

1715422391
Report to moderator
BurtW
Legendary
*
Offline Offline

Activity: 2646
Merit: 1136

All paid signature campaigns should be banned.


View Profile WWW
July 05, 2014, 08:32:52 PM
Last edit: July 07, 2014, 03:34:54 PM by BurtW
 #2

Can someone breakdown this calculation for me?
$per24 = ($totalHashingPower * 25 / $difficulty) * (60 * 60 * 24 * 65535 * pow(10,6) / pow(2,48));

The above fromula is wrong, the concept is very easy.  You need three things:

y = your hash rate
n = the network hash rate
b = bitcoin subsidy for the period of interest

Then the amount of coins you will make, c, is just your slice of the total hash rate:

c = b(y/n)

Looks like you want the number of coins you will make per day (ignoring fees).  In that case:

b = (25 BTC per block)(6 blocks per hour)(24 hours per day) = 3,600 BTC/day

The network hash rate is estimated here:  https://bitcoinwisdom.com/bitcoin/difficulty

And right now is about 126,228,905 GH/s = 126,229 TH/s = 126 PH/s

Let's assume you had 126.229 TH/s then on average you would make 126.229 / 126,229 =  0.1% of the coins every day:  3,600 * 0.001 = 3.6 BTC per day.

Our family was terrorized by Homeland Security.  Read all about it here:  http://www.jmwagner.com/ and http://www.burtw.com/  Any donations to help us recover from the $300,000 in legal fees and forced donations to the Federal Asset Forfeiture slush fund are greatly appreciated!
BurtW
Legendary
*
Offline Offline

Activity: 2646
Merit: 1136

All paid signature campaigns should be banned.


View Profile WWW
July 07, 2014, 03:11:24 PM
Last edit: July 07, 2014, 03:34:15 PM by BurtW
 #3

In terms of the formula you gave, so far, we have accounted for only the bolded part:

$per24 = ($totalHashingPower * 25 / $difficulty) * (60 * 60 * 24 * 65535 * pow(10,6) / pow(2,48));

Now if you want to use difficulty, D, instead of the estimated total hash rate you use the formula given here:

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

n = D(248 / 0xffff)

0xffff = 65535 so we have:

n = D(248 / 65535)

Substituting into the formula in the previous post:

c = (25)(6)(24)(y/(D(248 / 65535)))

c = y(25)(6)(24)(65535)/(D(248))

So in your formula we have accounted for:

$per24 = ($totalHashingPower * 25 / $difficulty) * (60 * 60 * 24 * 65535 * pow(10,6) / pow(2,48));

Finally, the 106 factor is just so you can enter your hashing rate ($totalHashingPower) in MH/s instead of H/s.  This leaves the following parts of the formula as wrong:

$per24 = ($totalHashingPower * 25 / $difficulty) * (60 * 60 * 24 * 65535 * pow(10,6) / pow(2,48));

The corrected formula ($totalHashingPower in MH/s) is:

$per24 = ($totalHashingPower * 25 / $difficulty) * (6 * 24 * 65535 * pow(10,6) / pow(2,48));

Our family was terrorized by Homeland Security.  Read all about it here:  http://www.jmwagner.com/ and http://www.burtw.com/  Any donations to help us recover from the $300,000 in legal fees and forced donations to the Federal Asset Forfeiture slush fund are greatly appreciated!
ondratra
Sr. Member
****
Offline Offline

Activity: 350
Merit: 250



View Profile
July 08, 2014, 01:49:41 PM
 #4

Can someone breakdown this calculation for me?
$per24 = ($totalHashingPower * 25 / $difficulty) * (60 * 60 * 24 * 65535 * pow(10,6) / pow(2,48));


Where did you get this equation? =-O
BurtW
Legendary
*
Offline Offline

Activity: 2646
Merit: 1136

All paid signature campaigns should be banned.


View Profile WWW
July 08, 2014, 02:33:28 PM
Last edit: July 08, 2014, 02:55:41 PM by BurtW
 #5

Can someone breakdown this calculation for me?
$per24 = ($totalHashingPower * 25 / $difficulty) * (60 * 60 * 24 * 65535 * pow(10,6) / pow(2,48));


Where did you get this equation? =-O
I Googled the incorrect formula and found it in three places.  The authors should be notified that the formula is incorrect (just point them back to this thread):

https://bitcointa.lk/threads/pb-mining-5-year-mining-contracts.238321/page-7#post-4610463

https://bitcointa.lk/threads/pb-mining-5-year-mining-contracts.238321/page-168#post-7368443

http://www.cryptomania.info/pbmining-bitcoin-review

So the culprit is pbmining.

Our family was terrorized by Homeland Security.  Read all about it here:  http://www.jmwagner.com/ and http://www.burtw.com/  Any donations to help us recover from the $300,000 in legal fees and forced donations to the Federal Asset Forfeiture slush fund are greatly appreciated!
PBmining
Sr. Member
****
Offline Offline

Activity: 378
Merit: 250


View Profile WWW
July 09, 2014, 12:56:28 AM
 #6

It appears to be a mistake in the post, rather than a mistake in our actual system. 

Did you know?: Most of our hash power comes from other sources.  We are now specialized in the resale of cloudmining contracts through our associates!
BurtW
Legendary
*
Offline Offline

Activity: 2646
Merit: 1136

All paid signature campaigns should be banned.


View Profile WWW
July 09, 2014, 01:05:07 AM
 #7

It appears to be a mistake in the post, rather than a mistake in our actual system. 
Please correct your post so as not to confuse your current or potential customers.

Our family was terrorized by Homeland Security.  Read all about it here:  http://www.jmwagner.com/ and http://www.burtw.com/  Any donations to help us recover from the $300,000 in legal fees and forced donations to the Federal Asset Forfeiture slush fund are greatly appreciated!
wjohnson1988 (OP)
Member
**
Offline Offline

Activity: 102
Merit: 10


View Profile
July 09, 2014, 01:10:54 AM
 #8

It appears to be a mistake in the post, rather than a mistake in our actual system. 

I would really hope so... As that's a significant "mistake"
PBmining
Sr. Member
****
Offline Offline

Activity: 378
Merit: 250


View Profile WWW
July 09, 2014, 01:13:35 AM
 #9

Sure, just let me know how to correct the post on bitcointa.lk?  I believe that website shows past posts there were already changed/deleted from here, am I right?

Did you know?: Most of our hash power comes from other sources.  We are now specialized in the resale of cloudmining contracts through our associates!
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!