Coin Toss Streak Calculator

Enter the number of coin flips and the streak length you're interested in, and this Coin Toss Streak Calculator computes the probability of getting that many consecutive heads. Choose between finding the probability of a streak of at least, at most, or exactly that length. Results include probability as a percentage, the complementary probability, and a breakdown chart.

Total number of times you toss the coin.

The number of consecutive heads you want to find the probability for.

Choose whether you want the probability of at least, exactly, or at most k consecutive heads.

Results

Streak Probability

--

Complementary Probability

--

Total Possible Outcomes

--

Favorable Outcomes (approx.)

--

Streak vs No-Streak Probability

Results Table

Frequently Asked Questions

What are streaks in coin flips?

A streak (or run) in coin flips refers to getting the same result — typically heads — several times in a row. For example, flipping heads three times consecutively is a streak of length 3. Streak probability explores how likely such runs are in a given number of tosses.

How do I find the probability of a streak in coin tosses?

The probability is calculated using a recurrence relation based on k-step Fibonacci sequences. For n flips and a desired streak of k, you count the number of sequences of length n that contain (or don't contain) a run of k heads, then divide by the total number of possible sequences (2^n).

What is a recurrence relation in this context?

A recurrence relation is a formula that defines each term in a sequence using previous terms. For streak calculations, the number of valid sequences of length n without a streak of k heads can be expressed as f(k, n) = f(k, n-1) + f(k, n-2) + … + f(k, n-k), which is a generalization of the Fibonacci sequence.

What is the probability of no consecutive heads in 3 coin flips?

Out of 8 total outcomes (2^3), the sequences with no two consecutive heads are: TTT, TTH, THT, HTT, HTH — that is 5 sequences. So the probability of no consecutive heads in 3 flips is 5/8 = 62.5%.

What is the probability of no consecutive heads in 10 coin flips?

Using the recurrence relation, the number of 10-flip sequences with no two consecutive heads is 144 (the 12th Fibonacci number). With 2^10 = 1024 total outcomes, the probability is 144/1024 ≈ 14.06%.

Does it matter whether I look for streaks of heads or tails?

No — by symmetry of a fair coin, the probability of a streak of k heads in n flips is exactly the same as the probability of a streak of k tails. This calculator focuses on heads, but the results apply equally to tails.

What is the difference between 'at least', 'exactly', and 'at most' streak probability?

'At least k' means the longest streak is k or longer. 'Exactly k' means the longest streak is precisely k (not shorter, not longer). 'At most k' means the longest streak never exceeds k consecutive heads. Each measures a different aspect of streak behavior in a sequence of flips.

How does streak length relate to k-step Fibonacci sequences?

The count of flip sequences without a streak of k consecutive heads follows a k-step Fibonacci recurrence — where each term is the sum of the previous k terms. For k=2, this reduces to the standard Fibonacci sequence. This elegant mathematical connection makes streak probabilities computable for any k and n.

More Statistics Tools