雪花形态的马尔可夫链
Pattern on Snowflakes
题目详情
雪花一片接一片落到地面。若上一片雪花是 Stellar Dendrite,则下一片成为 Stellar Dendrite 的概率为 ;若上一片不是,则下一片成为 Stellar Dendrite 的概率为 。
从地面随机取一片雪花,问它是 Stellar Dendrite 的概率是多少?
Snow-particles are falling on the ground one after another. A particular snowflake turns out to be of type "Stellar Dendrite" with probability 'p' if its previous particle was also Stellar Dendrite, and with probability 'q' if previous one was something else. If a snowflake is picked from ground, what is the probability that it is Stellar Dendrite?
Hint
Need to form a recursive equation of conditional probability
解析
答案是
设稳态下取到 Stellar Dendrite 的概率为 。则下一片为该类型的概率满足
解得 ,因此 。
Original Explanation
probability is q/(1-p+q)
Solution
Let be the probability that a snowflake picked from the ground is a 'Stellar Dendrite'. Thus, when a new snowflake is falling, the last snowflake was Stellar Dendrite with probability .
This means that the probability the new falling snowflake is Stellar Dendrite . But, for the composition of the snowflakes on the ground to remain constant, should be same as
This is a kind of steady state analysis.