"At any given point in time, either the coin will have spent equal time in the Heads and Tails states, or it will have spent more time in the Heads state. In the aggregate, it's slightly more likely that the coin shows Heads at a given point in time—including whatever time the coin is caught."
This doesn't make sense, because they started counting the number of heads from when the coin is launched. But the first state (actually the first few states) are irrelevant, because you always wait a second or two before catching the coin. If you follow this line of reasoning, then the state after the customary delay is the one that has the higher probability. But that state is fair (50/50) and, because the customary period varies, not determined by the initial state.
How do you reckon that the state after the waiting period ends is fair, if, as the article states, any point in time is more likely to have the initial side up? It would follow that at the end of the waiting period, the initial side is more likely to be up. And going forward from there, that new initial state (measured from the end of the waiting period) will continue affecting the rest of the flip. This bias will diminish over time, which backs up Premise 7 that more revolutions reduces the bias.
On a tangential note, this behavior reminds me of Benford's law, which is probably based on other statistical reasoning.
I don't really follow the logic presented in the article.
For convenience, let's assume that the coin spins at 2 seconds per revolution. The coin begins in a Heads up position. After 0.5 a second, the coin is on its edge. The coin then takes another second to pass through Tails and again be on its edge. The coin then takes another 0.5 a second to reach its initial state of Heads up.
So it sounds to me like the coin spent 0.5 a second in "Heads", then 1 second in "Tails", then 0.5 a second in "Heads" before starting all over again.
If I borrow the numbering analogy from the article, it sounds like if we examine the coin in 0.5 second increments we get H T T H H T T H H T T H H, etc. which invalidates the article's claim.
Furthermore, the article claims a 51-49 split between sides. Even if we accept its reasoning (i.e. H T H T instead of H T T H H T T H) To get that specific result, (if my math is right) the coin would have to flip around 25 times on average (i.e H T H T H T H T H T H T H T H T H T H T H T H T 0.5*H), which is a specific number not mentioned in the linked article.
All of that to say that I have no intention of refuting the paper behind the article, nor do I think they are wrong, but just that the logic presented by the article (and not the paper which I didn't read!) sounds too simplistic to be correct to me.
If you call stop at a random time, uniform over the whole tick time, there's a bias toward odds.
But if you choose to call stop at moment 20.5 (and stopping at a fractional time forces the system to round to the nearest whole number), plus random variation due to real-world physics, evens and odds are equally likely.
I think what the parent post meant is that this reasoning is flawed by assuming the coin spends the same time face-up in the very first iteration as in every other one, and that's a fallacy.
To put it simply, assuming a 4 second rotation, the first second will be spent in state A, the next second will be spent equalising the time in both states, the next second will actually put state B second ahead in face-up totals, then reequalizing, ad vitam eternum - which invalidates the article's point about always having one with time at most equal, and one with time at least equal, since they alternate in total face-up time.
Edit : Basically, unless you start the coin in the vertical state, the odds-and-even comparison doesn't apply.
Ah, you're right. This is the case if the coin is flipped with no precession. The paper linked takes precession into account based on the angle you flip the coin at, and this significantly changes the time H or T is up. The paper has two excellent graphs depicting this on Page 4.
The paper linked was also based on 27 observable coin flips, all made with the same coin-flipping machine. Out of those 27, 18 were between .500 and .504 in probabilities - and the paper concludes by saying that the "the classical assumptions of independence with probability 1/2 are pretty solid".
Edit: Actually, 21 out of the 27 flips were in the 0.5 - .505 range.
I disagree. "Any point in time is more likely to have the initial side up" if you count the initial state, which for the purpose of a coin toss you wouldn't. After a coin is flipped it's going to spend 50% of its time heads up and 50% of its time tails up.
I'm pretty sure the article is wrong. Hold on while I write a little script to test this out.
Edit: Script below; feel free to critique or make modifications where you think they are more realistic.
// Let 1 represent heads and 0 represent tails.
coin_state = 1;
/*
Odd number of flips means coin ends up in opposite state from start (tails
in this case). Even number of flips means coin ends up in same state as start
(heads in this case)
*/
if (number_of_flips % 2) { coin_state = 0; }
if (number_of_flips % 2 == 0) { number_of_heads++; }
The article is wrong in that it assumes the initial state of the coin has as much duration as the subsequent states.
If that was the case, the difference in duration would be the same as in the odd-even sequence :
You're right based on the article. It turns out the paper takes precession into account, which, depending on the angle you flip it at, significantly changes the time that the initial face is up.
Agreed, I think this is an overly-simplified explanation. Skimming the paper it looks like the crucial thing which introduces bias is precession of the coin.
This doesn't make sense, because they started counting the number of heads from when the coin is launched. But the first state (actually the first few states) are irrelevant, because you always wait a second or two before catching the coin. If you follow this line of reasoning, then the state after the customary delay is the one that has the higher probability. But that state is fair (50/50) and, because the customary period varies, not determined by the initial state.