Author

Topic: Calculation Breakdown (Read 940 times)

sr. member
Activity: 378
Merit: 250
July 08, 2014, 08:13:35 PM
#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?
member
Activity: 102
Merit: 10
July 08, 2014, 08:10:54 PM
#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"
legendary
Activity: 2646
Merit: 1137
All paid signature campaigns should be banned.
July 08, 2014, 08:05:07 PM
#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.
sr. member
Activity: 378
Merit: 250
July 08, 2014, 07:56:28 PM
#6
It appears to be a mistake in the post, rather than a mistake in our actual system. 
legendary
Activity: 2646
Merit: 1137
All paid signature campaigns should be banned.
July 08, 2014, 09:33:28 AM
#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.
sr. member
Activity: 350
Merit: 250
July 08, 2014, 08:49:41 AM
#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
legendary
Activity: 2646
Merit: 1137
All paid signature campaigns should be banned.
July 07, 2014, 10:11:24 AM
#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));
legendary
Activity: 2646
Merit: 1137
All paid signature campaigns should be banned.
July 05, 2014, 03:32:52 PM
#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.
member
Activity: 102
Merit: 10
July 05, 2014, 02: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));
Jump to: