750 is the asymptotic limit for flag weight, but it is known that it can be reached thanks to rounding.
Suppose that a user has no invalid flags. How many flags does he need to reach the 750 limit?
Related questions : Flag weight 750 reached?
|
750 is the asymptotic limit for flag weight, but it is known that it can be reached thanks to rounding. Suppose that a user has no invalid flags. How many flags does he need to reach the 750 limit? Related questions : Flag weight 750 reached? |
|||||||||||||||||
|
This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.
|
I verified that the formula in Flag weight 750 reached? is correct (its prediction matches the flag value in my account exactly). I used the following Python snippet to calculate flag weight development after you reach flag weight 500:
Some selected output lines:
So once you've reached flag weight 500 (which requires merely 40 valid flags) you will need at least another 536 flags to get to 750. Good luck! |
|||||||
|
|
I took 13 days of using all my flags to get from 500 to 750. There might have been one or two invalid flags in that run. If you can find the formula for how many flags you get a day, you can work it out. I think it's fair to say that it's hundreds, but it's not thousands. (It's only 50 to get to 500.) |
|||||||||
|
|
I was looking for a method to quickly calculate the flag weight, taking invalid flags into account. The result is shown below, together with this fiddle: http://jsfiddle.net/DHDuH/6/ TL;DR: Click at the fiddle for a dynamic flag weight calculator. I have created two calculators: Additional flags
Desired flag weight
Extra: Code to count and calculate the number of flags + flag weight.
Bonus: JavaScript functionsRecursive formula to calculate the flag weight on-the-fly, after flagging n times, starting at flag weight 0.
|