A Fair Coin from a Biased One
The problem
You have a single coin that lands heads with some unknown probability . You need to generate one fair coin flip — a single bit that is exactly — using only this biased coin.
Can you do it exactly, with no knowledge of ?
Tempting (but wrong)
The instinctive plan: calibrate first.
Flip the coin a thousand times, estimate , then use to "correct" future flips. But:
- You can never know exactly — only an estimate.
- Even with exact , there's no straightforward map from a single biased flip into a fair one.
- Any procedure based on an estimate gives an approximately fair bit, not an exactly fair one.
You can do exactly with no estimation at all.