Coin Flip Probability Calculator
Find the probability of any heads/tails outcome in n flips — for fair or biased coins.
🎵 What is Coin Flip Probability?
Coin flip probability is the study of outcomes when a coin is tossed one or more times. A fair coin has p = 0.5 for heads and 0.5 for tails on each flip. Each flip is an independent Bernoulli trial — the result of one flip does not affect any other. The total number of heads in n flips follows a binomial distribution with parameters n (number of trials) and p (probability of success per trial).
The binomial probability formula gives the exact probability of getting exactly k heads in n flips: P(X = k) = C(n, k) × pk × (1−p)n−k. C(n,k) is the binomial coefficient — the number of distinct arrangements of k heads among n flips. For example, with n=5 and k=3: C(5,3) = 10, so there are 10 ways to get exactly 3 heads in 5 flips.
Beyond basic probability, this calculator also computes streak probability: what is the chance of seeing at least s consecutive heads (or successes) in n flips? This is a more complex problem requiring dynamic programming, because streaks can start at any position. Streak probabilities are typically much higher than people expect — the human brain is poor at estimating how common long runs are in random sequences.
Coin flip models apply far beyond coin tossing. Any binary process with independent trials follows the same math: manufacturing defect rates, clinical trial success rates, binary option pricing, sports win/loss records, and reliability engineering all use the binomial distribution. A “biased coin” with p ≠ 0.5 models any such real-world process by adjusting the head probability.