Will they survive?
A single amoeba sits in a pond. Every minute, it does one of four things with equal probability:
- Dies (probability 1/4)
- Stays the same (probability 1/4)
- Splits into 2 (probability 1/4)
- Splits into 3 (probability 1/4)
Each offspring behaves the same way, independently. What's the probability the entire population eventually dies out?
One generation at a time
Before any equations, let's see what a single amoeba faces each minute. Click to watch the three possible fates:
Each generation, an amoeba faces three equally-likely fates. Click to see what happens.
Each outcome has the same probability — 1/3 in this simplified visualizer. The real model has four outcomes (die, stay, split into 2, split into 3) each with probability 1/4.
Tracking a full lineage
Now let's follow an entire amoeba family through multiple generations. Start with 1 amoeba and step forward:
Start with 1 amoeba. Step through generations and watch the population grow or die.
Run several lineages. Some die quickly, some explode. The question isn't about any single trial — it's about the probability of eventual extinction across all possible futures.
Batch simulation
Now let's run hundreds of amoeba populations and see what fraction go extinct:
After enough trials, the extinction fraction converges to about 41%.
Watching the branching unfold
Step through a single branching process to see the tree structure:
Notice how extinction requires every branch to die off. Even one surviving lineage keeps the population alive.
Setting up the equation
Let be the probability the population eventually dies out. Using the law of total probability, we condition on what happens in the first minute:
where is the event that the amoeba produces offspring.
The key insight: if the amoeba splits into copies, then the total population goes extinct if and only if every single lineage independently goes extinct. Since each copy faces the same problem as the original, each has extinction probability . Independence gives us .
Solving the cubic
Rearranging :
We can factor this cubic. Notice is always a root (every branching process could go extinct with probability 1 if the mean offspring were ):
Solving by the quadratic formula:
The three roots are:
| Root | Value | Valid? |
|---|---|---|
| 1.000 | Mathematically valid but not the smallest nonnegative root | |
| 0.414 | ✓ Valid — this is our answer | |
| −2.414 | Invalid (negative probability) |
Graphical interpretation
The extinction probability is where the curve intersects the line . The smallest positive intersection gives the answer:
A branching process models a population where each individual independently produces a random number of offspring according to some distribution. The extinction probability is the smallest nonnegative root of the equation , where is the probability generating function of the offspring distribution.
In a branching process, the critical quantity is the mean number of offspring: . When (supercritical), extinction probability is strictly less than 1. When , extinction is certain (). Our amoeba is supercritical, so survival is possible.
Why P = 1 isn't the answer
Since our cubic has as a root, why don't we use it? In branching process theory, the extinction probability is the smallest nonnegative fixed point of the generating function . When the mean offspring , this smallest root is strictly less than 1. The root corresponds to the "trivial" solution that always exists; the root is the actual extinction probability.
Competition appearances
- Quant finance interviews: Branching process extinction is a common Goldman Sachs / Two Sigma question
- IMO training: Recursive probability equations solved via polynomial roots
- Programming challenges: Simulating branching processes to verify theoretical extinction probabilities
- Actuarial exams: Branching processes model insurance claim cascades and epidemic spread
Takeaway
The amoeba problem is a beautiful application of conditional probability and self-similarity. By conditioning on the first generation, we convert the question into a polynomial equation. The extinction probability is the smallest nonnegative root. The technique generalizes to any branching process: write where is the offspring generating function, and find the smallest root.