Short version
Imagine I run the exact same experiment $n$ independent times and get $n$ times the same result. Can you put a lower bound on the probability of getting the same result the $n+1$ time I run the experiment?
Long version
I'd like to check that a computer program is deterministic and I don't want to read the code to go looking for potential bugs (race conditions ...). I'd like to estimate the probability of the code being error free. If I run it $n$ times and get $2$ different answer or more, I know something went from at some point.
However, if I get $n$ times the same answer, what is the probability of the code being error free?
I'm sure someone somewhere did some math on it, I just don't know how to find it.