Problem 666
Polymorphic Bacteria
Members of a species of bacteria occur in two different types:
- Every minute, each individual will simultaneously undergo some kind of transformation.
- Each individual
of type will, independently, do one of the following (at random with equal probability):- clone itself, resulting in a new bacterium of type
(alongside who remains) - split into
new bacteria of type (replacing )
- clone itself, resulting in a new bacterium of type
- Each individual
of type will, independently, do one of the following (at random with equal probability):- spawn a new bacterium of type
(alongside who remains) - die
- spawn a new bacterium of type
If a population starts with a single bacterium of type
Now consider another species of bacteria,
Every minute, for each
- If
, dies. - If
, clones itself, resulting in a new bacterium of type (alongside who remains). - If
, mutates, changing into type . - If
, splits into 3 new bacteria of type (replacing ). - If
, spawns a new bacterium of type (alongside who remains).
In fact, our original species was none other than
Let
Find
多态细菌
某种细菌有两种表现形态:
- 每一分钟,每个细菌个体都必定在同一时间进行变形。
- 每个
型细菌个体 会随机进行以下两种变形之一,不同个体之间对变形的选择是独立且等概率的:- 克隆本身从而创造一个新的
型细菌(并保留 ) - 分裂成
个新的 型细菌(并取代 )
- 克隆本身从而创造一个新的
- 每个
型细菌个体 会随机进行以下两种变形之一,不同个体之间对变形的选择是独立且等概率的:- 生成一个新的
型细菌(并保留 ) - 死亡
- 生成一个新的
如果一个细胞族群一开始只包含一个
现在考虑另一种细菌
每一分钟,每个
- 如果
,则 死亡。 - 如果
,则 克隆本身从而创造一个新的 型细菌(并保留 )。 - 如果
, 突变成为 型细菌。 - 如果
, 分裂成 个新的 型细菌(并取代 )。 - 如果
, 生成一个新的 型细菌(并保留 )。
事实上,我们最初考虑的那种细菌可以被表示为
考虑一个
求
Gitalking ...