create account

The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated! by biophil

View this thread on: hive.blogpeakd.comecency.com
· @biophil ·
$3.82
The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!
Several months ago, I wrote a post explaining how the voting power system works on Steemit. At the time, my [Game Theory of Steem](https://steemit.com/steem/@biophil/what-does-game-theory-say-about-steem-part-1) series was still going strong, and I was curious about how voting power was being regenerated and used as I voted for posts. The embarrassingly-outdated Steem Whitepaper had a little blurb about it, but gave no implementation details and made it sound like having low voting power was a penalty for trying to vote too much (**hint: having low voting power is not a bad thing.**)

Anyway, I ended up having to dig into the Steem source code myself to reverse-engineer the voting power mechanics, and wrote my original post explaining how voting power worked. I got a few of the details wrong in the original post, and a few of the details have changed, so I'm dramatically revising the post and giving you this update now.

So you're new to Steem and you've heard people talking about "curation" this and "rewards" that - but what's all this about the mysterious **Voting Power?** Apparently you lose it if you vote too much, but then you get it back, and you can look it up on [Steemstats](https://steemstats.com) and [Steemd.com](http://steemd.com/@biophil), but **how does it actually work?**


## The Basics

You can look up your voting power in a few different places; the prettiest of the places is [Steemstats](https://steemstats.com) (just enter your account name in the box on the right), the nerdiest is [Steemd.com](http://steemd.com/@biophil). When you vote, a little voting power is used up, but then it regenerates over time. How exactly does it work? What's the optimal way to vote?

Think of your voting power as a big tank of water. Every time you vote, a valve at the bottom of the tank pops open and squirts out some power. The fuller the tank, the more power squirts out the valve. The amount of power that squirts out the valve is one of the things that determines the impact your vote has on a post's rewards. (The other is your Steem Power, which you can look up in your wallet and is a completely separate thing.)

<center>
![](https://ipfs.pics/ipfs/QmQ9nSfaCW19yJ9VkbrAUpMedhnyutdAupCvZF3K8TdVtV)</center>

If you vote and vote and vote without stopping, it's like leaving the valve open, and it won't take long before your tank is empty.

Fortunately for you, there is a steady drip of power coming back into your tank! This drip refills your tank at the same rate, always, no matter what. The rate is hard-coded into the Steem system at a constant 20 percentage points per day. So these two things are both true:

* If your voting power is at 0% right now, it will be at 20% in 24 hours (if you don't vote at all in that time). 
* If it's at 75% right now, it will be at 95% in 24 hours (again, if you don't vote in that time). 

What happens to the drip if your tank is full? The drip gets wasted! Think of it like the tank just overflows if it's full; all that voting power just dripping down the sides going to no purpose.

## The Summary

#### How voting power works:

1. Your account has a number between 0 and 100 called "voting power."
2. When you vote for a post, slightly more than a 200th of that voting power gets "spent" on your vote.
4. Your voting power regenerates over time at a fixed rate of 20 points every 24 hours (to be precise, it would grow from 0 to 100 in exactly 5 days).

#### How to vote optimally:

* In general, you should never vote *less* than about 40 times per day (the exact number is closer to 39.2 votes per day, due to a minor implementation error). If you do vote less, you're letting your voting power go to waste (because your "tank" is full some of that time, and the "drip" is spilling over the brim).
* **Surprising news: if you want to maximize your *total* influence, it doesn't matter how much you vote**, as long as you vote more than about 40 times per day. Your *total* influence is the same whether you vote 1000 times per day or 40.
* **However, The more you vote, the less *each* of your votes is worth.** So you could vote 1000 times per day, but each of those votes wouldn't be worth very much. Your *total* influence would be optimal, but your *influence per vote* would be very low.


## The Details
(with formulas, code references, and general jolliness!)

Down to brass tacks. Here is the complete formula for voting power (if you don't want to parse this formula yourself, I'll walk you through it in a minute):

<center>
![](https://i.imgsafe.org/3171c6376b.png)</center>

where my variables are (times are given in days, powers are numbers between 0 and 100)

* *D* is the number of days since your last vote
* *Dr* is 5, the number of days it takes to regenerate your power from 0 to 100
* *Vd* is the "equilibrium" number of votes per day, currently set to 40
* *p* is your voting power right after you *last* clicked "vote"
* *p+* is your voting power the moment *after* you click "vote" this time
* *w* is the "slider" weight of your vote, between 0 and 1 (where 1 stands for 100% voting-slider power)

Next, I'll just plug the numbers in to make the formula a little less opaque:

<center>
![](https://i.imgsafe.org/3171d41e5c.png)</center>

**Let me walk you through this.** 

* *20D* is the amount of power that has regenerated *since your last vote.* Note that this is constant, and doesn't depend on *p*. If it's been one day since you last voted, you've regenerated 20 percentage points of voting power in that time.
* *(p+20D)* is thus the amount of power you have *right before you vote.*
* (1-w/200) comes from the fact that if you vote with full slider power (w=1), a 200th of your power gets used each time you vote. If you vote with 50% slider power (w=0.5), you only use up a 400th of your power.
* The last term, 199/20000, doesn't really affect much. Its purpose is to handle an edge case when people vote with very low power. It makes it so that every time you vote, *just a little bit more* than a 200th of your voting power gets used.

**So how much is each vote worth?** The formula for how much power gets applied to each vote is this:

<center>
![](https://i.imgsafe.org/3171e68c9e.png)</center>

**If we didn't have that 199/20000**, the answer would be "exactly a 200th of your voting power gets applied to each vote."

This formula will be important when (if?) I finally write my next article explaining how curation rewards work.

## The Code
Here is a list of code references for each of the components of this:

* [steem_evaluator.cpp #1027](https://github.com/steemit/steem/blob/master/libraries/chain/steem_evaluator.cpp#L1027) regenerated power, *(100D/Dr)*
* [steem_evaluator.cpp #1028](https://github.com/steemit/steem/blob/master/libraries/chain/steem_evaluator.cpp#L1028) available power, *(p+100D/Dr)*
* [steem_evaluator.cpp #1032](https://github.com/steemit/steem/blob/master/libraries/chain/steem_evaluator.cpp#L1032) multiplied by slider weight
* [steem_evaluator.cpp #1048](https://github.com/steemit/steem/blob/master/libraries/chain/steem_evaluator.cpp#L1048) used power, the 200th, and the 199/20000
* [steem_evaluator.cpp #1091](https://github.com/steemit/steem/blob/master/libraries/chain/steem_evaluator.cpp#L1091) voting power update
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 152 others
properties (23)
authorbiophil
permlinkthe-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated
categoryvoting
json_metadata{"tags":["voting","steem-help","steem","steemit","faq"],"image":["https://ipfs.pics/ipfs/QmQ9nSfaCW19yJ9VkbrAUpMedhnyutdAupCvZF3K8TdVtV","https://i.imgsafe.org/3171c6376b.png","https://i.imgsafe.org/3171d41e5c.png","https://i.imgsafe.org/3171e68c9e.png"],"links":["https://steemit.com/steem/@biophil/what-does-game-theory-say-about-steem-part-1","https://steemstats.com","http://steemd.com/@biophil","https://github.com/steemit/steem/blob/master/libraries/chain/steem_evaluator.cpp#L1027","https://github.com/steemit/steem/blob/master/libraries/chain/steem_evaluator.cpp#L1028","https://github.com/steemit/steem/blob/master/libraries/chain/steem_evaluator.cpp#L1032","https://github.com/steemit/steem/blob/master/libraries/chain/steem_evaluator.cpp#L1048","https://github.com/steemit/steem/blob/master/libraries/chain/steem_evaluator.cpp#L1091"],"app":"steemit/0.1","format":"markdown"}
created2016-12-15 22:26:18
last_update2016-12-15 22:26:18
depth0
children28
last_payout2017-01-16 00:36:51
cashout_time1969-12-31 23:59:59
total_payout_value3.564 HBD
curator_payout_value0.254 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7,284
author_reputation45,223,914,794,461
root_title"The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,014,254
net_rshares20,554,117,590,475
author_curate_reward""
vote details (216)
@ats-david ·
$0.02
properties (23)
authorats-david
permlinkre-biophil-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20161215t223822792z
categoryvoting
json_metadata{"tags":["voting"],"users":["biophil"]}
created2016-12-15 22:38:24
last_update2016-12-15 22:38:24
depth1
children9
last_payout2017-01-16 00:36:51
cashout_time1969-12-31 23:59:59
total_payout_value0.015 HBD
curator_payout_value0.003 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length110
author_reputation324,017,334,201,433
root_title"The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,014,342
net_rshares589,977,798,250
author_curate_reward""
vote details (30)
@barrydutton ·
LOL
properties (22)
authorbarrydutton
permlinkre-ats-david-re-biophil-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20161216t013909557z
categoryvoting
json_metadata{"tags":["voting"]}
created2016-12-16 01:39:12
last_update2016-12-16 01:39:12
depth2
children0
last_payout2017-01-16 00:36:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length3
author_reputation333,942,309,404,197
root_title"The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,015,392
net_rshares0
@biophil ·
Bring it! I've been withering a little without any competition for so long...

So, seriously? You're 100% manual? That's impressive.
👍  
properties (23)
authorbiophil
permlinkre-ats-david-re-biophil-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20161215t225143303z
categoryvoting
json_metadata{"tags":["voting"]}
created2016-12-15 22:51:42
last_update2016-12-15 22:51:42
depth2
children5
last_payout2017-01-16 00:36:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length132
author_reputation45,223,914,794,461
root_title"The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,014,429
net_rshares60,446,205,467
author_curate_reward""
vote details (1)
@ats-david ·
Yes - all manual. And I've been on your heels for a few days now. I'll put some extra effort into it. 

All I need is one day at the top and my life will be fulfilled!
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authorats-david
permlinkre-biophil-re-ats-david-re-biophil-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20161215t225559716z
categoryvoting
json_metadata{"tags":["voting"]}
created2016-12-15 22:56:00
last_update2016-12-15 22:56:00
depth3
children2
last_payout2017-01-16 00:36:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length167
author_reputation324,017,334,201,433
root_title"The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,014,463
net_rshares252,918,182,016
author_curate_reward""
vote details (32)
@barrydutton ·
properties (23)
authorbarrydutton
permlinkre-biophil-re-ats-david-re-biophil-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20161216t013954570z
categoryvoting
json_metadata{"tags":["steemitelders","voting"]}
created2016-12-16 01:39:57
last_update2016-12-16 01:39:57
depth3
children0
last_payout2017-01-16 00:36:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length55
author_reputation333,942,309,404,197
root_title"The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,015,394
net_rshares170,219,521,250
author_curate_reward""
vote details (25)
@pgarcgo ·
I like the fight: man vs machine! I`m also working on something. Let meet at the stats.. Still far beyond though! GG!
👍  
properties (23)
authorpgarcgo
permlinkre-biophil-re-ats-david-re-biophil-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20161216t094432278z
categoryvoting
json_metadata{"tags":["voting"]}
created2016-12-16 09:44:33
last_update2016-12-16 09:44:33
depth3
children0
last_payout2017-01-16 00:36:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length117
author_reputation118,205,269,281,710
root_title"The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,017,614
net_rshares103,161,714,610
author_curate_reward""
vote details (1)
@majes ·
http://i.imgur.com/A8STL6t.png
properties (22)
authormajes
permlinkre-ats-david-re-biophil-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20161215t224340636z
categoryvoting
json_metadata{"tags":["voting"],"image":["http://i.imgur.com/A8STL6t.png"]}
created2016-12-15 22:43:39
last_update2016-12-15 22:43:39
depth2
children1
last_payout2017-01-16 00:36:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length30
author_reputation132,839,043,973,673
root_title"The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,014,388
net_rshares0
@barrydutton ·
LOL, beauty man
properties (22)
authorbarrydutton
permlinkre-majes-re-ats-david-re-biophil-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20161216t014021093z
categoryvoting
json_metadata{"tags":["voting"]}
created2016-12-16 01:40:24
last_update2016-12-16 01:40:24
depth3
children0
last_payout2017-01-16 00:36:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length15
author_reputation333,942,309,404,197
root_title"The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,015,395
net_rshares0
@barrydutton ·
Well, I VOTED for this and RS it too --- so I believe my 1/200th or so of a vote was well inVESTed haha!  

Great explanation for us Newbs.   TY very much -- I saved this in my file of important stuff to know!
👍  , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authorbarrydutton
permlinkre-biophil-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20161216t014206583z
categoryvoting
json_metadata{"tags":["voting"]}
created2016-12-16 01:42:09
last_update2016-12-16 01:42:09
depth1
children0
last_payout2017-01-16 00:36:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length209
author_reputation333,942,309,404,197
root_title"The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,015,400
net_rshares272,452,631,911
author_curate_reward""
vote details (22)
@bluehorseshoe ·
Nice breakdown, makes sense, thank you!
properties (22)
authorbluehorseshoe
permlinkre-biophil-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20161215t223624148z
categoryvoting
json_metadata{"tags":["voting"]}
created2016-12-15 22:36:39
last_update2016-12-15 22:36:39
depth1
children0
last_payout2017-01-16 00:36:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length39
author_reputation9,766,510,656,462
root_title"The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,014,320
net_rshares0
@doitvoluntarily ·
http://static.wixstatic.com/media/8d4bbc_baebb4ce862d4507b42cf15aedf6fef6~mv2.jpg
properties (22)
authordoitvoluntarily
permlinkre-biophil-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20161215t223306987z
categoryvoting
json_metadata{"tags":["voting"],"image":["http://static.wixstatic.com/media/8d4bbc_baebb4ce862d4507b42cf15aedf6fef6~mv2.jpg"]}
created2016-12-15 22:33:09
last_update2016-12-15 22:33:09
depth1
children0
last_payout2017-01-16 00:36:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length81
author_reputation1,412,689,148,080,496
root_title"The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,014,297
net_rshares0
@herverisson ·
I always wondered about how it worked, thanks for walking us through it! :) What about a counter telling us how many votes we have done every 24hours?? Would that be an option likely and helpful on Steemit?
👍  , , , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authorherverisson
permlinkre-biophil-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20161215t222840258z
categoryvoting
json_metadata{"tags":["voting"]}
created2016-12-15 22:28:39
last_update2016-12-15 22:28:39
depth1
children1
last_payout2017-01-16 00:36:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length206
author_reputation89,884,629,748,523
root_title"The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,014,265
net_rshares181,718,902,304
author_curate_reward""
vote details (27)
@biophil ·
That sounds like a great feature. In lieu of that, you can always monitor your voting power on steemstats.com - if you keep your voting power between 80 and 90, you'll likely be voting enough. :)
👍  
properties (23)
authorbiophil
permlinkre-herverisson-re-biophil-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20161215t223106332z
categoryvoting
json_metadata{"tags":["voting"]}
created2016-12-15 22:31:06
last_update2016-12-15 22:31:06
depth2
children0
last_payout2017-01-16 00:36:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length195
author_reputation45,223,914,794,461
root_title"The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,014,281
net_rshares60,446,205,467
author_curate_reward""
vote details (1)
@lemouth ·
Thanks a lot for this detailed post! I would not say that it is definitive as the rules may change with time :)
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authorlemouth
permlinkre-biophil-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20161216t151139585z
categoryvoting
json_metadata{"tags":["voting"]}
created2016-12-16 15:11:39
last_update2016-12-16 15:11:39
depth1
children1
last_payout2017-01-16 00:36:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length111
author_reputation338,011,164,701,274
root_title"The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,019,622
net_rshares215,796,341,272
author_curate_reward""
vote details (28)
@biophil ·
Well at least it's definitive-er than anything anybody else has posted. :)
properties (22)
authorbiophil
permlinkre-lemouth-re-biophil-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20161216t175259147z
categoryvoting
json_metadata{"tags":["voting"]}
created2016-12-16 17:52:57
last_update2016-12-16 17:52:57
depth2
children0
last_payout2017-01-16 00:36:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length74
author_reputation45,223,914,794,461
root_title"The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,020,750
net_rshares0
@meesterboom ·
This is excellent, I always overvote but knowing that I can gain back a max of 20% a day is really useful. I might have took vote rest this weekend!!
properties (22)
authormeesterboom
permlinkre-biophil-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20161216t075657329z
categoryvoting
json_metadata{"tags":["voting"]}
created2016-12-16 07:56:57
last_update2016-12-16 07:56:57
depth1
children0
last_payout2017-01-16 00:36:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length149
author_reputation1,788,018,302,991,479
root_title"The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,017,119
net_rshares0
@nxtblg ·
Thanks a lot!
properties (22)
authornxtblg
permlinkre-biophil-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20161216t002918585z
categoryvoting
json_metadata{"tags":["voting"]}
created2016-12-16 00:29:12
last_update2016-12-16 00:29:12
depth1
children0
last_payout2017-01-16 00:36:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length13
author_reputation14,581,363,059,419
root_title"The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,015,001
net_rshares0
@onealfa ·
$4.49
Sir, @biophil,   I like your analysis so much. The only thing now makes me nervous - are these formulas still valid now?  After HF19?  I  can not read code, I'm not a coder. Maybe you can check it , and update the formulas, if needed.
I am looking  quite some time for a exact description of re-building voting power  algorithm vs time, and no luck. 
What I understand is  this:
If I exhaust my voting power  ( by intensive voting, 100 sequential upvotes in short time) down to  only  13.26%, it will take a stunning 266 hours (11+ days) to rebuild again back to 100% (provided no more votes done in these 266 h). Am I right? 
Or, how exactly it should be calculated?
👍  
properties (23)
authoronealfa
permlinkre-biophil-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20170626t101528980z
categoryvoting
json_metadata{"tags":["voting"],"users":["biophil"],"app":"steemit/0.1"}
created2017-06-26 10:15:33
last_update2017-06-26 10:15:33
depth1
children1
last_payout2017-07-03 10:15:33
cashout_time1969-12-31 23:59:59
total_payout_value4.480 HBD
curator_payout_value0.009 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length667
author_reputation480,376,525,018,215
root_title"The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,159,523
net_rshares461,482,815,572
author_curate_reward""
vote details (1)
@biophil ·
$0.10
One thing changed with HF19, and that's the 200 in my formulas. That number should now be 50.

The regeneration rate hasn't changed, and it's linear: you regenerate 20 percentage points per day (24 hours). So it takes 24 hours to go from 10% to 30%, 48 hours to go from 60% to 100%, and so on.

It used to be you'd spend 0.5% of your voting power per vote, but that's now 2%. So if your VP is at 100 and you cast a full power vote, your VP will drop to 98. If your VP is at 50 and you cast a full power vote, it will drop to 49. Make sense? 

I should update this and repost it to explain post-HF19 voting power.
👍  ,
properties (23)
authorbiophil
permlinkre-onealfa-re-biophil-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20170626t152523060z
categoryvoting
json_metadata{"tags":["voting"],"app":"steemit/0.1"}
created2017-06-26 15:25:27
last_update2017-06-26 15:25:27
depth2
children0
last_payout2017-07-03 15:25:27
cashout_time1969-12-31 23:59:59
total_payout_value0.078 HBD
curator_payout_value0.026 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length612
author_reputation45,223,914,794,461
root_title"The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,193,523
net_rshares11,044,423,849
author_curate_reward""
vote details (2)
@rudyrun · (edited)
As I get more steem power I get more voting power 
Where can I see the progress is there a statistic where I can find out about the progress of my 100% vote at full capacity
👍  
properties (23)
authorrudyrun
permlinkre-biophil-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20170722t212442958z
categoryvoting
json_metadata{"tags":["voting"],"app":"steemit/0.1"}
created2017-07-22 21:24:42
last_update2017-07-22 21:25:27
depth1
children0
last_payout2017-07-29 21:24:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length173
author_reputation111,426,161,156
root_title"The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,349,375
net_rshares1,695,412,845
author_curate_reward""
vote details (1)
@screenname ·
Re: The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!
<p>This post has been ranked within the top 25 most undervalued posts in the first half of Dec 16. We estimate that this post is undervalued by $10.32 as compared to a scenario in which every voter had an equal say.</p> 
<p>See the full rankings and details in <a href="https://steemit.com/curation/@screenname/the-daily-tribune-most-undervalued-posts-of-dec-16---part-i">The Daily Tribune: Dec 16 - Part I</a>. You can also read about some of our methodology, data analysis and technical details in <a href="https://steemit.com/curation/@screenname/introducing-the-daily-tribune-most-undervalued-posts-of-nov-04---part-i">our initial post</a>.</p>
<p>If you are the author and would prefer not to receive these comments, simply reply "Stop" to this comment.</p>
properties (22)
authorscreenname
permlinkre-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20161216t130915
categoryvoting
json_metadata"{"replyto": "@biophil/the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated"}"
created2016-12-16 13:09:15
last_update2016-12-16 13:09:15
depth1
children0
last_payout2017-01-16 00:36:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length763
author_reputation46,276,338,038,330
root_title"The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,018,685
net_rshares0
@skypal ·
This is very interesting. I'm reading your paper, "[Studies on Robust Social Influence Mechanisms.](http://www.ece.ucsb.edu/~pnbrown/papers/Brown2016c.pdf)" Fascinating, and very relevant to the Steemit platform obviously.
properties (22)
authorskypal
permlinkre-biophil-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20161220t181915736z
categoryvoting
json_metadata{"tags":["voting"],"links":["http://www.ece.ucsb.edu/~pnbrown/papers/Brown2016c.pdf"]}
created2016-12-20 18:19:15
last_update2016-12-20 18:19:15
depth1
children3
last_payout2017-01-16 00:36:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length222
author_reputation16,350,129,952,399
root_title"The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,050,067
net_rshares0
@biophil ·
Yeah, that paper is a great place to start.

Ever since I joined Steem I've been thinking about the incentives here. At first I was pretty worried that the incentives were going to push people to pile their votes on to only the most popular content, but since I've been running a voting bot, I'm becoming more and more convinced that the incentives actually push people *away* from piling onto popular stuff. Did you ever run into my "game theory of steem" series? Here's the article where I talk about this potential issue: https://steemit.com/money/@biophil/is-steem-paying-for-groupthink-the-game-theory-of-steem-part-3
properties (22)
authorbiophil
permlinkre-skypal-re-biophil-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20161220t195836600z
categoryvoting
json_metadata{"tags":["voting"],"links":["https://steemit.com/money/@biophil/is-steem-paying-for-groupthink-the-game-theory-of-steem-part-3"]}
created2016-12-20 19:58:36
last_update2016-12-20 19:58:36
depth2
children2
last_payout2017-01-16 00:36:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length622
author_reputation45,223,914,794,461
root_title"The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,050,769
net_rshares0
@skypal ·
That sounds promising. Yes, I saw the article but haven't read it yet.
properties (22)
authorskypal
permlinkre-biophil-re-skypal-re-biophil-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20161220t212219525z
categoryvoting
json_metadata{"tags":["voting"]}
created2016-12-20 21:22:18
last_update2016-12-20 21:22:18
depth3
children1
last_payout2017-01-16 00:36:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length70
author_reputation16,350,129,952,399
root_title"The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,051,302
net_rshares0
@stuntworksinc ·
I know this isn't a recent post, but it's not "old" either. Thanks a lot for the explanation, I will be using it to factor how I do things here. I understand the premise you have presented vis a vis how much one uses vs how much regenerates, but a question @biophil ....

Is there any difference in voting on  posts with say smaller rewards....less votes....at specific times.....resteemed posts...etc?

Thanks in advance from a newb.
properties (22)
authorstuntworksinc
permlinkre-biophil-the-complete-definitive-and-yes-ultimate-guide-to-voting-power-updated-20170821t034810029z
categoryvoting
json_metadata{"tags":["voting"],"users":["biophil"],"app":"steemit/0.1"}
created2017-08-21 03:48:30
last_update2017-08-21 03:48:30
depth1
children0
last_payout2017-08-28 03:48:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length434
author_reputation3,189,105,727,789
root_title"The Complete, Definitive, and yes, Ultimate guide to Voting Power. Updated!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,401,799
net_rshares0