I have a set of 28 items (coupons) that are picked one at a time with replacement, but the same coupon is never picked twice in a row. In effect, a coupon is not replaced immediately — each coupon is replaced after the next one is picked. What is the expected number of picks? How can this be conceptualized?
Details: My computer app displays a set of eight (yellow) dots arranged in a circle, with another (blue) dot that moves randomly between them, tracing paths as it goes. The moving dot will never return back along the same path it just took (although it could traverse that path again later, in either direction). This eliminates some wasted movements and reduces the average number of traversals required. I want to know how many movements, on average, there will be before all 28 paths are traversed.
Without my restriction, the expectation is 110 traversals. With my restriction, I find the average (empirically) to be about 100.
