私のパン屋が焼くために選ばれる可能性は何ですか?
3 回答
- 投票
-
- 2019-02-13
現在、約50kのロールがあり、サイクルあたり4096ブロックです.これに基づいて、次を使用して解決できます.
probableBakesPerCycle = (2/49997) * 4096;
1サイクルあたり約0.16回のベイク、または6.1サイクルごとに1回のベイク.
https://tzscan.io には、現在、ロール数も表示されています
There are about 50k rolls right now, and 4096 blocks per cycle. Based on this, you can work out using the following:
probableBakesPerCycle = (2/49997) * 4096;
About 0.16 bakes per cycle, or 1 bake every 6.1 cycles.
https://tzscan.io currently shows the number of rolls as well
-
- 2019-02-13
N個のロールがあるとすると、N個のうち2個が、優先度YでレベルXでベイクするように選択される可能性があります.
- N=2、確率1で選択されます
- N=4、確率1/2で選択されます
- N=49941(サイクル80のロール数)、確率0,000040047(各レベルの優先度ごと)で選択されます
これは、サイクル80中にレベル0でベイクする確率が0,164032512であることを意味します.
Assuming there are N rolls, you have 2 chances out of N to be selected to bake at level X with priority Y
- N = 2, you will be selected with probability 1,
- N = 4, you will be selected with probability 1/2,
- N = 49941 (which is the number of rolls for cycle 80), you'll be selected with probability 0,000040047 (for each priority of each level)
This means that you have 0,164032512 probability to bake at level 0 during cycle 80.
-
- 2019-02-13
サイクルでのベーキング権の割り当ては、独立した選択です.したがって、サイクル内でprio0を使用して少なくとも 1つのベーキングを正しく行う確率は次のとおりです.
(1-((50000-2)/50000)^4096) = 15.1%
Assignment of baking rights in a cycle are independent choices. So the probability for you to get at least one baking right with prio 0 in a cycle is:
(1-((50000-2)/50000)^4096) = 15.1%
-
数式は非常に複雑であり、乗算演算子は累乗演算子ではなく4096で使用されます.@Stephenによる答えはもっと単純で明確だと思います.Your formula is very complex and also multiplication operator is to be used with 4096 not the power operator. I find answer by @Stephen more simple and clear.
- 0
- 2019-02-14
- Sachin Tomar
ステーキングバランスとして2つのロールがあり、5サイクル以降ベーキング権が付与されていません.私は承認権を取得していますが、ベーキング権はありません.エコシステムの現在のロール数に応じて、ベーキングするために選択されるためにステーキングバランスで必要なテゾの量を計算できる式はありますか.