Last updated: March 2026
Understanding Coin Flip Probability
The coin flip is the simplest and most iconic probability experiment. With exactly two equally likely outcomes, it serves as the foundation for understanding randomness, expected values, and the binomial distribution. Despite its simplicity, coin flip probability reveals deep mathematical truths about how random events behave in aggregate.
While a single flip is unpredictable, the behavior of many flips together follows precise mathematical laws. The binomial distribution governs exactly how many heads you can expect in a series of flips, and the Law of Large Numbers guarantees that the proportion of heads approaches 50% as you flip more and more times. This calculator lets you explore these properties with any number of flips from 1 to 100.
The Binomial Formula Explained
The probability of getting exactly k heads in n flips of a fair coin is given by the binomial formula: P(X = k) = C(n, k) * (0.5)^n. The term C(n, k), read as “n choose k,” counts the number of ways to arrange k heads among n flips. It equals n! / (k! * (n-k)!), where ! denotes the factorial function.
For example, the probability of exactly 3 heads in 5 flips is C(5, 3) * (0.5)^5 = 10 * 1/32 = 10/32 = 31.25%. The 10 ways are: HHHTT, HHTHT, HHTTH, HTHHT, HTHTH, HTTHH, THHHT, THHTH, THTHH, TTHHH. Each individual sequence has the same probability of (0.5)^5 = 1/32, and there are C(5,3) = 10 such sequences.
Common Coin Flip Questions
The Gambler’s Fallacy: After flipping 5 heads in a row, many people believe tails is “due.” This is a fallacy. Each flip is independent, so the probability of heads on the next flip is still exactly 50%, regardless of previous results. The coin has no memory.
Streaks are normal: In 100 fair coin flips, you should expect a longest streak of about 7 consecutive heads (or tails). Streaks of 5 or 6 are extremely common. People tend to underestimate how often streaks occur in random data, which is why true random sequences often look “less random” than people expect.
The Law of Large Numbers: While short sequences can deviate significantly from 50/50, the proportion of heads converges to 50% as the number of flips increases. After 10 flips, getting 70% heads is quite possible (about 17.2% chance of 7 or more heads). After 1000 flips, the chance of getting 70% or more heads is essentially zero.
Applications Beyond Coins
The binomial distribution applies to any situation with a fixed number of independent trials, each with two possible outcomes. Quality control uses it to predict defect rates in manufacturing batches. Medical research uses it to assess drug efficacy in clinical trials. Sports analytics uses it to model win probabilities over a series of games. Any time you have a yes/no outcome repeated multiple times, the binomial formula applies.
The coin flip model also underpins the random walk, a fundamental concept in finance and physics. Stock price movements can be modeled as a series of coin flips (up or down), and the diffusion of particles in a liquid follows a similar pattern. Understanding coin flip probability gives you the foundation for these more advanced applications.
Frequently Asked Questions
What is the probability of flipping 10 heads in a row?
The probability of flipping 10 heads in a row with a fair coin is (1/2)^10 = 1/1024, or about 0.098%. Each flip is independent, so you multiply 0.5 by itself 10 times. While rare, it is not astronomically unlikely: if 1000 people each flip a coin 10 times, on average about one person will get all heads.
What is the binomial distribution?
The binomial distribution models the number of successes in a fixed number of independent trials, each with the same probability of success. Coin flipping is the textbook example: n flips (trials), each with probability p = 0.5 of heads (success). The formula P(X=k) = C(n,k) * p^k * (1-p)^(n-k) gives the exact probability of getting exactly k heads in n flips.
Is a coin flip truly 50/50?
A mathematically ideal coin is exactly 50/50. Real coins are very close but not perfect. A 2007 Stanford study by Persi Diaconis found that a coin is slightly more likely (about 51%) to land on the same side it started on, due to precession during the flip. However, this bias is so small that it is negligible for practical purposes. This calculator assumes a perfectly fair coin.
What is the expected number of heads in N flips?
The expected value (mean) of heads in N fair coin flips is N/2. For 10 flips, you expect 5 heads on average. For 100 flips, you expect 50. The standard deviation is sqrt(N * 0.5 * 0.5) = sqrt(N)/2. For 100 flips, the standard deviation is 5, meaning about 68% of the time you will get between 45 and 55 heads.
Why does the distribution chart look like a bell curve?
The binomial distribution approaches a normal (bell) distribution as the number of trials increases, by the Central Limit Theorem. For a fair coin, the distribution is perfectly symmetric around n/2 for any number of flips. With just 10 flips, you can already see the bell shape. With 50 or more flips, it is nearly indistinguishable from a true normal curve.
How many flips until I am guaranteed to get at least one heads?
You are never guaranteed to get heads, no matter how many times you flip. However, the probability approaches certainty rapidly. After 7 flips, there is a 99.2% chance of at least one heads. After 10 flips, it is 99.9%. After 20 flips, the probability of no heads is less than one in a million. The formula is P(at least one heads) = 1 - (0.5)^n.
Related Tools
Probability Calculator
Full probability calculator with events, dice, and permutations
Dice Probability Calculator
Calculate probabilities for any dice roll combination
Statistics Calculator
Calculate mean, median, standard deviation, and more
Random Number Generator
Generate random numbers and simulate coin flips