Sometimes I'll tune into YouTube livestreams a few minutes late, but I want to watch the whole thing and catch up with the live feed, so I'll start from the beginning at 2x speed or 1x speed. I'd like to find a way to calculate exactly how much time it will take for me to reach the live feed.
So if I start watching 20 minutes behind at 2x speed, after 20 minutes of watching, I'll be 10 minutes behind, after 10 minutes, I'll be 5, etc.
I would guess this would look something like this
$ total = \frac{20}{2} + \frac{10}{2} + \frac{5}{2} + ... $
How would you create a general equation for this? Could you use summation, product, or something like a Taylor series? I recall an old VSauce Video about SuperTasks which feels relevant here as well.