Two bugs are walking on a line in random fashion and are 10 cm apart from each other. At each time step, each of them has a 1/2 chance to move a centimetre to the left, and the same chance to move a centimetre to the right.
The question is what is the chance that the bugs have either passed through the same point or have met after 7 time steps? They do not have to be at the same place at the same time, but their paths must intersect at some point. They also do not have to meet at exactly the 7th time step, as long as their paths intersect at any point in time before or at the 7th time step.
My initial instict was (1/2)^7 * (1/2)^7 = 1/16384 ≈ 0.00006 but that doesn't factor in the distances. And frankly the number seems a bit lower than I might expect.
