Given that March Madness is almost here I was trying to figure out the probability of constructing a perfect bracket if you just flipped a coin for every game. I came up with two possible solutions.
The tournament is basically just 63 disjoint events, so (1/2)^63
Alternatively, each round can be viewed as a set of binomial events, in which case I thought that $\binom{64}{32}\binom{32}{16}\binom{16}{8}\binom{8}{4}\binom{4}{2}\binom{2}{1}$ would get me the same answer (each of those is a binomial coefficient)
However, each of these gives substantially different results. Googling for answers suggests that the first version is the correct one, as does this post
What are the exact odds of getting a perfect NCAA bracket?
So my question is, why is the second answer so different? It seems like that is also a reasonable description of what's going on, but the answer is multiple orders of magnitude too large.