ToyTools Guide

Heads or Tails, and Why a Lopsided Run Is Normal

What a fair coin actually looks like over ten flips, why eight heads is nothing to worry about, and when a coin toss is the right way to decide something.

5 min read Updated Aug 2026

Quick Answer

A coin flip is one draw with two equally likely results. Press the button and you get heads or tails. Set the count higher and you get a run, ten to a line, with a tally underneath.

For example, Input: 10 flips. Output: something like seven heads and three tails, plus a line saying that a split at least that lopsided turns up in 34 percent of ten-flip runs.

That second number is the reason the coin flipper exists in this shape. A run that looks wrong is almost never wrong, but you cannot see that from the run itself.

Flip A Coin →

What is a fair coin flip?

A fair coin flip means both sides have exactly a one in two chance, and no flip depends on the one before it. Those are two separate promises, and the second one is where intuition breaks.

Each result here comes from your browser's cryptographic random number generator. That source returns a 32-bit number, which the tool reduces to a side without leaning on a remainder. The leftover values get thrown away and a fresh draw takes their place, therefore neither side picks up an edge.

Unlike a real coin, nothing here has a heavier face or a worn edge. A physical coin toss carries a small measurable bias toward the side that started upward. A virtual coin has no geometry to be biased by.

How does an online coin flip work?

Three steps, and the middle one is the interesting part.

First the tool asks the browser for random bytes. Then it maps those bytes onto two sides without introducing a tilt. Finally it counts the results and works out how ordinary the split is, using the exact binomial distribution rather than an approximation.

For example, on ten flips there are 1024 equally likely sequences. Exactly 252 of them come out five and five. The rest come out uneven, which is why an uneven result is the normal case instead of a red flag.

Why does the run look so lopsided?

Because small samples are lumpy, and ten flips is a very small sample size.

Heads or tails odds are fixed at one in two per flip. The odds of a particular SPLIT across several flips are a different question, and that is the one people are actually reacting to.

Eight heads in ten looks damning until you count the sequences. A split that far from even, or further, shows up in about 11 percent of ten-flip runs. That is one attempt in nine, so it happens to somebody in every classroom that tries it.

The common mistake is judging fairness by the gap in raw counts. That gap grows as you flip more, but the share settles. Flip a thousand times and heads lands between 47 and 53 percent about 95 percent of the time, while the raw difference between the two counts sits happily at twenty or thirty.

Is tails due after four heads?

No. This is the gambler's fallacy, and it is the single most expensive misconception about chance.

The coin holds no record of the last four flips, so the fifth carries the same one in two chance the first one did. Do not treat a streak as a debt that has to be repaid. Nothing pushes back toward tails at any point.

What confuses people is that the long-run average really does even out. It evens out through volume instead of correction: after ten thousand flips the early run of four is one part in 2500, so it stops mattering without ever being cancelled.

Coin toss vs dice roll, and which to use

A coin toss answers a two-way question. A dice roll answers a many-way question, or a question about how much rather than which.

Instead of flipping repeatedly to choose between four options, roll a die with four faces or list the options properly. Chaining flips works, but it is easy to get wrong: two flips give four equally likely sequences, and three options cannot be split evenly across them.

Use the dice roller for numbers and the random choice picker for named options. Use a random yes or no flip when the real value is watching your own reaction to the answer.

When is a coin flip a good way to decide?

When the two options are genuinely close, and when the cost of deciding exceeds the cost of deciding wrong.

Economists have tested this. People who flipped for a stuck decision reported being happier months later than the ones who kept deliberating, and the effect held for the group the coin pushed into change. The coin does not know which option is better, but it does end an argument that was costing more than the difference.

There is a second use, and it is the honest one. Flip, then notice how you feel about the result. Disappointment is information you already had but could not reach.

What happens to the results?

Nothing leaves the page. Every flip happens in your browser, nothing gets uploaded, and no run survives a refresh.

Your chosen sides and count persist locally so the tool opens the way you left it. For example, a teacher who runs a hundred flips finds the count still set to a hundred tomorrow. Clearing your browser data removes it, and the settings page exports everything ToyTools has kept.

You May Also Need

You may also need

Next steps

Alternatives

Continue Learning