If
p is very small, then
p^2 is negligible,
and
2p is only a very slight overestimate. As it gets
larger, however, skipping it becomes more of a problem.
This is the calculation that people do when adding micromorts: you
can’t die from the same thing multiple times, but your chance of death
stays low enough that the inaccuracy of naively combining these
probabilities is much smaller than the margin of error on our
estimates.
Shortcuts With Chained Probabilities
Link post
Let’s say you’re considering an activity with a risk of death of one in a million. If you do it twice, is your risk two in a million?
Technically, it’s just under:
This is quite close! Approximating1 - (1-p)^2
asp*2
was only off by 0.00005%.On the other hand, say you roll a die twice looking for a 1:
The approximation would have given: Which is off by 8%. And if we flip a coin looking for a tails: Which is clearly wrong since you could get heads twice in a row.It seems like this shortcut is better for small probabilities; why?
If something has probability
Ifp
, then the chance of it happening at least once in two independent tries is:p
is very small, thenp^2
is negligible, and2p
is only a very slight overestimate. As it gets larger, however, skipping it becomes more of a problem.This is the calculation that people do when adding micromorts: you can’t die from the same thing multiple times, but your chance of death stays low enough that the inaccuracy of naively combining these probabilities is much smaller than the margin of error on our estimates.
Comment via: facebook