A pond holds one amoeba. Each minute it dies, stays the same, splits into two, or splits into three, each with probability one quarter, and every descendant behaves the same way independently. What is the probability the population eventually dies out?
Reveal solutionHide solution
#A branching process
Track the family as a branching process. In one minute an amoeba leaves behind , , , or copies of itself, each with probability .
graph LR
A(("amoeba")) -->|1/4| D["die (0)"]
A -->|1/4| S["stay (1)"]
A -->|1/4| T["two (2)"]
A -->|1/4| H["three (3)"]#The extinction equation
Let be the probability that the line from one amoeba dies out. The first minute splits the future into independent sub-lines, one per offspring, each extinct with probability . Conditioning on the number of offspring,
The mean number of offspring is , so the colony can run away and .
#Solving
Clearing the quarter gives . The value always solves the extinction equation, and factoring it out leaves
The quadratic has a single root in , namely
So the colony escapes extinction and grows forever about of the time.