Probability vs. Expectation: A Case Study

Probability vs. Expectation: A Case Study

Understanding the distinction between probability and expectation using a case study, debunking the "1% per Day" fallacy with rigorous calculations.

September 1, 2025· 2 min read
117 score

A common claim goes like this:

"If your external dependency has a 1% chance of failing each day, that is a 365% chance of failure in a year."

This is mathematically incorrect. Probabilities cannot exceed 100%. The statement confuses expected values with probabilities. Let us carefully derive the correct formulation.

Daily vs. Annual Probability

Let the daily failure probability be

and the number of days be

On any given day, the probability of no failure is

Assuming independence between days, the probability of no failures over the entire year is

Therefore, the probability of at least one failure in the year is

Numerical Evaluation

Substituting the values,

So the chance of zero failures is about 2.55%, and the chance of at least one failure is

This is the correct answer: with a 1% daily failure probability, the annual probability of at least one failure is about 97%.

Why "365%" Is Wrong

The incorrect intuition arises from multiplying the daily failure probability by the number of days:

This quantity is not a probability. It is the expected number of failures per year, i.e. the mean of a Binomial distribution with parameters

For this distribution,

Poisson Approximation

For large n and small p, the Binomial distribution can be approximated by a Poisson distribution with parameter

Then

In particular, the probability of no failures is

and the probability of at least one failure is

which closely matches the exact calculation.

Rigorous Interpretation

  • The expression np gives the expected count of failures, not a probability.
  • The correct probability of at least one failure is obtained by computing the complement of zero failures.
  • In the independent-trial model, this probability grows rapidly with n and approaches 1 as n goes to infinity.

Formally,

for any fixed p > 0.

Conclusion

The so called "365% chance of failure" is a textbook case of conflating probability with expectation. The rigorous calculation shows:

  • Expected number of failures: 3.65
  • Probability of at least one failure in a year: approximately 97.45%

This fallacy is a useful teaching example in discrete probability: additive reasoning about risks can mislead, while multiplicative reasoning through complements yields the correct result.

Related Articles